/* CSS VARIABLES - Premium Sports Palette */
:root {
    --bg-dark: #0F172A;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-card-border: rgba(255, 255, 255, 0.1);
    --turf-green: #22C55E;
    --turf-green-hover: #16A34A;
    --accent-orange: #F97316;
    --accent-orange-hover: #EA580C;
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--turf-green);
    border-radius: 4px;
}

/* LAYOUT ARCHITECTURE */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title span {
    color: var(--turf-green);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* BUTTONS WITH RIPPLE / GLOW EFFECT */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--turf-green);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-orange {
    background: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
}

/* GLASSMORPHISM CARD DEFINITION */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--turf-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

/* SCROLL ANIMATION INITIAL STATES */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER & NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.sticky {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* Logo Image Styling Integration */
.header-logo-img {
    height: 70px;
    width: auto;
    border-radius: 50px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.sticky .header-logo-img {
    height: 60px;
}

.logo span {
    color: var(--turf-green);
}

.logo-dot {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--turf-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    z-index: 1001;
}

/* VIEW CONTAINER SYSTEM */
.view-section {
    display: none;
}

.view-section.active-view {
    display: block;
}

/* HERO SECTION */
#home-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.9)), 
                url('./homePage.avif') no-repeat center center/cover;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--turf-green);
    display: inline-block;
}

.hero-subheading {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-feature-item i {
    color: var(--turf-green);
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* AMENITIES SECTION */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.amenity-card {
    text-align: center;
    padding: 40px 30px;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--turf-green);
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    background: var(--turf-green);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.amenity-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.amenity-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* PRICING PLANS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.price-box {
    margin: 24px 0;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--turf-green);
    vertical-align: top;
}

.price-box .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-box .duration {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--turf-green);
}

.pricing-cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: radial-gradient(circle at top right, rgba(34,197,94,0.1), transparent);
    border-radius: 16px;
    border: 1px dashed var(--bg-card-border);
}

/* GALLERY IMAGES */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--bg-card-border);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--turf-green);
    color: var(--bg-dark);
    border-color: var(--turf-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    border: 1px solid var(--bg-card-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15,23,42,0.9), rgba(15,23,42,0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay span {
    color: var(--turf-green);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-btn-box {
    text-align: center;
    margin-top: 40px;
}

/* REVIEWS SECTION */
#testimonials-section {
    display: none;
    background: linear-gradient(rgba(15,23,42,1), rgba(30,41,59,0.4), rgba(15,23,42,1));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* MAP LOCATION */
.location-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    min-height: 400px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card {
    margin-bottom: 24px;
}

.info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: var(--accent-orange);
}

.info-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.location-action-btns {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* CONTACT SYSTEM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-frame {
    width: 54px;
    height: 54px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-method p, .contact-method a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-method a:hover {
    color: var(--turf-green);
}

.contact-inline-btns {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* INPUT COMPONENT FORMS */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--bg-card-border);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--turf-green);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.form-submit-box {
    grid-column: span 2;
    text-align: right;
}

/* LIGHTBOX VIEWER LAYER */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

/* FLOATING WIDGET CTA PACKS */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
    background-color: #f17026;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-orange);
    color: var(--text-white);
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    text-decoration: none;
    z-index: 998;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

/* FOOTER ARCHITECTURE */
footer {
    background: #0B111E;
    border-top: 1px solid var(--bg-card-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--bg-card-border);
}

.social-icon:hover {
    background: var(--turf-green);
    color: var(--bg-dark);
    border-color: var(--turf-green);
    transform: translateY(-3px);
}

.footer-links-box h4, .footer-contact-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}

.footer-links-box h4::after, .footer-contact-box h4::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: var(--turf-green);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--turf-green);
    transform: translateX(5px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-list li i {
    color: var(--accent-orange);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE BREAKPOINT QUERY HOOKS */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .about-wrapper, .contact-grid, .location-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-subheading { font-size: 1.2rem; }
    .hero-btns { flex-direction: column; gap: 12px; align-items: center; }
    .hero-btns .btn { width: 100%; max-width: 300px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0B111E;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: block; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full-width, .form-submit-box { grid-column: span 1; }
    .form-submit-box { text-align: left; }
    .form-submit-box .btn { width: 100%; }

    .mobile-sticky-call { display: inline-flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}
@media (max-width: 1050px) {
    section { padding: 70px 0; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-subheading { font-size: 1.2rem; }
    .hero-btns { flex-direction: column; gap: 12px; align-items: center; }
    .hero-btns .btn { width: 100%; max-width: 300px; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0B111E;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.open { right: 0; }
    .hamburger { display: block; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full-width, .form-submit-box { grid-column: span 1; }
    .form-submit-box { text-align: left; }
    .form-submit-box .btn { width: 100%; }
    .mobile-sticky-call { display: inline-flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}