/* Main Stylesheet for Swing 365 Oklahoma */

:root {
    --primary-color: #1a1a1a;
    --brand-green: #228B22;
    --brand-green-dark: #1a6b1a;
    --brand-green-light: #32a832;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --heading-font: 'Playfair Display', Georgia, serif;
    --body-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scroll offset for fixed header */
#contact-form {
    scroll-margin-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    width: 100%;
    height: auto;
}

#header-placeholder {
    min-height: 70px;
    display: block;
    margin: 0;
    padding: 0;
    height: auto;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-left {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

    .main-nav a:hover {
        color: var(--brand-green);
    }

/* Dropdown Menu Styles - Desktop */
.main-nav .has-dropdown {
    position: relative;
}

.main-nav .has-dropdown > a {
    cursor: pointer;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 180px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-nav .has-dropdown:hover .dropdown-menu,
.main-nav .has-dropdown:focus-within .dropdown-menu,
.main-nav .has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.main-nav .dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.main-nav .dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--brand-green);
    padding-left: 1.75rem;
}

.header-cta {
    background: var(--brand-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.header-cta:hover {
    background: var(--brand-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

#hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

#hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hero Background Override */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/golf-simulator-oklahoma-city.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    margin-top: 0 !important;
    padding-top: 70px !important;
    position: relative;
}

/* Remove any gap between header and hero */
#header-placeholder + .hero {
    margin-top: 0 !important;
    padding-top: 70px !important;
}

/* Fix white bar issue */
body {
    padding-top: 0;
    margin-top: 0;
}

#header-placeholder + .hero,
.hero {
    margin-top: 0 !important;
}

/* Ensure no gap between header and hero */
#header-placeholder {
    margin: 0;
    padding: 0;
}

/* Value Proposition Section */
.value-proposition {
    padding: 5rem 0;
    background: var(--white);
}

.value-proposition h2 {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile: Force 2 columns side by side */
@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .value-card {
        max-width: 100% !important;
        padding: 1rem !important;
        width: 100%;
        min-width: 0;
    }
    
    .value-icon {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem;
    }
    
    .value-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .value-card p {
        font-size: 0.75rem !important;
        line-height: 1.4;
        margin: 0;
    }
}


/* Ensure 4th card is centered when it's on its own row */
@media (min-width: 768px) and (max-width: 1023px) {
    .value-grid {
        grid-template-columns: repeat(2, minmax(250px, 300px));
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(4, minmax(250px, 1fr));
        justify-content: center;
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    width: 100%;
    max-width: 300px;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-icon {
    font-size: 3rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--brand-green-dark);
}

.value-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    font-size: 1rem;
}

/* Membership Section */
.membership-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.membership-section h2 {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.membership-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.membership-card:nth-child(1) { animation-delay: 0.1s; }
.membership-card:nth-child(2) { animation-delay: 0.2s; }
.membership-card:nth-child(3) { animation-delay: 0.3s; }
.membership-card:nth-child(4) { animation-delay: 0.4s; }
.membership-card:nth-child(5) { animation-delay: 0.5s; }
.membership-card:nth-child(6) { animation-delay: 0.6s; }

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(34, 139, 34, 0.2);
}

.membership-card.featured {
    border-color: var(--brand-green);
    position: relative;
}

.membership-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--brand-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.membership-card h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.membership-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.membership-features {
    list-style: none;
    margin-bottom: auto;
    flex-grow: 1;
}

.membership-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-cta {
    display: block;
    text-align: center;
    background: var(--brand-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
}

.membership-cta:hover {
    background: var(--brand-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

/* Access Section */
.access-section {
    padding: 5rem 0;
    background: var(--white);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.access-text h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.access-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.access-features {
    list-style: none;
}

.access-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #666;
}

.access-features i {
    color: var(--brand-green);
    margin-right: 0.5rem;
}

.access-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.locations-section h2 {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.locations-with-maps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-with-map {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.location-with-map:nth-child(1) { animation-delay: 0.2s; }
.location-with-map:nth-child(2) { animation-delay: 0.4s; }

.location-info {
    text-align: center;
}

.location-info h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-address,
.location-phone,
.location-hours {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.location-info a {
    color: var(--brand-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-info a:hover {
    color: var(--brand-green-dark);
    text-decoration: underline;
}

.location-cta {
    margin-top: 1.5rem;
}

.map-embed {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

@media (min-width: 768px) {
    .location-with-map {
        flex-direction: column;
        gap: 2rem;
    }
    
    .location-info {
        text-align: left;
    }
    
    .map-embed {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .map-embed iframe {
        height: 350px;
    }
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.location-card:nth-child(1) { animation-delay: 0.2s; }
.location-card:nth-child(2) { animation-delay: 0.4s; }

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.15);
}

.location-card h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-card p {
    margin-bottom: 1rem;
    color: #666;
}

.location-card a {
    color: var(--brand-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-card a:hover {
    color: var(--brand-green-dark);
    text-decoration: underline;
}

.location-buttons .btn-primary {
    color: var(--white) !important;
    background: var(--brand-green);
    border-color: var(--brand-green);
}

.location-buttons .btn-primary:hover {
    color: var(--white) !important;
    background: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
}

.location-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--brand-green);
    color: var(--white) !important;
    border: 2px solid var(--brand-green);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    color: var(--white) !important;
    border-color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

/* Trust Signals Override */
.trust-social-proof {
    background: linear-gradient(120deg, #f8f8f8 60%, #f0f8f0 100%);
}

:root {
    --primary: #1a1a1a;
    --secondary: #1a1a1a;
}

.trust-headline {
    color: var(--primary-color);
}

.trust-rating-text {
    color: var(--primary-color);
}

/* Hero CTA Styles */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--brand-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-green);
    font-family: var(--body-font);
    text-align: center;
    width: 100%;
}

.cta-button:hover {
    background-color: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.4);
    color: var(--white);
}

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

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--brand-green);
    border-color: var(--white);
}

.cta-button.tertiary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
}

.cta-button.tertiary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    color: var(--white);
}

/* Hide tertiary CTA on mobile */
@media (max-width: 767px) {
    .cta-button.tertiary {
        display: none;
    }
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-button {
        flex: 1;
        min-width: 200px;
    }
    
    .cta-button.tertiary {
        flex: 1 1 100%;
        max-width: 100%;
        display: block;
    }
}

/* Footer Enhancements */
.footer {
    margin-top: 4rem;
}

.footer-info p,
.footer-links a {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Ensure header placeholder doesn't cause layout shift */
#header-placeholder {
    min-height: 70px;
    margin: 0;
    padding: 0;
}

#footer-placeholder {
    min-height: 200px;
}

/* Loading state */
#header-placeholder:empty,
#footer-placeholder:empty {
    background: transparent;
}

/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* Mobile Contact Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
        height: auto;
    }
    
    .header-inner {
        padding: 0 1rem;
        min-height: 60px;
    }
    
    .logo {
        height: 35px;
        max-width: 150px;
    }
    
    #header-placeholder {
        min-height: 60px;
        height: 60px;
    }
    
    .hero {
        padding-top: 60px !important;
        margin-top: 0 !important;
    }
    
    .header-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .main-nav.mobile-open {
        max-height: 400px;
        border-top: 1px solid #eee;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0.5rem 0;
        gap: 0;
        align-items: flex-end;
    }
    
    .main-nav li {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: right;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: right;
    }
    
    .main-nav a:hover {
        background: rgba(34, 139, 34, 0.1);
        color: var(--brand-green);
    }
    
    /* Mobile Dropdown Styles */
    .main-nav .has-dropdown .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        display: none !important;
        min-width: auto !important;
    }
    
    .main-nav.mobile-open .has-dropdown .dropdown-menu {
        display: flex !important;
        flex-direction: column;
    }
    
    .main-nav .dropdown-menu li {
        border-bottom: none;
        width: 100%;
    }
    
    .main-nav .dropdown-menu a {
        padding: 0.75rem 1.5rem 0.75rem 2.5rem;
        font-size: 0.95rem;
        text-align: right;
    }
    
    .main-nav .dropdown-menu a:hover {
        padding-left: 2.5rem;
        background: rgba(34, 139, 34, 0.1);
    }
    
    #hamburger {
        display: flex;
        order: 3;
    }
    
    #hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    #hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    #hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .header-right {
        gap: 0.75rem;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .access-section {
        padding: 2rem 0 !important;
    }
    
    .access-text h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .access-text p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    
    .access-features {
        margin: 0;
        padding: 0;
    }
    
    .access-features li {
        padding: 0.4rem 0 !important;
        font-size: 0.85rem !important;
    }
    
    .access-features i {
        font-size: 0.75rem !important;
        margin-right: 0.4rem;
    }
    
    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .membership-card {
        padding: 1rem !important;
        min-height: auto !important;
        border-radius: 8px;
    }
    
    .membership-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }
    
    .membership-price {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    .membership-price span {
        font-size: 0.9rem !important;
    }
    
    .membership-features {
        margin-bottom: 0.75rem;
    }
    
    .membership-features li {
        padding: 0.4rem 0 !important;
        font-size: 0.75rem !important;
        border-bottom: 1px solid #eee;
    }
    
    .membership-cta {
        padding: 0.6rem !important;
        font-size: 0.85rem !important;
        margin-top: auto;
    }
    
    .membership-card.featured::before {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        top: -10px;
        right: 10px;
    }
    
    /* Value grid already has 2 columns from mobile query above */
    .value-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .value-proposition,
    .membership-section {
        padding: 2rem 0 !important;
    }
    
    /* Locations section padding already set above with !important */
    
    .locations-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .locations-with-maps {
        gap: 2rem !important;
    }
    
    .location-with-map {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }
    
    .location-info h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .location-address,
    .location-phone,
    .location-hours {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .location-cta {
        margin-top: 1rem !important;
    }
    
    .location-cta .btn-primary {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
        width: 100%;
    }
    
    .map-embed {
        width: 100%;
    }
    
    .map-embed iframe {
        height: 250px !important;
        width: 100% !important;
        max-width: 100%;
    }
    
    /* Access section padding already set above with !important */
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Footer mobile improvements */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-info,
    .footer-nav,
    .footer-social {
        text-align: center;
    }
    
    .footer-info h3::after,
    .footer-nav h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social h3::after {
        display: block;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-inner {
        padding: 0 1.5rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.95rem;
    }
    
    .header-cta {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo {
        height: 35px;
        max-width: 120px;
    }
    
    .header-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .main-nav {
        top: 55px;
    }
}

