/* =============================================
   ENCANTO TU FIESTA DE ENSUEÑO
   Professional Event Planning Website
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C32478;
    --primary-light: #D94E96;
    --primary-dark: #9E1D62;
    --secondary: #1B2D45;
    --accent: #C9963A;
    --champagne: #F5E6C8;
    --burgundy: #6B1A3A;
    --gold-shimmer: linear-gradient(135deg, #D4AF7A, #F0D09A, #C9963A);
    --rose: #FAADE1;
    --rose-light: #FFD6F0;
    --cream: #FFF9FC;
    --white: #ffffff;
    --off-white: #FFF5F9;
    --text-dark: #1B2D45;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --border: #F0D6E8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.13);
    --shadow-gold: 0 8px 30px rgba(201,150,58,0.25);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 30px;
    --letter-spacing-display: 3px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --section-padding: 8rem 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.3;
}

h1 { letter-spacing: 0.02em; }

.italic { font-style: italic; }

.heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.8rem auto 2rem;
    color: var(--accent);
}

.heading-ornament::before,
.heading-ornament::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.heading-ornament::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.heading-ornament span {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    width: 100%;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: #151E2E;
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-left a {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
}

.top-bar-left a:hover {
    color: var(--primary-light);
}

.top-bar-left i {
    margin-right: 0.4rem;
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--white);
    background: var(--primary);
}

.lang-btn {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--champagne);
    padding: 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0 2rem;
    max-width: 100%;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    grid-column: 1;
}

.logo-img {
    display: none;
}

.logo:hover .logo-img {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(195,36,120,0.25);
}

.navbar.scrolled .logo {
    gap: 0;
}

.navbar.scrolled .logo-img {
    transform: scale(0);
    opacity: 0;
    width: 0;
    padding: 0;
    border-width: 0;
    margin: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-self: end;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 60%;
}

.cta-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 3px !important;
    padding: 0.55rem 1.3rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

.cta-nav::after {
    display: none !important;
}

.cta-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Language Button — visible in nav-menu on desktop only */
.nav-lang-item {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
    grid-column: 2;
    justify-self: end;
}

.mobile-toggle:hover {
    background: rgba(195,36,120,0.08);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-toggle.active span {
    background: var(--primary-light);
}

/* When menu is open, pin the X button to top-right of drawer */
.mobile-toggle.active {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 1002;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Overlay (mobile menu backdrop) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    padding: 6rem 2rem 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(26, 26, 46, 0.75) 0%,
        rgba(26, 26, 46, 0.55) 45%,
        rgba(26, 26, 46, 0.80) 100%
    );
}

.hero-bg-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(195,36,120,0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-bg-2 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,160,160,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-bg-3 {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 6s ease-in-out infinite 2s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh); }
    20% { opacity: 0.2; }
    80% { opacity: 0.1; }
    100% { opacity: 0; transform: translateY(-10vh); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-logo-feature {
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-light);
    padding: 0;
    background: var(--white);
    box-shadow: 0 0 60px rgba(195,36,120,0.3), 0 0 120px rgba(195,36,120,0.1);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 40px rgba(195,36,120,0.2), 0 0 80px rgba(195,36,120,0.05); }
    100% { box-shadow: 0 0 60px rgba(195,36,120,0.4), 0 0 120px rgba(195,36,120,0.15); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-title-accent {
    color: var(--rose);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.8rem, 7.5vw, 6rem);
    animation-delay: 0.2s;
    letter-spacing: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-eyebrow {
    display: block;
    width: fit-content;
    margin: 0 auto 1.2rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(201, 150, 58, 0.85);
    padding: 0.35rem 1.2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
}


@keyframes fadeSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    text-shadow:
        -1px -1px 2px rgba(0,0,0,0.8),
         1px -1px 2px rgba(0,0,0,0.8),
        -1px  1px 2px rgba(0,0,0,0.8),
         1px  1px 2px rgba(0,0,0,0.8),
         0 0 8px rgba(0,0,0,0.6);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.65s forwards;
}

.hero-buttons .btn-outline {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.hero-buttons .btn-outline:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(195,36,120,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(195,36,120,0.1);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 1.6rem 3rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 8px 32px rgba(195, 36, 120, 0.18),
        inset 0 0 0 1px rgba(201, 169, 110, 0.18),
        0 0 60px rgba(195, 36, 120, 0.08);
    position: relative;
    margin: 0 auto 3.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

.hero-stats::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 100px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    pointer-events: none;
}

.stat {
    text-align: center;
    padding: 0 2.25rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SECTION STYLES (shared)
   ============================================= */
.section-label {
    display: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--accent);
    display: inline-block;
}

.section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 0.6rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-heading {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: clamp(130px, 18vw, 200px);
    height: clamp(130px, 18vw, 200px);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -15px;
    left: -10px;
    width: clamp(85px, 10vw, 120px);
    height: clamp(85px, 10vw, 120px);
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(27,45,69,0.4);
    z-index: 2;
    border: 3px solid var(--accent);
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0.2rem;
}

.about-content .section-label {
    display: block;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.about-feature i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 0.8rem;
    font-size: 1.1rem;
}

.about-feature h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   BREADCRUMB NAVIGATION
   ============================================= */
.breadcrumb {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}
.breadcrumb .container {
    display: flex;
    align-items: center;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #C32478;
    border-radius: 50px;
    padding: 0.5rem 1.2rem 0.5rem 1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.back-btn,
.back-btn span {
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
}
.back-btn i {
    color: #ffffff !important;
    font-size: 0.85rem;
    transition: transform 0.2s;
}
.back-btn:hover {
    background: #9E1D62;
}
.back-btn:hover i {
    transform: translateX(-3px);
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
    padding: 10rem 2rem 4rem;
    background: var(--secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(27, 45, 69, 0.82) 0%,
        rgba(27, 45, 69, 0.70) 50%,
        rgba(27, 45, 69, 0.85) 100%
    );
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-heading {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero .section-desc {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* =============================================
   WHY CHOOSE US (About Page)
   ============================================= */
.why-us {
    padding: 6rem 0;
    background: var(--off-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.4rem;
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-us-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   SERVICES PREVIEW (Home Page)
   ============================================= */
.services-preview {
    padding: 5rem 0 4rem;
    background: var(--cream);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.service-preview-card {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    color: var(--white);
    text-decoration: none;
}

.spc-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-preview-card:hover .spc-image {
    transform: scale(1.05);
}

.spc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(100, 20, 60, 0.92) 0%,
        rgba(27, 45, 69, 0.45) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.8rem 1.4rem;
    transition: background 0.4s ease;
}

.service-preview-card:hover .spc-overlay {
    background: linear-gradient(
        to top,
        rgba(195, 36, 120, 0.88) 0%,
        rgba(195, 36, 120, 0.5) 50%,
        transparent 100%
    );
}

.spc-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.7rem;
    opacity: 0.9;
}

.service-preview-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.6rem;
}

.spc-cta {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-preview-card:hover .spc-cta {
    opacity: 1;
    transform: translateY(0);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.section-cta .btn-outline {
    color: var(--accent);
    border-color: var(--accent);
}

.section-cta .btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 6rem 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.service-card:hover::after {
    transform: scaleY(1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, rgba(195,36,120,0.03) 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-shimmer);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    z-index: 2;
}

.service-img {
    margin: -2.5rem -2rem 1.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    height: 220px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(0.9);
}

.service-card:hover .service-img img {
    transform: scale(1.03);
    filter: saturate(1.1);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(195,36,120,0.08), rgba(195,36,120,0.15));
    border-radius: 50%;
    transition: var(--transition);
    animation: softFloat 4s ease-in-out infinite;
}

@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.service-icon-wrap i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--primary);
    transform: scale(1.1);
}

.service-card:hover .service-icon-wrap i {
    color: var(--white);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.7rem;
}

.service-link:hover::after {
    width: 100%;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
    padding: 6rem 0;
    background: var(--secondary);
    color: var(--white);
}

.process .section-label {
    color: var(--primary-light);
}

.process .section-heading {
    color: var(--white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195,36,120,0.15);
    border-radius: 50%;
    border: 2px solid var(--primary-light);
}

.step-icon i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.process-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 5rem;
    color: rgba(195,36,120,0.3);
    font-size: 1.2rem;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-category {
    margin-bottom: 3rem;
    counter-reset: faq;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.faq-category-title i {
    color: var(--primary);
    font-size: 1.3rem;
}

.faq-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(195, 36, 120, 0.1);
    transform: translateY(-1px);
}

.faq-item:hover::before {
    transform: scaleY(0.4);
}

.faq-item.active {
    border-color: var(--primary);
    background: var(--off-white);
    box-shadow: 0 12px 30px rgba(195, 36, 120, 0.14);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.35rem 1.5rem 1.35rem 1.85rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.25s ease;
    gap: 1rem;
    counter-increment: faq;
}

.faq-question::before {
    content: counter(faq, decimal-leading-zero);
    flex-shrink: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--accent);
    letter-spacing: 0.04em;
    min-width: 2.1rem;
    line-height: 1;
    transition: color 0.25s ease;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question:hover::before {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question::before {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(201, 150, 58, 0.12);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease, color 0.25s ease;
}

.faq-item:hover .faq-icon {
    background: rgba(201, 150, 58, 0.22);
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
}

/* Accordion collapse — max-height technique (reliable, avoids grid-fr padding bug) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 1.85rem 1.4rem 4.1rem;
    color: var(--text-medium);
    line-height: 1.75;
    font-size: 0.97rem;
}

/* FAQ Contact CTA */
.faq-contact-cta {
    margin-top: 3rem;
    text-align: center;
}

.faq-contact-inner {
    background: linear-gradient(135deg, var(--secondary), #253d5b);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    color: var(--white);
}

.faq-contact-inner i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.faq-contact-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.faq-contact-inner p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.faq-contact-inner .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.faq-contact-inner .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    padding: 3rem 0 1rem;
    background: var(--off-white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.filter-btn {
    padding: 0.65rem 1.4rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: color 0.25s ease, border-color 0.25s ease;
    border-radius: 0;
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    color: var(--accent);
}

.filter-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: transparent;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    object-fit: cover;
    filter: saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: saturate(1.1) brightness(0.8);
}

/* Gallery page — Instagram-style grid */
.gallery-carousel .carousel-slide.hidden {
    display: none;
}

.gallery-carousel {
    position: relative;
}

.gallery-carousel .carousel-track-wrapper {
    overflow: visible;
}
.gallery-carousel .carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 3px;
}

/* Each image tile */
.gallery-carousel .carousel-slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: var(--off-white);
}

/* Varied grid: every 7th tile starting at 1st spans 2 columns (wide landscape) */
.gallery-carousel .carousel-slide:nth-child(7n + 1) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-carousel .carousel-slide:hover img {
    transform: scale(1.04);
    filter: brightness(0.88);
}

.gallery-carousel .carousel-slide figcaption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(27, 15, 35, 0.72) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 0.7rem 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
}

.gallery-carousel .carousel-slide:hover figcaption {
    opacity: 1;
}

@media (hover: none) {
    .gallery-carousel .carousel-slide figcaption {
        opacity: 0;
    }
}

/* Hide carousel arrows & dots on gallery grid */
.gallery-carousel .carousel-prev,
.gallery-carousel .carousel-next,
.gallery-carousel .carousel-dots {
    display: none;
}

/* Gallery Pagination Controls */
.gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0.5rem 0;
}

.gallery-page-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gallery-page-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(195, 36, 120, 0.28);
}

.gallery-page-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.gallery-page-info {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    letter-spacing: 0.08em;
    min-width: 4rem;
    text-align: center;
}

/* Page-hidden slides (pagination) */
.carousel-slide.page-hidden {
    display: none !important;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,45,69,0.85) 0%, rgba(27,45,69,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.gallery-overlay i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.gallery-item.hidden {
    display: none;
}

/* ---- Gallery Hero Slideshow ---- */
.gallery-hero {
    position: relative;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
}
.gallery-hero-slides {
    position: absolute;
    inset: 0;
}
.gallery-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.gallery-hero-slide.active {
    opacity: 1;
}
.gallery-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(27,45,69,0.45) 0%, rgba(27,45,69,0.65) 100%);
    text-align: center;
    padding: 2rem 1rem;
}
.gallery-hero-overlay .section-heading,
.gallery-hero-overlay .section-desc {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-hero-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}
.gallery-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.gallery-hero-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ---- Category Cards Strip ---- */
.category-cards-section {
    padding: 2.5rem 0 1rem;
    background: var(--cream);
}
.category-cards {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}
.category-card-all img {
    filter: saturate(0.5) brightness(0.7);
}
.category-card-all:hover img {
    filter: saturate(0.8) brightness(0.8);
}
.category-card-all .category-card-label {
    background: linear-gradient(to top, rgba(27,45,69,0.9) 0%, rgba(27,45,69,0.3) 60%, transparent 100%);
}
.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: none;
    padding: 0;
}
.category-card:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
.category-card:active {
    transform: scale(0.97);
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27,45,69,0.18);
}
.category-card.active {
    box-shadow: 0 0 0 3px var(--primary), 0 8px 20px rgba(195,36,120,0.2);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: saturate(0.9);
}
.category-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}
.category-card-label {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,45,69,0.8) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}
.category-card-label span {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* ---- Gallery Section (masonry wrapper) ---- */
.gallery-section {
    padding: 3rem 0 6rem;
    background: var(--off-white);
}

/* ---- Masonry entrance animation ---- */
@keyframes galleryReveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.gallery-item {
    animation: galleryReveal 0.5s ease both;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: var(--section-padding);
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    background: var(--cream);
    border: 1px solid var(--champagne);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

/* Track-based 3-up carousel (contact page) */
.testimonial-track-wrap {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-track .testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: all;
}

@media (max-width: 1023px) {
    .testimonial-track .testimonial-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 639px) {
    .testimonial-track .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1.05rem;
    margin: 0 0.12rem;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--primary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.testimonial-dot {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--accent);
    width: 32px;
}

.testimonial-author h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(195,36,120,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195,36,120,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner .section-heading {
    color: var(--white);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-banner .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(195,36,120,0.4);
}

/* =============================================
   MISSION STRIP (About Page)
   ============================================= */
.mission-strip {
    padding: 5rem 0;
    background: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-strip::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.mission-strip .section-heading {
    color: var(--white);
}

.mission-strip blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.mission-strip cite {
    display: block;
    margin-top: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: 6rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: left;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--off-white);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195,36,120,0.1);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: color 0.25s ease, transform 0.25s ease;
}

.contact-card:hover .contact-icon i {
    color: var(--accent);
    transform: scale(1.15);
}

.contact-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Make tel: and mailto: links comfortably tappable */
.contact-card a[href^="tel:"],
.contact-card a[href^="mailto:"] {
    display: inline-block;
    padding: 0.5rem 0;
    min-height: 44px;
    line-height: 1.5;
}

.contact-card a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--text-medium);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    border-bottom: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-bottom: 2px solid var(--border);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: transparent;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--accent);
    box-shadow: 0 2px 8px rgba(201, 150, 58, 0.15);
    background: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-bottom-color: #e53e3e;
}
.field-error {
    display: block;
    color: #e53e3e;
    font-size: 0.78rem;
    margin-top: 0.3rem;
    font-family: var(--font-body);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #0F1A28;
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
    position: relative;
    border-top: 1px solid rgba(201,150,58,0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    padding: 2px;
    background: white;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 15px rgba(195,36,120,0.2);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,150,58,0.3);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-display);
    color: var(--white);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    text-align: center;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    padding: 0.3rem 0;
    transition: var(--transition);
    text-align: center;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    padding: 0.3rem 0;
    text-align: center;
}

.footer-contact i {
    color: var(--primary-light);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal animation delays — 8 levels at 0.07s each */
.reveal.stagger-1 { transition-delay: 0.07s; }
.reveal.stagger-2 { transition-delay: 0.14s; }
.reveal.stagger-3 { transition-delay: 0.21s; }
.reveal.stagger-4 { transition-delay: 0.28s; }
.reveal.stagger-5 { transition-delay: 0.35s; }
.reveal.stagger-6 { transition-delay: 0.42s; }
.reveal.stagger-7 { transition-delay: 0.49s; }
.reveal.stagger-8 { transition-delay: 0.56s; }

/* Image blur-in load effect */
img[loading="lazy"] {
    animation: imageLoad 0.8s ease-out forwards;
}

@keyframes imageLoad {
    from { opacity: 0; filter: blur(8px); }
    to { opacity: 1; filter: blur(0); }
}

/* =============================================
   DROPDOWN NAVIGATION
   ============================================= */
.has-dropdown {
    position: relative;
}

.has-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1001;
    border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */
.service-detail {
    padding: 5rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.service-detail-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.03);
}

/* Service Features */
.service-features {
    padding: 5rem 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--white);
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.7rem;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Showcase Gallery */
.service-showcase {
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.showcase-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: var(--off-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.showcase-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* =============================================
   SERVICE SHOWCASE CAROUSEL
   3-up slider with autoplay, arrows, dots, touch
   ============================================= */

/* Section header accent line */
.service-showcase .section-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 0.9rem auto 0;
    opacity: 0.45;
}

/* Carousel outer — padding leaves room for arrow buttons */
.showcase-carousel {
    position: relative;
    margin-top: 2.6rem;
    padding: 0 44px;
}

/* Scrollable wrapper — scroll-snap handles swipe on touch */
.carousel-track-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
    /* hide scrollbar everywhere */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel-track-wrapper::-webkit-scrollbar { display: none; }

/* Sliding track — no transition needed, scrollTo() handles animation */
.carousel-track {
    display: flex;
    gap: 12px;
}

/* Each slide — 3-up by default, CSS handles layout (no JS widths) */
.carousel-slide {
    flex: 0 0 calc(33.333% - 8px);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--off-white);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide:hover img {
    transform: scale(1.055);
}

/* Caption overlay */
.carousel-slide figcaption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(27, 15, 35, 0.76) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    pointer-events: none;
}

.carousel-slide:hover figcaption {
    opacity: 1;
}

/* Always-visible caption on touch devices */
@media (hover: none) {
    .carousel-slide figcaption {
        opacity: 1;
        background: linear-gradient(to bottom, transparent 50%, rgba(27, 15, 35, 0.62) 100%);
    }
}

/* Arrow buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 18px));
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
                box-shadow 0.22s ease, opacity 0.22s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-prev { left: 2px; }
.carousel-next { right: 2px; }

.carousel-prev:hover:not(:disabled),
.carousel-next:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(195, 36, 120, 0.28);
}

.carousel-prev:disabled,
.carousel-next:disabled {
    opacity: 0.28;
    cursor: default;
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 1.1rem;
    min-height: 16px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

/* Text counter fallback for large galleries */
.carousel-counter-text {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    font-family: 'Lato', sans-serif;
}

/* Service FAQ (compact version) */
.service-faq {
    padding: 5rem 0;
    background: var(--off-white);
}

.faq-items-compact {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* =============================================
   RESPONSIVE DESIGN
   Breakpoints:
   - 1200px: Large tablet / small desktop
   - 1024px: iPad Pro landscape / tablet landscape
   - 900px:  iPad Air / iPad portrait
   - 768px:  iPad Mini portrait / large phone landscape
   - 600px:  Small tablet / large phone
   - 480px:  iPhone 12/13/14/15 / standard phones
   - 375px:  iPhone SE / small phones
   ============================================= */

/* ---------- Large Tablet / Small Desktop (<=1200px) ---------- */
@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.65rem;
    }

    .cta-nav {
        padding: 0.5rem 1rem !important;
        font-size: 0.82rem !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

/* ---------- Tablet Landscape (<=1100px) ---------- */
@media (max-width: 1100px) {
    /* Switch to hamburger menu on tablets */
    .mobile-toggle {
        display: flex;
        grid-column: 2;
        justify-self: end;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
        align-items: center;
    }

    /* Lang button: only visible inside the slide-out drawer */
    .nav-lang-item {
        display: none;
    }

    .nav-menu.active .nav-lang-item {
        display: flex;
        margin-top: auto;
        margin-left: 0;
        width: 100%;
        border-top: 1px solid rgba(201,150,58,0.3);
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .nav-lang-item .lang-btn {
        width: 100%;
        border-radius: 0;
        border: none;
        border-top: none;
        background: transparent;
        color: var(--accent);
        font-size: 0.9rem;
        padding: 0.75rem 1.2rem;
        text-align: left;
        letter-spacing: 0.1em;
        justify-content: flex-start;
    }

    .nav-lang-item .lang-btn:hover {
        background: rgba(201,150,58,0.12);
        color: var(--accent);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.2rem;
        box-shadow: -8px 0 40px rgba(0,0,0,0.3);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        border-left: none;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent));
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        color: rgba(255,255,255,0.8);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        border-radius: 0;
        transition: background 0.2s ease, color 0.2s ease;
        letter-spacing: 0.3px;
    }

    .nav-link:hover,
    .nav-link:focus,
    .nav-link:active {
        background: rgba(255,255,255,0.06);
        color: var(--white);
        padding-left: 1.2rem;
    }

    .nav-link.active {
        color: var(--primary-light);
        background: rgba(195,36,120,0.12);
        font-weight: 700;
        border-left: 3px solid var(--primary-light);
        padding-left: calc(1.2rem - 3px);
    }

    .nav-link::after {
        display: none;
    }

    .cta-nav {
        text-align: center;
        margin-left: 0 !important;
        margin-top: 0.8rem;
        border-bottom: none !important;
        border-left: none !important;
        width: 100%;
        display: block !important;
        padding: 0.85rem 1rem !important;
    }

    .cta-nav:hover,
    .cta-nav:focus,
    .cta-nav:active {
        background: var(--primary-dark) !important;
        padding-left: 1rem !important;
    }

    /* Dropdown mobile styles */
    .has-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: transparent;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-menu li a {
        padding: 0.65rem 1rem 0.65rem 2.2rem;
        font-size: 0.92rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.65);
        position: relative;
    }

    .dropdown-menu li a::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        position: absolute;
        left: 1.2rem;
        color: var(--primary-light);
        opacity: 0.6;
    }

    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.06);
        color: var(--white);
        padding-left: 2.2rem;
    }

    .dropdown-menu li a:hover::before {
        opacity: 1;
    }

    /* Service subpage responsive */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-carousel {
        padding: 0 36px;
    }

    .hero {
        min-height: 90vh;
        padding: 5rem 1.5rem 4.5rem;
    }

    .hero-logo-img {
        width: 120px;
        height: 120px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 560px;
    }

    .hero-stats {
        gap: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .about {
        padding: 4.5rem 0;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-img-main img {
        max-height: 380px;
    }

    .services {
        padding: 4.5rem 0;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: none;
    }

    .process {
        padding: 4.5rem 0;
    }

    .faq-section {
        padding: 4.5rem 0;
    }

    .gallery {
        padding: 4.5rem 0;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials {
        padding: 4.5rem 0;
    }

    .cta-banner {
        padding: 4rem 0;
    }

    .contact {
        padding: 4.5rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* ---------- iPad Air / iPad Portrait (<=900px) ---------- */
@media (max-width: 900px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-main img {
        max-height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-card h3 {
        font-size: 0.78rem;
    }

    .contact-card p,
    .contact-card a {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .faq-question {
        padding: 1.1rem 1.25rem;
        font-size: 1rem;
    }
}

/* ---------- iPad Mini / Large Phone Landscape (<=768px) ---------- */
@media (max-width: 768px) {
    /* Carousel: 2-up on tablet */
    .carousel-slide { flex: 0 0 calc(50% - 6px); }

    /* Gallery carousel: 2 columns on tablet — reset varied spans */
    .gallery-carousel .carousel-track { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .gallery-carousel .carousel-slide:nth-child(7n + 1) { grid-column: span 1; aspect-ratio: 1 / 1; }

    .logo-img {
        height: 60px;
        width: 60px;
    }

    .logo-name {
        font-size: 1.3rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .footer-logo {
        width: 90px;
        height: 90px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 4rem 1.25rem 4.5rem;
    }

    .hero-logo-img {
        width: 100px;
        height: 100px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    .hero-stats {
        padding: 1.3rem 2rem;
    }

    .stat {
        padding: 0 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-plus {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-img {
        margin: -2rem -1.5rem 1.2rem;
        height: 160px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-hero { height: 45vh; min-height: auto; }
    .category-cards { grid-template-columns: repeat(4, 1fr); }
    .category-card { aspect-ratio: 1/1; }

    .gallery-item {
        aspect-ratio: unset;
        margin-bottom: 0.75rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonials-slider {
        min-height: 300px;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links a {
        padding: 0.35rem 0;
    }

    .faq-category-title {
        font-size: 1.4rem;
    }

    .process-step {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.1rem;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.82rem;
    }

    .cta-banner {
        padding: 3.5rem 0;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    width: 48px;
    height: 48px;

    .page-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Small Tablet / Large Phone (<=600px) ---------- */
@media (max-width: 600px) {
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 85%;
        max-width: 300px;
        padding: 4.5rem 1.5rem 2rem;
    }


    .hero {
        padding: 3.5rem 1rem 2.5rem;
    }

    .hero-logo-img {
        width: 90px;
        height: 90px;
        border-width: 2px;
    }

    .hero-logo-feature {
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.8rem;
    }

    .hero-buttons {
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .about {
        padding: 3.5rem 0;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-images {
        max-width: 100%;
    }

    .about-img-main img {
        max-height: 280px;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-feature {
        gap: 1rem;
    }

    .about-feature i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .about-feature h4 {
        font-size: 0.95rem;
    }

    .about-feature p {
        font-size: 0.85rem;
    }

    .services {
        padding: 3.5rem 0;
    }

    .service-card {
        padding: 1.8rem 1.3rem;
    }

    .service-img {
        margin: -1.8rem -1.3rem 1rem;
        height: 150px;
    }

    .service-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }

    .process {
        padding: 3.5rem 0;
    }

    .process-step {
        flex: 0 0 100%;
        padding: 1rem 0.5rem;
    }

    .process-steps {
        gap: 0;
    }

    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-contact-inner {
        padding: 2.5rem 1.5rem;
    }

    .gallery {
        padding: 3.5rem 0;
    }

    .gallery-filter {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.82rem;
    }

    .testimonials {
        padding: 3.5rem 0;
    }

    .testimonials-slider {
        min-height: 320px;
    }

    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .testimonial-author {
        gap: 0.6rem;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
    }

    .contact {
        padding: 3.5rem 0;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        padding: 1.5rem 1.2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-desc {
        font-size: 0.92rem;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-logo {
        width: 75px;
        height: 75px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.82rem;
    }

    .lightbox-img {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    /* Service subpages */
    .service-detail {
        padding: 3.5rem 0;
    }

    .service-detail-content h2 {
        font-size: 1.9rem;
    }

    .service-detail-image img {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .showcase-carousel {
        padding: 0 32px;
    }

    .service-features,
    .service-showcase,
    .service-faq {
        padding: 3.5rem 0;
    }
}

/* ---------- Standard Phone (<=480px) - iPhone 12/13/14/15 ---------- */
@media (max-width: 480px) {
    /* Carousel: 1-up on mobile, rely on native swipe — hide arrows */
    .carousel-slide { flex: 0 0 100%; }
    .showcase-carousel, .gallery-carousel { padding: 0; }
    .carousel-prev, .carousel-next { display: none; }

    /* Swipe hint for carousel when arrows are hidden */
    .carousel-track-wrapper::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 32px;
        background: linear-gradient(to right, transparent, rgba(0,0,0,0.06));
        pointer-events: none;
        z-index: 3;
        border-radius: 0 4px 4px 0;
    }

    /* Gallery grid: 2 columns on mobile — uniform squares */
    .gallery-carousel .carousel-track { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .gallery-carousel .carousel-slide:nth-child(7n + 1) { grid-column: span 1; aspect-ratio: 1 / 1; }

    .page-hero {
        padding: 7rem 1rem 2.5rem;
    }

    /* Pill strip layout for category filters on mobile */
    .category-cards-section { padding: 1rem 0 0.5rem; }
    .category-cards {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 6px 4px 10px;
        scrollbar-width: none;
    }
    .category-cards::-webkit-scrollbar { display: none; }
    .category-card {
        flex-shrink: 0;
        scroll-snap-align: start;
        aspect-ratio: unset;
        border-radius: 999px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 5px 14px 5px 5px;
        background: #fff;
        border: 2px solid rgba(27,45,69,0.12);
        overflow: visible;
    }
    .category-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(195,36,120,0.3);
    }
    .category-card:active {
        transform: scale(0.96);
    }
    .category-card.active {
        border-color: var(--primary);
        background: linear-gradient(135deg, rgba(195,36,120,0.06), rgba(201,150,58,0.06));
        box-shadow: 0 2px 10px rgba(195,36,120,0.15);
    }
    .category-card img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        flex-shrink: 0;
        filter: none;
    }
    .category-card:hover img {
        transform: none;
        filter: none;
    }
    .category-card-all img {
        filter: none;
    }
    .category-card-label {
        position: static;
        inset: unset;
        background: none;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .category-card-all .category-card-label {
        background: none;
    }
    .category-card-label span {
        color: var(--navy);
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .category-card.active .category-card-label span {
        color: var(--primary);
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .service-preview-card {
        aspect-ratio: 4 / 3;
    }

    /* Stronger, full-card overlay so titles are legible on busy backdrops */
    .spc-overlay {
        background: linear-gradient(
            to top,
            rgba(20, 8, 24, 0.85) 0%,
            rgba(20, 8, 24, 0.45) 55%,
            rgba(20, 8, 24, 0.25) 100%
        ) !important;
        justify-content: center !important;
        padding: 0.75rem !important;
    }

    .service-preview-card h3 {
        font-size: 1.25rem !important;
        line-height: 1.15;
        margin-bottom: 0 !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        word-break: keep-all;
        hyphens: none;
    }

    /* Hide the hover-only CTA on touch — saves vertical room and avoids confusion */
    .spc-cta { display: none; }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 50px;
        width: 50px;
    }

    .logo-name {
        font-size: 1.15rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .footer-logo {
        width: 80px;
        height: 80px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 3rem 0.8rem 2rem;
    }

    .hero-logo-img {
        width: 80px;
        height: 80px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding: 0.9rem 1rem;
        gap: 0;
        max-width: calc(100vw - 2rem);
    }

    .stat {
        padding: 0 0.75rem;
        flex: 1 1 auto;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-plus {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.58rem;
        letter-spacing: 0.6px;
        white-space: normal;
        line-height: 1.25;
    }

    .stat-divider {
        height: 34px;
    }

    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.65rem;
    }

    .about-img-main img {
        max-height: 240px;
    }

    .about-features {
        gap: 1.2rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-overlay span {
        font-size: 0.75rem;
    }

    .gallery-overlay i {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem 1rem 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-question::before {
        font-size: 1.15rem;
        min-width: 1.7rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 3.1rem;
        font-size: 0.9rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-card {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem 1rem;
        text-align: left;
        padding: 1rem;
        min-width: 0;
    }

    .contact-card h3,
    .contact-card p {
        min-width: 0;
        flex: 1 1 auto;
        word-break: break-word;
    }

    .contact-icon {
        margin: 0;
        min-width: 42px;
        width: 42px;
        height: 42px;
    }

    .contact-card h3 {
        font-size: 0.88rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem 0.85rem;
        font-size: 1rem; /* Prevent iOS zoom */
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .cta-banner {
        padding: 3rem 0;
    }

    .cta-content p {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }

    .testimonials-slider {
        min-height: 340px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
    }

    /* Service subpages */
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .showcase-carousel {
        padding: 0 30px;
    }
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }

    .service-detail-image img {
        height: 250px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    /* Footer: 2-col for links, contact spans full width */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}

/* ---------- Small Phone (<=375px) - iPhone SE, iPhone Mini ---------- */
@media (max-width: 375px) {
    .top-bar {
        padding: 0.3rem 0;
    }

    .lang-btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.7rem;
    }

    .top-bar-right a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .top-bar-right {
        gap: 0.4rem;
    }

    .nav-container {
        padding: 0.4rem 0.8rem;
    }

    .logo-img {
        height: 45px;
        width: 45px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        display: none;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .hero {
        padding: 2.5rem 0.6rem 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .stat-divider {
        height: 28px;
    }

    .about-img-main img {
        max-height: 200px;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-img {
        margin: -1.5rem -1rem 0.8rem;
        height: 140px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-icon-wrap {
        width: 55px;
        height: 55px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .faq-contact-inner {
        padding: 2rem 1rem;
    }

    .faq-contact-inner h3 {
        font-size: 1.4rem;
    }

    .testimonials-slider {
        min-height: 360px;
    }

    .testimonial-card {
        padding: 1.2rem 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .testimonial-author h4 {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
    }

    .contact-form {
        padding: 1.2rem 1rem;
    }

    .footer-logo {
        width: 65px;
        height: 65px;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding: 1rem 0;
    }
}

/* ---------- Landscape Phone Orientation ---------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .hero-logo-img {
        width: 60px;
        height: 60px;
    }

    .hero-logo-feature {
        margin-bottom: 0.8rem;
    }

    .hero-title {
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        margin-bottom: 1.2rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: row;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ---------- Touch Device Improvements ---------- */
@media (hover: none) and (pointer: coarse) {
    /* Show gallery overlays always on touch (no hover) */
    .gallery-overlay {
        opacity: 0;
        background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 60%);
    }

    .gallery-item .gallery-overlay {
        opacity: 1;
        justify-content: flex-end;
        padding-bottom: 0.8rem;
    }

    .gallery-overlay i {
        display: none;
    }

    /* Minimum touch target sizes (44px per Apple HIG) */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .filter-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .testimonial-btn {
        width: 44px;
        height: 44px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
    }

    /* Remove hover effects that look stuck on touch */
    .service-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .service-card:active {
        transform: scale(0.98);
    }

    /* Mobile nav link tap feedback */
    .nav-link:active {
        background: var(--cream) !important;
        color: var(--primary) !important;
    }
}

/* ---------- High Resolution / Retina Displays ---------- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ---------- Prefers Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-title-line {
        opacity: 1;
        transform: none;
    }

    .hero-subtitle,
    .hero-buttons,
    .hero-stats {
        opacity: 1;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Safe Area Insets (iPhone notch / dynamic island) ---------- */
@supports (padding: env(safe-area-inset-top)) {
    .top-bar {
        padding-top: max(0.55rem, env(safe-area-inset-top));
    }

    .footer-bottom {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: max(2rem, calc(env(safe-area-inset-bottom) + 0.5rem));
    }

    .lightbox-close {
        top: max(1.5rem, env(safe-area-inset-top));
    }
}

@media (max-width: 1100px) {
    @supports (padding: env(safe-area-inset-top)) {
        .nav-menu {
            padding-top: max(5rem, calc(env(safe-area-inset-top) + 4rem));
        }
    }
}


/* ---------- Required field indicator ---------- */
.required-asterisk {
    color: #e53e3e;
    margin-left: 3px;
    font-weight: 700;
}

/* ---------- Form success message ---------- */
.form-success[hidden] { display: none; }
.form-success {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 10px;
    color: #166534;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    outline: none;
    animation: formSuccessIn 0.4s ease-out;
}

@keyframes formSuccessIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.form-success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

/* ---------- Gallery item aspect ratio (prevents CLS) ---------- */
.gallery-item {
    aspect-ratio: 4 / 3;
}

/* =============================================
   ENCANTO V3 — HERO OVERRIDES (keep these)
   ============================================= */

/* Hero accent line → Great Vibes script */
.hero-title-accent {
    font-family: 'Great Vibes', cursive;
    color: var(--rose);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(3.8rem, 10vw, 8rem);
    animation-delay: 0.2s;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(250, 173, 216, 0.35), 0 1px 6px rgba(0,0,0,0.25);
    line-height: 1.1;
}

/* Hero main title line → Cormorant Infant */
.hero-title-line {
    font-family: 'Cormorant Infant', serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease forwards;
}

/* Hero stats → glass morphism pill */
.hero-stats {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* Responsive: collapses gracefully on phones, lush on desktop */
    gap: clamp(0.25rem, 3vw, 2.5rem);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.8s forwards;
    margin-bottom: 3.5rem;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: clamp(0.9rem, 2.5vw, 1.6rem) clamp(0.9rem, 5vw, 3rem);
    max-width: calc(100vw - 2rem);
}

.hero-stats .stat {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
    padding: 0 clamp(0.5rem, 2vw, 2.25rem);
}

.hero-stats .stat-label {
    display: block;
    white-space: normal;
    line-height: 1.25;
    font-size: clamp(0.58rem, 1.6vw, 0.75rem);
    letter-spacing: clamp(0.5px, 0.3vw, 1.5px);
    margin-top: 0.3rem;
}

.hero-stats .stat-divider {
    flex: 0 0 1px;
}

/* Stat numbers → italic Cormorant Infant */
.stat-number {
    font-family: 'Cormorant Infant', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FAADD8;
    line-height: 1;
    font-style: italic;
}

.stat-plus {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.5rem;
    color: #FAADD8;
    font-style: italic;
}

/* =============================================
   ENCANTO V3 — EVENT MARQUEE STRIP
   ============================================= */
.event-marquee {
    background: #151E2E;
    border-top: 1px solid rgba(201, 150, 58, 0.2);
    border-bottom: 1px solid rgba(201, 150, 58, 0.2);
    overflow: hidden;
    padding: 0.85rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marquee-track .marquee-dot {
    color: #C9963A;
    font-size: 0.5rem;
    font-style: normal;
    opacity: 0.7;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* =============================================
   ENCANTO V3 — PROCESS SECTION (new)
   ============================================= */
.process {
    padding: 7rem 0;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,150,58,0.3), transparent);
}

.process::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,150,58,0.3), transparent);
}

.process .section-label { color: var(--primary-light); }
.process .section-heading { color: var(--white); }
.process .heading-ornament { color: var(--accent); }

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(195,36,120,0.1);
    border-color: rgba(195,36,120,0.25);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195,36,120,0.15);
    border-radius: 50%;
    border: 1px solid rgba(195,36,120,0.3);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.process-step:hover .step-icon i { color: var(--white); }

.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.process-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 4rem;
    color: rgba(201,150,58,0.4);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* =============================================
   ENCANTO V3 - DESIGN SYSTEM OVERRIDES
   Standard components, spacing, and patterns
   that all pages must use consistently.
   ============================================= */

/* --- Animation standard --- */
* { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* --- Skip link (accessibility) --- */

/* --- Card standard --- */
.why-us-card,
.feature-card,
.contact-card {
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.why-us-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-light);
}

/* --- Service card image lock --- */
.service-img {
    height: 220px !important;
    overflow: hidden;
    margin: -2.5rem -2rem 1.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(0.9);
}
.service-card:hover .service-img img {
    transform: scale(1.03);
    filter: saturate(1.1);
}

/* --- Button system --- */
.btn {
    border-radius: 4px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    transition: all 0.25s;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(195,36,120,0.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}

/* --- CTA Banner â€” dark navy --- */
.cta-banner {
    padding: 6rem 0;
    background: var(--secondary);
    background-image: none;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(195,36,120,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(201,150,58,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.cta-banner::after { display: none; }
.cta-banner .btn-primary {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
}
.cta-banner .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 10px 32px rgba(195,36,120,0.35);
}

/* --- Testimonial redesign â€” clean quote cards --- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 2.5rem 3rem;
}
.testimonial-card::before {
    font-size: 6rem;
    opacity: 0.08;
    top: 0;
    left: 1.5rem;
}
.author-avatar { display: none; }
.testimonial-author {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}
.testimonial-author h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-style: normal;
}
.testimonial-author > span {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Services preview card â€” cleaner overlay --- */
.spc-overlay {
    background: linear-gradient(
        to top,
        rgba(80, 15, 45, 0.88) 0%,
        rgba(27, 45, 69, 0.25) 55%,
        transparent 100%
    );
}
.service-preview-card:hover .spc-overlay {
    background: linear-gradient(
        to top,
        rgba(158, 29, 98, 0.82) 0%,
        rgba(158, 29, 98, 0.35) 55%,
        transparent 100%
    );
}
.spc-icon { display: none; }
.service-preview-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

/* --- Process section mobile --- */
@media (max-width: 767px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .process-connector {
        transform: rotate(90deg);
        padding: 0;
    }
    .process-step {
        max-width: 100%;
        width: 100%;
    }
}

/* --- Gallery category filter — mobile horizontal scroll --- */
@media (max-width: 767px) {
    .category-cards {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        gap: 0.6rem;
        padding: 0.25rem 1rem 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    .category-cards::-webkit-scrollbar { display: none; }
    /* Let pill width follow content so labels never get clipped */
    .category-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-height: 44px; /* iOS touch target */
    }
    .category-card-label span {
        white-space: nowrap;
    }
}

/* --- Gallery request-style hover overlay --- */
.gallery-request-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(195,36,120,0.88), transparent);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.2rem 0.8rem 0.8rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
    text-decoration: none;
    display: block;
}
.carousel-slide:hover .gallery-request-cta { opacity: 1; }
@media (hover: none) {
    .gallery-request-cta { display: none; }
}

/* --- About page â€” hide image accent on mobile --- */
@media (max-width: 767px) {
    .about-img-accent,
    .about-experience-badge {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        max-width: 100%;
    }
}

/* --- Section padding standardization --- */
.services-preview { padding: 5rem 0; }
.testimonials { padding: 5rem 0; }
.services { padding: 5rem 0; }
.about { padding: 5rem 0; }
.contact { padding: 5rem 0; }
.faq-section { padding: 5rem 0; }

@media (max-width: 767px) {
    .services-preview,
    .testimonials,
    .services,
    .about,
    .contact,
    .faq-section { padding: 3rem 0; }
}

/* --- Form note above submit --- */
.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.75rem;
    font-style: italic;
}

/* --- FAQ duplicate CTA hide (handled by HTML removal) --- */
/* Retained for safety in case HTML not updated */
.faq-contact-cta { display: none; }

/* --- Touch target minimum --- */
.testimonial-btn,
.gallery-page-btn,
.carousel-prev,
.carousel-next,
.mobile-toggle {
    min-width: 44px;
    min-height: 44px;
}
} /* close stray @media block */



/* ==========================================================================
   FAQ PAGE ENHANCEMENTS — Search, Sticky Toolbar, Category Pills, Scrollspy
   On-brand for Encanto: navy toolbar (continuous with page-hero), pink active
   pill (matches .btn-primary), gold accents, rose highlight. Solid headings,
   no gradients. Uses Cormorant Garamond + Lato.
   ========================================================================== */

/* Hero stats chips (sit under the H1/description on the navy hero) */
.faq-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.75rem;
}
.faq-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: 'Lato', sans-serif;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.faq-stat-chip strong {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.95rem;
}
.faq-stat-chip i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Sticky toolbar: extends the navy hero visually */
.faq-toolbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, var(--secondary) 0%, #16253b 100%);
    border-bottom: 1px solid rgba(201,150,58,0.35);
    padding: 1rem 0 0.75rem;
    box-shadow: 0 6px 20px rgba(27,45,69,0.25);
}
.faq-toolbar .container {
    max-width: 1100px;
}

.faq-search-wrap {
    position: relative;
    max-width: 620px;
    margin: 0 auto 0.75rem;
}
.faq-search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 0.95rem;
    pointer-events: none;
}
.faq-search-input {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 3rem;
    border: 1.5px solid rgba(201,150,58,0.32);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    outline: none;
}
.faq-search-input::placeholder { color: rgba(255,255,255,0.55); font-weight: 400; }
.faq-search-input:focus {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 0 0 4px rgba(195,36,120,0.22);
}
.faq-search-clear {
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(201,150,58,0.2);
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}
.faq-search-clear:hover { background: var(--accent); color: #fff; }

/* Category pills (horizontal, scrollable on mobile) */
.faq-cat-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.3rem 0.25rem 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.faq-cat-nav::-webkit-scrollbar { display: none; }
.faq-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-cat-pill i { font-size: 0.7rem; opacity: 0.85; }
.faq-cat-pill:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(201,150,58,0.55);
    color: #fff;
}
.faq-cat-pill.is-active {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--accent) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(195,36,120,0.35);
}
.faq-cat-pill.is-active i { opacity: 1; color: #fff; }

/* Scroll offset so anchored categories clear sticky toolbar */
.faq-category { scroll-margin-top: 180px; }

/* Search-match highlight — soft rose tint to stay elegant */
mark.faq-hit {
    background: rgba(195,36,120,0.18);
    color: inherit;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: 700;
}

/* No-results empty state */
.faq-no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--white);
    border: 2px dashed rgba(201,150,58,0.35);
    border-radius: var(--radius-lg);
    margin: 0 0 2rem;
    box-shadow: var(--shadow-sm);
}
.faq-no-results-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(201,150,58,0.14);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.faq-no-results h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 0.4rem;
}
.faq-no-results p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}
.faq-inline-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.faq-inline-link:hover { color: var(--primary-dark); }

/* FAQ page uses cream body (matches site light theme) */
.faq-page-hero + .faq-toolbar + .faq-section { background: var(--cream); }

@media (max-width: 768px) {
    .faq-toolbar { padding: 0.75rem 0 0.5rem; }
    .faq-search-input { padding: 0.75rem 2.75rem; font-size: 0.9rem; }
    .faq-search-icon { left: 0.9rem; font-size: 0.85rem; }
    .faq-cat-nav {
        justify-content: flex-start;
        padding: 0.25rem 0.5rem 0.6rem;
    }
    .faq-cat-pill { padding: 0.45rem 0.85rem; font-size: 0.78rem; }
    .faq-hero-stats { gap: 0.4rem; margin-top: 1.25rem; }
    .faq-stat-chip { padding: 0.45rem 0.9rem; font-size: 0.78rem; }
    .faq-stat-chip strong { font-size: 0.85rem; }
    .faq-category { scroll-margin-top: 150px; }
}
