/* ===== CSS Variables ===== */
:root {
    --navy: #1B2A4A;
    --navy-dark: #121D33;
    --rose: #C75B7A;
    --rose-light: #E8A0B5;
    --rose-bg: #FDF2F5;
    --cream: #FFF9F5;
    --white: #FFFFFF;
    --gray-100: #F7F7F8;
    --gray-200: #E8E8EC;
    --gray-400: #9B9BA8;
    --gray-600: #5A5A6E;
    --gray-800: #2D2D3A;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 42, 74, 0.1);
    --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Loading Screen ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2A3F6E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s,
                filter 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    filter: blur(8px);
}

.loader.loaded .loader-content {
    transform: scale(1.2) translateY(-20px);
    opacity: 0;
}

.loader.loaded .loader-glow {
    transform: scale(3);
    opacity: 0;
}

/* Animated radial glow background */
.loader-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 91, 122, 0.2) 0%, rgba(199, 91, 122, 0.05) 40%, transparent 70%);
    animation: loaderGlowPulse 3s ease-in-out infinite;
    transition: transform 1s ease, opacity 1s ease;
}

@keyframes loaderGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%      { transform: scale(1.3); opacity: 1; }
}

/* Floating particles – enhanced */
.loader-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.loader-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--rose-light);
    border-radius: 50%;
    opacity: 0;
    animation: loaderParticle 3s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(232, 160, 181, 0.4);
}

.loader-particles span:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s; }
.loader-particles span:nth-child(2)  { left: 80%; top: 15%; animation-delay: 0.3s; width: 4px; height: 4px; }
.loader-particles span:nth-child(3)  { left: 25%; top: 75%; animation-delay: 0.6s; }
.loader-particles span:nth-child(4)  { left: 70%; top: 80%; animation-delay: 0.9s; width: 8px; height: 8px; }
.loader-particles span:nth-child(5)  { left: 50%; top: 10%; animation-delay: 1.2s; width: 5px; height: 5px; }
.loader-particles span:nth-child(6)  { left: 15%; top: 50%; animation-delay: 0.4s; width: 4px; height: 4px; }
.loader-particles span:nth-child(7)  { left: 90%; top: 45%; animation-delay: 0.7s; }
.loader-particles span:nth-child(8)  { left: 40%; top: 90%; animation-delay: 1s; width: 5px; height: 5px; }
.loader-particles span:nth-child(9)  { left: 60%; top: 55%; animation-delay: 0.2s; width: 3px; height: 3px; }
.loader-particles span:nth-child(10) { left: 35%; top: 30%; animation-delay: 1.4s; width: 7px; height: 7px; }
.loader-particles span:nth-child(11) { left: 5%;  top: 65%; animation-delay: 0.5s; width: 5px; height: 5px; background: rgba(255,255,255,0.3); }
.loader-particles span:nth-child(12) { left: 75%; top: 60%; animation-delay: 1.1s; width: 4px; height: 4px; background: rgba(255,255,255,0.2); }

@keyframes loaderParticle {
    0%   { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
    20%  { opacity: 0.7; transform: translateY(-15px) scale(1) rotate(45deg); }
    60%  { opacity: 0.5; transform: translateY(-45px) scale(0.9) rotate(120deg); }
    100% { opacity: 0; transform: translateY(-90px) scale(0) rotate(180deg); }
}

/* Content */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

/* Glowing ring around logo */
.loader-ring {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderFadeIn 0.8s ease-out both;
}

.loader-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--rose);
    border-right-color: var(--rose-light);
    animation: loaderSpin 1.5s linear infinite;
}

.loader-ring::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(199, 91, 122, 0.3);
    border-left-color: rgba(232, 160, 181, 0.2);
    animation: loaderSpin 2.5s linear infinite reverse;
}

/* Pulsing glow behind logo */
.loader-ring-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 91, 122, 0.25) 0%, transparent 70%);
    animation: loaderRingGlow 2s ease-in-out infinite;
}

@keyframes loaderRingGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.25); opacity: 1; }
}

.loader-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(199, 91, 122, 0.2);
    animation: loaderLogoIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both,
               loaderPulse 2.5s ease-in-out 0.9s infinite;
}

@keyframes loaderLogoIn {
    0%   { opacity: 0; transform: scale(0.3) rotate(-10deg); }
    60%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Letter-by-letter text with wave */
.loader-text-wrap {
    display: flex;
    gap: 2px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.loader-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) scale(0.5);
    animation: loaderLetterIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               loaderLetterFloat 2.5s ease-in-out infinite;
    animation-delay: calc(0.5s + var(--i) * 0.08s),
                     calc(1.5s + var(--i) * 0.1s);
}

@keyframes loaderLetterIn {
    0%   { opacity: 0; transform: translateY(30px) scale(0.5); }
    60%  { opacity: 1; transform: translateY(-5px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loaderLetterFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* Tagline with shimmer */
.loader-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: loaderTaglineIn 0.8s ease forwards 1.4s;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(232,160,181,0.7) 50%, rgba(255,255,255,0.5) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes loaderTaglineIn {
    from { opacity: 0; transform: translateY(12px); letter-spacing: 0.4em; background-position: 200% center; }
    to   { opacity: 1; transform: translateY(0); letter-spacing: 0.15em; background-position: 0% center; }
}

/* Progress bar */
.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: loaderFadeIn 0.4s ease forwards 1s;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--rose), var(--rose-light), var(--rose));
    background-size: 200% 100%;
    border-radius: 3px;
    animation: loaderProgress 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.1s,
               loaderBarShimmer 1.5s linear infinite 1.1s;
    box-shadow: 0 0 12px rgba(199, 91, 122, 0.6), 0 0 4px rgba(199, 91, 122, 0.3);
}

@keyframes loaderProgress {
    0%   { width: 0%; }
    15%  { width: 20%; }
    35%  { width: 45%; }
    55%  { width: 65%; }
    75%  { width: 82%; }
    90%  { width: 95%; }
    100% { width: 100%; }
}

@keyframes loaderBarShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes loaderFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(199, 91, 122, 0.2); }
    50%      { transform: scale(1.04); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(199, 91, 122, 0.4); }
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--rose-light));
    z-index: 9999;
    transition: none;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(199, 91, 122, 0.4);
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.from-left {
    transform: translateX(-60px);
}

.reveal.from-right {
    transform: translateX(60px);
}

.reveal.from-bottom {
    transform: translateY(50px);
}

.reveal.scale-in {
    transform: scale(0.9);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delays for cards */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.36s; }
.stagger-5 { transition-delay: 0.48s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hero parallax layer */
.hero-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Highlight image parallax */
.highlight-img img {
    will-change: transform;
}

/* Section title reveal */
.section-title.reveal,
.section-subtitle.reveal {
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 32px;
    transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-radius 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: 1px solid transparent;
}

.navbar.scrolled {
    top: 12px;
    left: calc(50% - 400px);
    right: calc(50% - 400px);
    max-width: calc(100% - 24px);
    margin: 0 auto;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 60px;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--navy);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--navy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--navy);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Language Switcher ===== */
.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 3px;
    transition: var(--transition);
    flex-shrink: 0;
}

.navbar.scrolled .lang-switch {
    background: var(--gray-100);
}

.lang-btn {
    background: none;
    border: none;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .lang-btn {
    color: var(--gray-400);
}

.lang-btn.active {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(199, 91, 122, 0.3);
}

.navbar.scrolled .lang-btn.active {
    background: var(--rose);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .lang-btn:hover:not(.active) {
    color: var(--navy);
    background: var(--gray-200);
}

/* ===== Language Toast ===== */
.lang-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.35s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}

.lang-toast svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.lang-toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .lang-toast {
        bottom: 80px;
        font-size: 0.82rem;
        padding: 12px 22px;
    }
}

/* ===== Mobile Overlay ===== */
.nav-overlay {
    display: none;
}

@media (max-width: 768px) {
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hamburger always on top when menu open */
.nav-toggle.active span {
    background: var(--navy) !important;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #2A3F6E 70%, var(--rose) 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(199, 91, 122, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(199, 91, 122, 0.15) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 32px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator span,
.scroll-indicator svg {
    font-size: 1.5rem;
    opacity: 0.5;
    color: var(--white);
}

.inline-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    border: 2px solid var(--rose);
}

.btn-primary:hover {
    background: #B34D6B;
    border-color: #B34D6B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 91, 122, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.accent {
    color: var(--rose);
}

/* ===== About ===== */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    margin-bottom: 20px;
    color: var(--rose);
    display: flex;
    justify-content: center;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== Highlights ===== */
.highlights {
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    border-color: var(--rose-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.highlight-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-card:hover .highlight-img img {
    transform: scale(1.06);
}

.highlight-info {
    padding: 24px 20px;
}

.highlight-icon {
    margin-bottom: 16px;
    color: var(--rose);
    display: flex;
    justify-content: center;
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== Hours ===== */
.hours {
    background: var(--cream);
}

.hours-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 40px rgba(27, 42, 74, 0.08), 0 1px 3px rgba(27, 42, 74, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    overflow: hidden;
}

.hours-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px 0;
}

.hours-icon {
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--rose-bg);
    border-radius: 14px;
}

.hours-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: var(--transition);
}

.hours-status.is-open {
    background: #E8F8EE;
    color: #1B7A3D;
}

.hours-status.is-closed {
    background: var(--rose-bg);
    color: var(--rose);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
    transition: var(--transition);
}

.hours-status.is-open .status-dot {
    background: #2ECC71;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hours-status.is-closed .status-dot {
    background: var(--rose);
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 8px rgba(46, 204, 113, 0.5); }
    50% { box-shadow: 0 0 16px rgba(46, 204, 113, 0.8); }
}

.hours-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    margin: 24px 36px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.hours-row:hover {
    background: var(--gray-100);
}

.hours-row.today {
    background: linear-gradient(135deg, rgba(199, 91, 122, 0.06), rgba(199, 91, 122, 0.12));
    border-left-color: var(--rose);
}

.hours-row.today .day {
    font-weight: 700;
    color: var(--navy);
}

.hours-row.today .time {
    font-weight: 700;
}

.hours-row.closed-row {
    opacity: 0.6;
}

.hours-row.closed-row.today {
    opacity: 1;
}

.hours-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.day-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: var(--transition);
}

.hours-row.today .day-indicator {
    background: var(--rose);
    box-shadow: 0 0 6px rgba(199, 91, 122, 0.4);
}

.hours-row.closed-row .day-indicator {
    background: transparent;
    border: 1.5px solid var(--gray-400);
}

.day {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy);
}

.time {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
}

.time.closed {
    color: var(--rose);
    font-style: italic;
    font-weight: 500;
}

/* ===== Location ===== */
.location {
    background: var(--white);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.map-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ===== Contact / Social ===== */
.contact {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact .accent {
    color: var(--rose-light);
}

.social-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 40px 48px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.social-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--rose-light);
    transform: translateY(-4px);
}

.social-icon {
    width: 40px;
    height: 40px;
    color: var(--rose-light);
}

.social-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.social-handle {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.6;
}

.footer p {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rose-light);
}

/* ===== Mobile Bottom Nav ===== */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
        padding: 6px 0 max(6px, env(safe-area-inset-bottom));
        justify-content: space-around;
        align-items: center;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 6px 12px;
        border-radius: 12px;
        color: var(--gray-400);
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        transition: color 0.25s ease, transform 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }

    .bottom-nav-item svg {
        transition: transform 0.25s ease, stroke 0.25s ease;
    }

    .bottom-nav-item.active {
        color: var(--rose);
    }

    .bottom-nav-item.active svg {
        transform: translateY(-2px);
        stroke: var(--rose);
    }

    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--rose);
        border-radius: 0 0 3px 3px;
    }

    .bottom-nav-item:active {
        transform: scale(0.92);
    }

    /* Extra bottom padding on footer so content isn't hidden behind bottom-nav */
    .footer {
        padding-bottom: 100px;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .navbar.scrolled {
        left: 12px;
        right: 12px;
        padding: 8px 16px;
        border-radius: 50px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .lang-switch {
        padding: 2px;
    }

    .lang-btn {
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
        padding: 0 8px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 16px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-card {
        padding: 32px 24px;
    }

    /* Highlights mobile */
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .highlight-img {
        height: 160px;
    }

    .highlight-info {
        padding: 16px 14px;
    }

    .highlight-card h3 {
        font-size: 1rem;
    }

    .highlight-card p {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    /* Hours mobile */
    .hours-card {
        padding: 0;
        border-radius: 16px;
    }

    .hours-header {
        padding: 20px 20px 0;
    }

    .hours-divider {
        margin: 20px 20px;
    }

    .hours-table {
        padding: 0 10px 24px;
    }

    .hours-row {
        padding: 12px 12px;
    }

    .day {
        font-size: 0.88rem;
    }

    .time {
        font-size: 0.88rem;
    }

    /* Map mobile */
    .map-container iframe {
        min-height: 280px;
        height: 300px;
    }

    /* Social mobile */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .social-card {
        width: 100%;
        max-width: 340px;
        padding: 28px 24px;
        flex-direction: row;
        gap: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .social-name {
        font-size: 1.1rem;
    }

    .social-handle {
        font-size: 0.85rem;
    }

    /* Footer mobile */
    .footer {
        padding: 32px 0;
    }

    .footer-links {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .navbar.scrolled {
        left: 8px;
        right: 8px;
        top: 8px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .highlight-img {
        height: 200px;
    }

    .highlight-info {
        padding: 20px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 28px;
    }

    .hero-content {
        padding: 90px 16px 50px;
    }

    .hero-logo {
        width: 96px;
        height: 96px;
    }

    .social-card {
        max-width: 100%;
    }

    .map-container iframe {
        min-height: 240px;
        height: 260px;
    }

    .hours-row {
        padding: 10px 8px;
    }
}
