/* ============================================
   USK MARTIAL ARTS - VERSION 6 STYLESHEET
   Yellow/Gold Accents + Professional Design
   Inspired by Jupiter Self Defense
   ============================================ */

/* ============================================
   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;
}

.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;
}

.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;
}

/* ============================================
   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;
    }
    
    .testimonials-section .section-header {
        padding: 0 1rem;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem 1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) var(--color-gray-light);
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .testimonials-grid::-webkit-scrollbar-track {
        background: var(--color-gray-light);
        border-radius: 10px;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb:hover {
        background: var(--color-gold-dark);
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

.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);
    line-height: 1.8;
}

.location-hours p {
    margin-bottom: 0.5rem;
}

.location-hours strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 0.75rem;
}

.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;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.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: grid;
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.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 */
    .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;
    }
    
    /* 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 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   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: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem 1rem;
    }
    
    .offer-card {
        font-size: 0.85rem;
    }
    
    .offer-header {
        padding: 1rem;
    }
    
    .offer-header h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-label {
        font-size: 0.8rem;
    }
    
    .offer-body {
        padding: 1rem;
    }
    
    .offer-includes {
        gap: 0.5rem;
    }
    
    .offer-includes li {
        font-size: 0.85rem;
    }
    
    .offer-footer {
        padding: 0 1rem 1rem;
    }
    
    .offer-footer .btn-primary,
    .offer-footer .btn-secondary {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .offer-badge-large {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

/* Center last 2 program cards using flexbox wrapper approach */
@media (min-width: 1024px) {
    .programs-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    
    .programs-grid .program-card {
        flex: 0 0 calc(33.333% - 1.34rem);
        max-width: calc(33.333% - 1.34rem);
    }
}

/* 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);
}