/* REDESIGN.CSS - Clean Light Theme */

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

:root {
    --bg-body: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #001f3f;
    --royal: #303e3e;
    /* deep royal blue */
    --royal-2: #2a3636;
    --color-primary: #303e3e;
    /* Deep Navy Blue */
    --text-main: #1f1f1f;
    --text-muted: #666666;
    --accent: #ffb81f;
    /* Premium Gold/Amber */
    --accent-hover: #e0a21a;
    --border-light: #e5e5e5;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1240px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Global Reset Overrides */
body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

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

/* --- UTILITIES --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-padding {
    padding: 100px 0;
}

/* --- 5. FOOTER --- */
/* --- 5. FOOTER --- */
.footer-clean {
    background: linear-gradient(180deg, var(--royal), #03101f);
    padding: 80px 0 30px;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.newsletter-widget h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    outline: none;
}

.newsletter-form .btn-subscribe {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-form .btn-subscribe:hover {
    transform: scale(1.05);
}

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

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* --- 0. TOP BAR --- */
/* --- 0. TOP BAR --- */
.top-bar {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, var(--royal-2), #0b2b5a);
    padding: 10px 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    /* Above navbar */
    overflow: hidden;
    height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.top-bar-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.top-bar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #e5b84a);
    color: var(--bg-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(197, 157, 38, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.top-bar-text {
    color: white;
}

.top-bar-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.top-bar-tagline {
    font-size: 10px;
    opacity: 0.9;
    font-family: var(--font-body);
}

/* Star Animation */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: twinkle 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.star:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 40%;
    left: 30%;
    animation-delay: 0.3s;
}

/* --- 1. NAVBAR CLEAN --- */
.navbar-clean {
    position: fixed;
    top: 70px;
    /* Match new topbar height */
    left: 0;
    width: 100%;
    max-width: 100vw;
    /* Original Gradient Style (adapted to Royal) */
    background: linear-gradient(180deg, rgba(48, 62, 62, 0.8), rgba(48, 62, 62, 0.5));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Scrolled State */
.navbar-clean.scrolled {
    background: rgba(255, 255, 255, 0.98);
    background: var(--bg-body);
    /* fallback */
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    /* Shrink slightly */
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    /* White for dark navbar */
    transition: color 0.3s ease;
}

.navbar-clean.scrolled .nav-brand {
    color: var(--text-main);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    /* Light text for dark navbar */
    position: relative;
    /* For underline */
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.navbar-clean.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease-out;
}

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

.navbar-clean.scrolled .btn-cta {
    border-color: var(--accent);
    color: var(--text-main);
}

.navbar-clean.scrolled .btn-cta:hover {
    background-color: var(--accent);
    color: white;
}

.btn-cta {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 31, 0.2);
}

.mobile-toggle {
    display: none;
}

/* --- 2. HERO SPLIT --- */
.hero-clean {
    padding-top: 180px;
    padding-bottom: 80px;
    background: linear-gradient(69deg, #2a3636d2 0%, #303e3ed7 100%), url('../images/hero-banner.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    color: white;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    /* Original bold branding */
    color: white;
    /* Ensure contrast on dark bg */
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 10px 26px;
    border-radius: 4px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-main);
    color: white;
}

.hero-image-container {
    background-color: #0b2b5a;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid var(--accent);
    padding: 10px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    margin-bottom: -25px;
}

/* --- 3. STATS STRIP --- */
.stats-strip {
    background: linear-gradient(180deg, var(--royal), #03101f);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

/* --- 4. SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, var(--royal), var(--royal-2));
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    /* Animation Start */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Stagger delays for cards if they have the animate-in class */
.service-card.animate-in:nth-child(1) {
    transition-delay: 0s;
}

.service-card.animate-in:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card.animate-in:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card.animate-in:nth-child(4) {
    transition-delay: 0.3s;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.service-card p.muted {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card .btn-link-card {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card .btn-link-card:hover {
    color: white;
    border-bottom-color: var(--accent);
    transform: translateX(5px);
}

.stat-item h3 {
    color: var(--accent);
    font-size: 3rem;
    font-weight: 400;
    /* Serif font */
    margin: 0;
    font-family: var(--font-heading);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --- 4. CLEAN CARDS --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-clean {
    background: white;
    padding: 40px 30px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    /* Less rounded */
    transition: all 0.3s ease;
    text-align: center;
    /* Or left based on design */
}

.card-clean:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--text-main);
    transition: all 0.3s;
}

.card-clean:hover .card-icon {
    background: var(--accent);
    color: white;
}

.card-clean h3 {
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
}

/* --- FOOTER CLEAN --- */
.footer-clean {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Or flex-start */
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    color: white;
    margin-bottom: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-container {
        height: 400px;
        order: -1;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Styles */
    .mobile-toggle {
        display: block;
        /* Visible on mobile */
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        /* Height of navbar */
        left: 0;
        width: 100%;
        height: calc(100vh - 73px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 40px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        /* Hidden by default */
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .btn-cta {
        display: none;
        /* Hide header CTA on mobile, maybe add to menu loop if needed */
    }
}

/* Heartbeat Pulse for Headlines */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.03);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.03);
    }

    70% {
        transform: scale(1);
    }
}

.typing-target {
    display: inline-block;
    animation: heartbeat 3s ease-in-out infinite;
    transform-origin: center center;
}

/* --- PROGRAMS PAGE --- */
.programs-hero {
    background: var(--bg-dark);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
}

.programs-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.program-card-original {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow than original but similar vibe */
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    /* allow expansion */
    border: none;
    display: flex;
    flex-direction: column;
}

.program-card-original:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-thumbnail {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.program-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.program-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-badge.exclusive {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.program-price {
    color: #667eea;
    /* Keeping original purple/blue if requested, or switch to gold? User said "original design". I'll keep the accent provided or close to valid css */
    color: var(--accent);
    /* Switching to gold to match theme unless user complains */
    font-weight: 700;
    font-size: 1.25rem;
}

/* Slide Down Section */
.program-details-slide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease;
    background: #f9f9f9;
    padding: 0 25px;
}

.program-details-slide.active {
    max-height: 500px;
    /* Arbitrary large height */
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
}

/* Reveal Animations */
.reveal-fade,
.reveal-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-fade.revealed,
.reveal-bottom.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- NEW PROGRAMS SECTION STYLES --- */
.programs-section {
    background-color: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.program-header i {
    font-size: 2rem;
    color: var(--accent);
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

.program-teaser {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.program-details {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-bottom 0.3s ease;
    overflow: hidden;
    margin-bottom: 0;
}

.program-card:hover .program-details {
    max-height: 200px;
    /* Adjust as needed */
    opacity: 1;
    margin-bottom: 20px;
}

.program-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.program-card:hover .program-details li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered text reveal */
.program-card:hover .program-details li:nth-child(1) {
    transition-delay: 0.1s;
}

.program-card:hover .program-details li:nth-child(2) {
    transition-delay: 0.2s;
}

.program-card:hover .program-details li:nth-child(3) {
    transition-delay: 0.3s;
}

.program-details li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.btn-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-dark);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-enroll:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ABOUT SECTION BACKGROUND --- */
#about {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/gold-backgroudn.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
    transform: scale(1.1);
    /* Prevent blur edges */
    opacity: 0.15;
    /* Subtle texture */
}


/* --- MOBILE FIXES OVERRIDE --- */
@media (max-width: 900px) {
    .mobile-toggle {
        color: var(--accent) !important;
    }

    .nav-links a {
        color: var(--text-main) !important;
        font-weight: 600;
        display: block;
    }

    .nav-links a:hover {
        color: var(--accent) !important;
    }
}


/* Hero Responsiveness */
@media (max-width: 900px) {
    .hero-clean {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        order: -1;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: 50px;
        padding: 5px 12px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .top-bar-content {
        gap: 8px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        justify-content: center;
    }

    .top-bar-mark {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .top-bar-name {
        font-size: 13px;
        white-space: nowrap;
    }

    .top-bar-tagline {
        display: none;
    }

    .navbar-clean {
        top: 50px;
        padding: 8px 0;
        width: 100%;
        max-width: 100%;
    }

    .nav-inner {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
    }

    .nav-brand {
        font-size: 1rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-toggle {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
        width: 100%;
    }

    .hero-clean {
        padding-top: 130px;
        background-attachment: scroll !important;
        width: 100%;
        overflow: hidden;
    }

    .hero-split {
        width: 100%;
        gap: 20px;
    }

    .hero-image-container {
        width: 260px;
        height: 260px;
        max-width: 80vw;
        max-height: 80vw;
        margin-left: auto;
        margin-right: auto;
    }

    #about::before {
        background-attachment: scroll !important;
    }
}

/* --- BOOKING MODAL & FORMS --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal-content-clean {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.3s ease-out forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 184, 31, 0.1);
}

.form-control::placeholder {
    color: #bbb;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--royal);
    font-size: 0.9rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.btn-primary {
    background: var(--royal);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: var(--royal-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}