
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #00b09b;
    --early-bird-color: #e74c3c;
     --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4cc9f0;
            --warning: #f8961e;
            --info: #4895ef;
            --danger: #e63946;
  }

  .membership-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }

  .membership-option {
    border: 2px solid #e3e3e3;
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }

  .membership-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .membership-option.selected {
    border-color: var(--primary-color);
    background: rgba(106, 17, 203, 0.05);
  }

  .early-bird-option {
    border-left: 4px solid #3574d0;
  }

  .early-bird-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3574d0;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .membership-option input[type="radio"] {
    margin-right: 10px;
  }

  .membership-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
  }

  .early-bird-price {
    color: #094eb3;
  }

  .membership-details {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
  }

  .member-count {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
  }

  .registration-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
  }

  .registration-section .card {
    width: 100%
  }

  .registration-section .card::before {
    display: none;
  }

  .registration-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
  }

  .registration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .card-header {
    padding: 30px 20px;
    text-align: center;
    border: none;
  }

  .early-bird .card-header {
    background: linear-gradient(135deg, #db3c3c, #863636);
    color: white;
  }

  .normal .card-header {
    background: linear-gradient(135deg, #3e42a0, #889ad3);
    color: white;
  }

  .card-badge {
    position: absolute;
    top: 0px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 3px 15px;
    border-bottom-left-radius: 10px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 10px;
  }

  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
  }

  .card-body {
    padding: 30px;
  }

  .price-section {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
  }

  .price-period {
    font-size: 1rem;
    color: #7f8c8d;
  }

  .plan-details {
    margin-bottom: 25px;
  }

  .plan-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
  }

  .plan-item:last-child {
    border-bottom: none;
  }

  .plan-name {
    font-weight: 600;
    color: #2c3e50;
  }

  .plan-price {
    font-weight: 700;
    color: #e74c3c;
  }

  .validity {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
  }

  .btn-register {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .early-bird .btn-register {
    background: linear-gradient(135deg, #3574d0, #384f70);
    color: white;
  }

  .early-bird .btn-register:hover {
    background: linear-gradient(135deg, #3574d0, #384f70);
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
  }

  .normal .btn-register {
    background: linear-gradient(135deg, #3e42a0, #889ad3);
    color: white;
  }

  .normal .btn-register:hover {
    background: linear-gradient(135deg, #3e42a0, #889ad3);
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(78, 205, 196, 0.4);
  }

  .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
  }

  .section-title h2 {
    margin-bottom: 15px;
  }

  .section-title p {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 100%;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .registration-card {
      margin-bottom: 30px;
    }

    .card-title {
      font-size: 1.5rem;
    }

    .price-main {
      font-size: 2rem;
    }
  }

  .btn-register {
    text-align: center;
    text-decoration: none;
  }

  .why-should-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .why-should-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .why-should-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
  }

  .why-should-section .section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
  }

  .benefits-category {
    margin-bottom: 40px;
  }

  .benefits-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
  }

  .benefits-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  }

  .benefit-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
  }

  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .benefit-card.special-access {
    border-left-color: #6a11cb;
  }

  .benefit-card.community {
    border-left-color: #2575fc;
  }

  .benefit-card.training {
    border-left-color: #00b09b;
  }

  .benefit-card.amenities {
    border-left-color: #ff8c00;
  }

  .benefit-card.perks {
    border-left-color: #e74c3c;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .benefit-card.special-access .benefit-icon {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
  }

  .benefit-card.community .benefit-icon {
    background: linear-gradient(135deg, #2575fc 0%, #00b09b 100%);
    color: white;
  }

  .benefit-card.training .benefit-icon {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    color: white;
  }

  .benefit-card.amenities .benefit-icon {
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    color: white;
  }

  .benefit-card.perks .benefit-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #e67e22 100%);
    color: white;
  }

  .benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
  }

  .benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .benefit-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
  }

  .benefit-features li:last-child {
    border-bottom: none;
  }

  .benefit-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
  }

  .benefit-highlight {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
  }

  .benefit-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .benefit-highlight p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .why-should-section .section-header h2 {
      font-size: 2rem;
    }

    .benefits-category h3 {
      font-size: 1.5rem;
    }

    .benefit-card {
      margin-bottom: 20px;
    }
  }

  del {
    color: #858585;
  }

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    padding: 20px;
}
        .facility-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .facility-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .card-header {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .facility-card:hover .card-bg {
            transform: scale(1.1);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        
        .card-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            z-index: 2;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .facility-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            background: white;
        }
        
        .card-content {
            padding: 25px;
            position: relative;
            z-index: 3;
        }
        
     .facility-name {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
}
    .facility-description {
    color: #000;
    /* line-height: 1.6; */
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
        min-height: 100px;
   
}
        
        .facility-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .feature-tag {
            background: rgba(255, 255, 255, 0.15);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: white;
            backdrop-filter: blur(5px);
        }
        
        .coming-soon-badge {
            display: inline-block;
            background: linear-gradient(to right, var(--accent), #ff4da6);
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
            margin-bottom: 20px;
        }

        .kids-bg{background-image: url("assets/images/kids2.jpg");}
        .golf-bg{background-image: url("assets/images/minigolf1.jpg");}
        .bar-bg{background-image: url("assets/images/restro1.jpg");}
        .events-bg{background-image: url("assets/images/eventsbg02.jpg");}
        .coming-services{padding:60px 0px}