/* ============================================
   USK MARTIAL ARTS - MAIN STYLESHEET
   Professional Design with #DA4A35 Accents
   Mobile-First, Conversion-Focused
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-gray-dark: #2c2c2c;
    --color-gray: #666666;
    --color-gray-light: #e8e8e8;
    --color-white: #ffffff;
    
    /* Primary Accent Color */
    --color-primary: #DA4A35;
    --color-primary-dark: #C13D2A;
    --color-primary-light: #E56951;
    
    /* Yellow for Special Offers Only */
    --color-yellow: #FFB81C;
    
    /* Gradients - Removed, using solid colors */
    --gradient-text: #DA4A35;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.gradient-text {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(218, 74, 53, 0.4);
    background: var(--color-primary-light);
}

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

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   TOP BAR (Desktop Only)
   ============================================ */
.top-bar {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
    display: none;
    transition: all 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
}

.top-bar-link:hover {
    color: var(--color-primary);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* ============================================
   MAIN HEADER & NAVIGATION
   ============================================ */
.main-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu (Mobile First) */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: var(--color-gray-light);
}

/* Dropdown Styles (Mobile) */
.has-dropdown > .dropdown-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-dropdown.active > .dropdown-parent .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.has-dropdown.active > .dropdown-menu {
    max-height: 500px;
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

/* Nav CTA */
.nav-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-light);
}

.nav-cta .btn-primary {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(218, 74, 53, 0.15) 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-left {
    color: var(--color-white);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.hero-feature span {
    font-weight: 500;
}

/* Hero Form Card */
.hero-form-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form-subtitle {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(218, 74, 53, 0.1);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

.form-note i {
    color: var(--color-primary);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.benefit-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(218, 74, 53, 0.2);
    border-top: 3px solid var(--color-yellow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
}

/* ============================================
   KIM FAMILY SECTION
   ============================================ */
.kim-family-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.kim-family-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Mobile: Image comes first after header */
@media (max-width: 767px) {
    .kim-family-content {
        flex-direction: column-reverse;
    }
}

.kim-family-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.kim-family-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.kim-stats {
    display: none;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

.kim-family-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.kim-family-image img {
    width: 100%;
    height: auto;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-dark);
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.programs-grid {
    display: grid;
    gap: 2rem;
}

.program-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(218, 74, 53, 0.25);
}

.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    margin-bottom: 1.5rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-gray);
}

.program-features i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Program Icon Cards - For Icon-Based Program Cards */
.program-card .program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(218, 74, 53, 0.3);
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(218, 74, 53, 0.4);
}

.program-card .program-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.program-card .program-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
    text-align: center;
}

.program-card .program-description {
    color: var(--color-gray);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

/* Icon-based program cards need padding and text centering */
.program-card:has(.program-icon) {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(218, 74, 53, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-gray);
}

.service-features i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

/* Mobile: Horizontal scroll for testimonials */
@media (max-width: 767px) {
    .testimonials-section .container {
        padding: 0;
        position: relative;
    }
    
    .testimonials-section .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    /* Add swipe indicator */
    .testimonials-section .section-header::after {
        content: '← Swipe to see more →';
        display: block;
        text-align: center;
        color: var(--color-primary);
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 0.5rem;
        animation: fadeInOut 2s infinite;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 1rem 2rem;
        scrollbar-width: none; /* Hide default scrollbar */
    }
    
    /* Hide scrollbar but keep functionality */
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    /* Add custom scroll dots indicator */
    .testimonials-section {
        position: relative;
        padding-bottom: 3rem;
    }
    
    /* Visual hint - peek at next card */
    .testimonials-grid::after {
        content: '';
        display: block;
        min-width: 1rem;
        flex-shrink: 0;
    }
    
    /* Make cards more touchable - add subtle border */
    .testimonial-card {
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    /* Add swipe arrows on sides */
    .testimonials-section .container::before,
    .testimonials-section .container::after {
        content: '›';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        color: var(--color-primary);
        opacity: 0.3;
        pointer-events: none;
        z-index: 1;
        animation: pulse 2s infinite;
    }
    
    .testimonials-section .container::before {
        content: '‹';
        left: 0.25rem;
    }
    
    .testimonials-section .container::after {
        right: 0.25rem;
    }
    
    @keyframes pulse {
        0%, 100% { 
            opacity: 0.2;
            transform: translateY(-50%) scale(1);
        }
        50% { 
            opacity: 0.5;
            transform: translateY(-50%) scale(1.1);
        }
    }
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 4rem 0;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-layout .hero-form-card {
    flex: 1;
}

.cta-location {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.cta-location h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-location h3 i {
    color: var(--color-primary);
}

.location-info {
    margin-bottom: 2rem;
}

.location-address {
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-phone {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-phone i {
    color: var(--color-primary);
}

.location-phone a {
    color: rgba(255, 255, 255, 0.9);
}

.location-phone a:hover {
    color: var(--color-white);
}

.location-hours {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hours-title {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.hours-row.closed {
    opacity: 0.6;
    border-left-color: rgba(255, 255, 255, 0.3);
}

.hours-row .day {
    font-weight: 600;
    color: var(--color-white);
    min-width: 90px;
}

.hours-row .times {
    text-align: right;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hours-row .time-alt {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767px) {
    .hours-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hours-row .day {
        font-size: 0.95rem;
    }
    
    .hours-row .times {
        text-align: left;
        font-size: 0.9rem;
    }
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-buttons .btn-secondary {
    border-color: white;
    color: white;
    justify-content: center;
}

.location-buttons .btn-secondary:hover {
    background: white;
    color: var(--color-dark);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-offers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.offer-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.offer-text {
    text-align: left;
}

.offer-text strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.offer-text span {
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 0.5rem;
}

.footer-contact .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .footer-contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        text-align: center;
    }
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.footer-contact strong {
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 2rem;
    padding-bottom: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-bottom: 2rem;
    }
}

.footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.separator {
    opacity: 0.5;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ============================================
   FAB BUTTONS (Mobile Only)
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 1rem;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.fab-icon-close {
    display: none;
}

.fab-main.active .fab-icon-main {
    display: none;
}

.fab-main.active .fab-icon-close {
    display: block;
}

.fab-main:active {
    transform: scale(0.95);
}

.fab-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fab-options.active {
    opacity: 1;
    pointer-events: all;
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0);
    transition: all 0.3s ease;
}

.fab-options.active .fab-option {
    transform: scale(1);
}

.fab-options.active .fab-option:nth-child(1) {
    transition-delay: 0.1s;
}

.fab-options.active .fab-option:nth-child(2) {
    transition-delay: 0.15s;
}

.fab-options.active .fab-option:nth-child(3) {
    transition-delay: 0.2s;
}

.fab-option::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 1rem);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fab-option:hover::before {
    opacity: 1;
}

.fab-option:active {
    transform: scale(0.9);
}

/* ============================================
   SPECIAL OFFERS BUTTON
   ============================================ */
.offers-btn {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    padding: 1rem 1.5rem;
    background: var(--color-yellow);
    color: var(--color-dark);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.offers-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 184, 28, 0.5);
    background: #FFC940;
}

.offers-btn:active {
    transform: translateX(-50%) translateY(0);
}

.offers-btn i {
    font-size: 1.25rem;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@media (max-width: 767px) {
    .modal-content {
        max-height: 85vh;
    }
}

.modal-large {
    max-width: 900px;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.modal-header {
    padding: 2rem 2rem 1rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-gray);
}

.modal-content .info-form {
    padding: 0 2rem 2rem;
}

/* Offers Grid */
.offers-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.offers-grid .offer-card {
    max-width: 450px;
    width: 100%;
}

.offer-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(218, 74, 53, 0.2);
}

.offer-badge-large {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 12px;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.offer-header {
    padding: 2rem 2rem 1rem;
    background: var(--color-gray-light);
}

.offer-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.offer-body {
    padding: 2rem;
}

.offer-includes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-gray);
}

.offer-includes i {
    color: var(--color-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.offer-footer {
    padding: 0 2rem 2rem;
}

/* ============================================
   DESKTOP STYLES (768px and up)
   ============================================ */
@media (min-width: 768px) {
    /* Show top bar on desktop */
    .top-bar {
        display: block;
    }
    
    /* Desktop Navigation */
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        overflow: visible;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
    }
    
    .nav-menu li {
        margin-bottom: 0;
        position: relative;
    }
    
    .nav-menu > li > a {
        padding: 0.75rem 1rem;
    }
    
    /* Desktop Dropdown */
    .has-dropdown {
        position: relative;
    }
    
    .has-dropdown > .dropdown-parent {
        cursor: pointer;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        border-radius: 8px;
        padding: 0.5rem 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .has-dropdown:hover > .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        display: block;
    }
    
    .dropdown-menu a:hover {
        background: var(--color-gray-light);
    }
    
    /* Prevent dropdown toggle on desktop */
    .has-dropdown.active > .dropdown-menu {
        max-height: 0;
        opacity: 0;
    }
    
    .nav-cta {
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .nav-cta .btn-primary {
        width: auto;
        padding: 0.75rem 1.5rem;
    }
    
    /* Larger logo on desktop */
    .logo img {
        height: 80px;
    }
    
    /* Hero Section */
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-left {
        flex: 1;
    }
    
    .hero-right {
        flex: 0 0 400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Kim Family Section */
    .kim-family-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    
    .kim-family-text,
    .kim-family-image {
        flex: 1;
    }
    
    /* Programs Grid - 2 columns on tablet */
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* CTA Layout - Side by Side */
    .cta-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .cta-layout .hero-form-card,
    .cta-location {
        flex: 1;
        max-width: 50%;
    }
    
    .location-buttons {
        flex-direction: row;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-offers {
        flex-direction: row;
        justify-content: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom-left {
        justify-content: center;
    }
    
    /* Footer bottom padding for special offers button on desktop */
    .main-footer {
        padding-bottom: 6rem;
    }
    
    /* Hide FAB on desktop */
    .fab-container {
        display: none;
    }
    
    /* Offers button stays centered on desktop */
    .offers-btn {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .offers-btn:hover {
        transform: translateX(-50%) translateY(-2px);
    }
    
    /* Offer cards full width on desktop */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Offers Modal Grid */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   LARGE DESKTOP (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .programs-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    
    .programs-grid .program-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        max-width: calc(33.333% - 1.5rem);
        min-width: 300px;
    }
    
    /* When there are only 2 cards in the row (4th and 5th), they stay the same size */
    .programs-grid .program-card:nth-child(4),
    .programs-grid .program-card:nth-child(5) {
        flex: 0 1 calc(33.333% - 1.5rem);
    }
    
    /* 4-card grids: 2x2 layout */
    .programs-grid .program-card:nth-last-child(1):nth-child(4),
    .programs-grid .program-card:nth-last-child(2):nth-child(3),
    .programs-grid .program-card:nth-last-child(3):nth-child(2),
    .programs-grid .program-card:nth-last-child(4):nth-child(1) {
        flex: 0 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* ============================================
   GHL FORM RESPONSIVE WRAPPER
   ============================================ */
.ghl-form-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.ghl-form-wrapper iframe {
    width: 600px;
    height: 750px;
    border: none;
    transform-origin: top left;
}

/* Tablet */
@media (max-width: 968px) and (min-width: 768px) {
    .ghl-form-wrapper {
        max-width: 500px;
    }
    
    .ghl-form-wrapper iframe {
        transform: scale(0.833); /* 500/600 */
        width: 600px;
        height: 625px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ghl-form-wrapper {
        max-width: 360px;
    }
    
    .ghl-form-wrapper iframe {
        transform: scale(0.6); /* 360/600 */
        width: 600px;
        height: 450px;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .ghl-form-wrapper {
        max-width: 320px;
    }
    
    .ghl-form-wrapper iframe {
        transform: scale(0.533); /* 320/600 */
        width: 600px;
        height: 400px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Mobile center alignment */
@media (max-width: 767px) {
    .hero-left,
    .benefits-grid,
    .benefit-card,
    .kim-family-text,
    .programs-grid,
    .program-card,
    .services-grid,
    .service-card,
    .testimonials-grid,
    .testimonial-card,
    .cta-content,
    .footer-content,
    .footer-column,
    .footer-bottom,
    .footer-tagline {
        text-align: center;
    }
    
    .logo {
        margin: 0 auto;
        text-align: center;
    }
    
    /* Left align nav menu items */
    .nav-menu,
    .nav-menu li,
    .nav-menu a {
        text-align: left;
    }
    
    /* Center footer logo */
    .footer-logo {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .hero-features,
    .program-features,
    .service-features,
    .offer-includes {
        text-align: left;
    }
    
    /* Offer cards side-by-side on mobile */
    .offers-grid {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 0 0.5rem 0.5rem;
    }
    
    .offers-grid .offer-card {
        max-width: 100%;
    }
    
    .offer-card {
        font-size: 0.75rem;
    }
    
    .offer-header {
        padding: 0.75rem 0.5rem;
    }
    
    .offer-header h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .price-label {
        font-size: 0.7rem;
    }
    
    .offer-body {
        padding: 0.5rem;
    }
    
    .offer-includes {
        gap: 0.25rem;
    }
    
    .offer-includes li {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .offer-includes i {
        font-size: 0.7rem;
    }
    
    .offer-footer {
        padding: 0 0.5rem 0.5rem;
    }
    
    .offer-footer .btn-primary,
    .offer-footer .btn-secondary {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .offer-badge-large {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }
    
    /* Make modal fit viewport on mobile */
    .modal-content.modal-large {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1rem 0.5rem 0.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .modal-header p {
        font-size: 0.85rem;
    }
}

/* Desktop - 4 columns for program cards with icons */
@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Keep program cards evenly distributed */
    .programs-grid .program-card {
        width: 100%;
    }
    
    /* 3 column grid variant for specific sections */
    .programs-grid-3col {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

::-moz-selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   ABOUT PAGE & CONTENT PAGES
   ============================================ */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-dark) 100%);
    padding: 6rem 0 3rem;
    text-align: center;
    color: var(--color-white);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: white;
}

.page-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--color-dark);
}

.content-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text-full {
    width: 100%;
}

/* Mission Points */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.mission-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mission-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: var(--color-dark);
}

.mission-content p {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: var(--color-dark);
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.location-header {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    text-align: center;
}

.location-header i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.location-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1px;
}

.location-body {
    padding: 2rem;
    text-align: center;
}

.location-address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.location-phone {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.location-phone i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.location-phone a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 600;
}

.location-phone a:hover {
    color: var(--color-primary);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-dark) 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stat-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* About CTA */
.about-cta {
    background: var(--color-gray-light);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--color-dark);
}

.about-cta p {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Desktop Styles for About Page */
@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 5rem;
    }
    
    .page-title {
        font-size: 4.5rem;
    }
    
    .content-block {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 8rem;
    }
    
    .content-block.reverse {
        direction: rtl;
    }
    
    .content-block.reverse > * {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-cta .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   ABOUT PAGE - FACILITIES LAYOUT
   ============================================ */

/* Page Hero Enhancements */
.page-hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-white);
}

.hero-feature-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Facility Sections */
.facility-section {
    padding: 2rem 0;
    background: var(--color-white);
}

.facility-section:nth-child(even) {
    background: var(--color-gray-light);
}

.facility-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-primary);
}

.facility-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.facility-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--color-dark);
}

.facility-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: var(--color-dark);
}

.feature-content p {
    margin: 0;
    color: var(--color-gray);
}

.facility-highlights {
    background: var(--color-gray-light);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--color-primary);
}

.facility-highlights h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--color-dark);
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-gray);
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Community Sections */
.community-section {
    padding: 2rem 0;
    background: var(--color-gray-light);
}

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

.community-content.reverse {
    direction: ltr;
}

.community-features {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.community-features h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--color-dark);
    text-align: center;
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-box-small {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-box-small:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-box-small i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.feature-box-small p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.community-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--color-dark);
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

/* About CTA Section */
.about-cta-section {
    background: var(--color-primary);
    padding: 4rem 2rem;
    text-align: center;
}

.about-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-cta-section h2 .gradient-text {
    color: var(--color-white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-white);
    background-clip: unset;
}

.about-cta-section p {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.about-cta-section .btn-primary:hover {
    background: var(--color-gray-light);
    color: var(--color-primary);
}

.about-cta-section .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.about-cta-section .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Desktop Layouts */
@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 5rem;
    }
    
    .page-title {
        font-size: 3.5rem;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
    }
    
    .page-hero-features {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .facility-section {
        padding: 4rem 0;
    }
    
    .community-section {
        padding: 4rem 0;
    }
    
    .facility-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
    
    .community-content {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
    
    .community-content.reverse {
        direction: rtl;
    }
    
    .community-content.reverse > * {
        direction: ltr;
    }
    
    .features-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .facility-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   OUR FAMILY PAGE STYLES
   ============================================ */

/* Grandmaster Featured Section */
.grandmaster-featured {
    margin: 3rem 0;
}

.grandmaster-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.grandmaster-award-left,
.grandmaster-award-right {
    display: none;
}

.grandmaster-awards-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.grandmaster-awards-mobile .award-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.grandmaster-content {
    text-align: center;
    background: var(--color-gray-light);
    padding: 2rem;
    border-radius: 16px;
}

.grandmaster-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.grandmaster-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grandmaster-name {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.grandmaster-title {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 600;
    margin-bottom: 2rem;
}

.grandmaster-credentials {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.grandmaster-credentials li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.grandmaster-credentials li:last-child {
    border-bottom: none;
}

.grandmaster-credentials i {
    color: var(--color-primary);
    font-size: 1.1rem;
    min-width: 20px;
}

/* Kim Family Grid */
.kim-family-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.family-member-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.family-member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.family-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.family-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-info {
    padding: 2rem;
}

.family-name {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.family-role {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.family-credentials {
    list-style: none;
    margin-bottom: 1.5rem;
}

.family-credentials li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.family-credentials i {
    color: var(--color-primary);
    min-width: 16px;
}

.family-description {
    color: var(--color-gray);
    line-height: 1.8;
}

/* Instructors Section */
.instructors-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.instructors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.instructor-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.instructor-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Community Awards - Better image formatting */
.instructor-card:has(img[src*="hulafrog"]) .instructor-photo,
.instructor-card:has(img[alt*="Award"]) .instructor-photo {
    height: 300px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.instructor-card:has(img[src*="hulafrog"]) .instructor-photo img,
.instructor-card:has(img[alt*="Award"]) .instructor-photo img {
    object-fit: contain;
    object-position: center;
    max-height: 100%;
}

.instructor-content {
    padding: 1.5rem;
}

.instructor-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.instructor-credentials {
    list-style: none;
    margin-top: 1rem;
}

.instructor-credentials li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.instructor-credentials i {
    color: var(--color-primary);
    min-width: 16px;
}

/* Kim Children Grid */
.kim-children-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Family CTA Section */
.family-cta-section {
    padding: 4rem 0;
    background: var(--color-dark);
    text-align: center;
}

.family-cta-section h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.family-cta-section h2 .gradient-text {
    color: var(--color-primary);
}

.family-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.family-cta-section .btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
}

.family-cta-section .btn-primary:hover {
    background: var(--color-primary-light);
}

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

.family-cta-section .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .grandmaster-layout {
        grid-template-columns: 200px 1fr 200px;
        gap: 3rem;
    }
    
    .grandmaster-award-left,
    .grandmaster-award-right {
        display: block;
    }
    
    .grandmaster-award-left .award-image,
    .grandmaster-award-right .award-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
    }
    
    .grandmaster-awards-mobile {
        display: none;
    }
    
    .grandmaster-photo {
        width: 250px;
        height: 250px;
    }
    
    .kim-family-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .kim-children-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .family-cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .instructors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .family-cta-section h2 {
        font-size: 3rem;
    }
    
    /* Federation Flag Symbols - Center last 2 cards in 3-2 grid */
    .federation-flag-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .federation-flag-grid .instructor-card {
        grid-column: span 2;
    }
    
    .federation-flag-grid .instructor-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    
    .federation-flag-grid .instructor-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* ============================================
   BOOKING CALENDAR RESPONSIVE STYLES
   ============================================ */
/* Calendar iframes - Desktop */
#usk_calendar_kids_3_6,
#usk_calendar_kids_7_12,
#usk_calendar_adults {
    width: 100% !important;
    height: 1400px !important;
    min-height: 1400px !important;
    border: none !important;
    display: block !important;
    overflow: visible !important;
}

/* Calendar iframes - Mobile */
@media (max-width: 768px) {
    #usk_calendar_kids_3_6,
    #usk_calendar_kids_7_12,
    #usk_calendar_adults {
        width: 100% !important;
        height: 1600px !important;
        min-height: 1600px !important;
        max-height: none !important;
        overflow: visible !important;
    }
}