:root {
    --bg-dark: #0A1A2F;
    --bg-card: #162035;
    --mist: #E0E5E9;
    --mist-light: #EEF1F4;
    --mist-dark: #B0B8C0;
    --gold: #D4AF37;
    --accent-purple: #7B2D8E;
    --accent-violet: #9B4DCA;
    --accent-green: #2E8B57;
    --accent: #C84B31;
    --accent-dark: #A63A1F;
    --accent-glow: rgba(200, 75, 49, 0.35);
    --text-light: var(--mist-light);
    --text-muted: var(--mist-dark);
    --glass-bg: rgba(224, 229, 233, 0.04);
    --glass-bg-hover: rgba(224, 229, 233, 0.08);
    --glass-border: rgba(224, 229, 233, 0.10);
    --glass-border-focus: rgba(224, 229, 233, 0.35);
    --glass-shadow: 0 15px 35px rgba(10, 26, 47, 0.5);
    --mist-glow: 0 8px 32px rgba(224, 229, 233, 0.12);
    --gold-glow: 0 8px 32px rgba(224, 229, 233, 0.25);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease-out;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-y: scroll; }

body {
    background: linear-gradient(135deg, #3A0CA3 0%, #050505 100%);
    background-attachment: fixed;
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* ===== Loader ===== */
.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #0A1A2F 0%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #D4AF37;
    border-right-color: #D4AF37;
    animation: loaderSpin 1s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.05);
}

.loader-ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(212, 175, 55, 0.3);
    border-left-color: rgba(212, 175, 55, 0.3);
    animation: loaderSpin 0.8s linear infinite reverse;
}

.loader-logo {
    width: 64px;
    height: auto;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.loader-gold {
    color: #D4AF37;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #3A0CA3, #D4AF37);
    background-size: 200% 100%;
    animation: loaderBarShimmer 1.5s ease-in-out infinite;
    border-radius: 2px;
    transition: width 0.3s ease;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes loaderBarShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Gallery Scroll Hint ===== */
.gallery-scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(10, 26, 47, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

.gallery-scroll-hint.visible {
    opacity: 1;
    visibility: visible;
}

.gallery-scroll-hint i {
    animation: hintBounce 1.5s ease-in-out infinite;
    font-size: 0.75rem;
}

@keyframes hintBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(4px); opacity: 1; }
}

#gallery {
    position: relative;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

p { color: var(--text-muted); }

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.flex-center { display: flex; justify-content: center; align-items: center; }
.align-center { align-items: center; }

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

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
}

@media (max-width: 480px) {
    .section-padding { padding: 40px 0; }
    .section-title { font-size: 1.8rem; }
    .lead { font-size: 1rem; }
    .container { padding: 0 16px; }
}

.section-header { margin-bottom: 60px; }

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mist);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.1rem; }
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 30px; }
}

.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content .hero-subtitle {
    animation: heroStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-content .hero-title {
    animation: heroStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-content .hero-description {
    animation: heroStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-content .hero-cta {
    animation: heroStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--mist), var(--accent-violet));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--mist);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(224, 229, 233, 0.3);
}

.btn-primary:hover {
    background-color: var(--mist-light);
    box-shadow: var(--mist-glow);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    color: #ffffff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--mist);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--mist);
    color: var(--mist);
}

.btn-block { display: block; width: 100%; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 11, 25, 0.7);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(7, 11, 25, 0.92);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container { padding: 12px 24px; }

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(224, 229, 233, 0.5));
    transform: scale(1.05);
}

.logo-text { display: flex; gap: 6px; }
.logo-gold { color: var(--gold); }

.navbar {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-quick);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--mist);
    transition: var(--transition-quick);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--mist); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.instagram-glass-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(224, 229, 233, 0.05);
    border: 1px solid rgba(224, 229, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;

}

.instagram-glass-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-menu-toggle { display: block; }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 11, 25, 0.98);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .navbar.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}

.floating-circles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(224, 229, 233, 0.08);
    animation: floatCircle 15s ease-in-out infinite;
    will-change: transform;
}

.c1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.c2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: -50px;
    animation-delay: -5s;
    border-color: rgba(155, 77, 202, 0.08);
}

.c3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 60%;
    animation-delay: -10s;
    border-color: rgba(46, 139, 87, 0.08);
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 2px; }
    .hero-description { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero { min-height: 90vh; }
    .hero-cta .btn { padding: 12px 24px; font-size: 0.85rem; }
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; gap: 15px; }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 1.5rem;
    color: var(--mist);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

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

.feature-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--mist);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-item h4 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.glass-photo-frame {
    position: relative;
    border-radius: 16px;
    padding: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.about-img {
    border-radius: 12px;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-img { height: 300px; }
}

.glass-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(15, 22, 42, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--glass-shadow), var(--mist-glow);
    text-align: center;
    max-width: 180px;
    animation: floating 4s ease-in-out infinite;
}

.glass-badge h3 {
    font-size: 2.2rem;
    color: var(--mist);
}

.glass-badge p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.2;
    margin-top: 4px;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.menu-tabs {
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 12px;
}

.tab-btn {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--mist);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--mist);
    color: var(--bg-dark);
    border-color: var(--mist);
    box-shadow: var(--mist-glow);
}

.menu-content-wrapper {
    position: relative;
    min-height: 480px;
}

.menu-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.menu-pane-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

@media (max-width: 768px) {
    .menu-pane-image img { height: 280px; }
    .menu-pane-details h3 { font-size: 1.6rem; }
    .dish-desc { max-width: 100%; }
}

@media (max-width: 480px) {
    .menu-pane-image img { height: 200px; }
    .tab-btn { padding: 10px 18px; font-size: 0.85rem; }
    .dish-name { font-size: 1rem; }
}

.rounded-img { border-radius: 16px; }

.menu-pane-details h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.menu-pane-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.dish-list { list-style: none; }

.dish-list li {
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.dish-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
}

.dish-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mist);
    opacity: 0.6;
    margin-right: 12px;
    min-width: 20px;
}

.dish-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 16px;
    position: relative;
    top: -4px;
}

.dish-tag, .dish-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(224, 229, 233, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(224, 229, 233, 0.05);
}

.dish-desc { display: none; }
.dish-list li:hover { transform: translateX(6px); }
.dish-list li:hover .dish-dots { border-bottom-color: var(--mist); }

.dish-list li:hover .dish-name { color: var(--mist); }

.services {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.4) 50%, var(--bg-dark) 100%);
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card.card-spotlight {
    background: var(--glass-bg);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(224, 229, 233, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow), var(--mist-glow);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(224, 229, 233, 0.1);
    border: 1px solid rgba(224, 229, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mist);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--mist);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(224, 229, 233, 0.3);
}

.service-card:hover h3 {
    color: var(--mist);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.3) 100%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-connector {
        transform: rotate(90deg);
    }
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    flex: 1;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
    border-color: var(--mist);
    transform: translateY(-5px);
    box-shadow: var(--mist-glow);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(224, 229, 233, 0.15);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(224, 229, 233, 0.1);
    border: 1px solid rgba(224, 229, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--mist);
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.process-step:hover .step-icon {
    background-color: var(--mist);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(224, 229, 233, 0.4);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--mist);
    font-size: 1.5rem;
    opacity: 0.5;
}

.estimator {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.5) 100%);
}

.quote-highlights {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.q-highlight {
    border-left: 2px solid var(--mist);
    padding-left: 20px;
}

.qh-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #ffffff;
    display: block;
    line-height: 1.1;
}

.qh-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.estimator-form-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.calculator-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
    padding: 24px;
}

.calculator-header h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mist);
}

.calculator-body { padding: 30px; }
.calc-group { margin-bottom: 24px; }

.calc-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-control:focus {
    outline: none;
    border-color: var(--mist);
    box-shadow: 0 0 10px rgba(224, 229, 233, 0.15);
}

select.form-control option {
    background: var(--bg-dark);
    color: #ffffff;
}

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

.calc-val-badge {
    background: rgba(224, 229, 233, 0.1);
    border: 1px solid rgba(224, 229, 233, 0.3);
    color: var(--mist);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    outline: none;
    margin: 15px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--mist);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(224,229,233,0.5);
    transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--mist);
    cursor: pointer;
    border: none;
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.calc-radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 480px) {
    .calc-radio-group { grid-template-columns: 1fr; }
}

.radio-card {
    position: relative;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 12px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition-quick);
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-card.active {
    border-color: var(--mist);
    background: rgba(224, 229, 233, 0.05);
    box-shadow: 0 0 10px rgba(224, 229, 233, 0.1);
}

.radio-content strong { display: block; font-size: 0.85rem; color: #ffffff; }
.radio-content small { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.price-tag { font-size: 0.9rem !important; font-weight: 600 !important; color: var(--mist) !important; letter-spacing: 0.5px; }
.price-tag.highlight { color: var(--gold) !important; font-size: 1rem !important; }
.price-unit { font-weight: 400; opacity: 0.7; font-size: 0.75rem; }
.card-glow-highlight { border-color: rgba(212, 175, 55, 0.3) !important; background: rgba(212, 175, 55, 0.06) !important; }

.cost-summary-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cost-row.total-row {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 1.15rem;
}

.highlight-gold {
    color: var(--mist);
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.glass-insta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
}

.insta-logo-glow {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(220, 39, 67, 0)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(220, 39, 67, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(220, 39, 67, 0)); }
}

.glass-insta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.glass-insta-card p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.insta-stats { gap: 50px; margin-bottom: 40px; flex-wrap: wrap; }

@media (max-width: 576px) {
    .insta-stats { gap: 20px; }
    .separator-line { display: none; }
}

.insta-stats h3 {
    font-size: 2rem;
    color: var(--mist);
    line-height: 1.1;
}

.insta-stats p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.separator-line {
    width: 1px;
    height: 40px;
    background-color: var(--glass-border);
}

.btn-instagram-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-instagram-glass:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
}

.glass-insta-card-static {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 60px 40px;
    transition: var(--transition-smooth);
}

.glass-insta-card-static:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scroll-float {
    overflow: hidden;
}

.scroll-float-text {
    display: inline-block;
    font-size: clamp(1.6rem, 8vw, 10rem);
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
}

.char {
    display: inline-block;
}

.scroll-reveal {
    margin: 20px 0;
}

.scroll-reveal-text {
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.5;
    font-weight: 600;
}

.scroll-reveal .word {
    display: inline-block;
    white-space: nowrap;
}

.split-parent {
    overflow: hidden;
    will-change: transform, opacity;
}

.split-char {
    display: inline-block;
}

.posters-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.posters-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
    color: #000;
}

#btn-lock-quote {
    background: linear-gradient(135deg, #1e3a8a, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.4) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

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

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 10px; }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .gallery-item-wide { grid-column: span 1; }
}

@media (max-width: 576px) {
    .gallery-item-wide { grid-column: span 1; }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 26, 47, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.stars {
    color: var(--mist);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .testimonial-text { font-size: 1.1rem; }
}

.client-info h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
}

.client-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-dots { gap: 8px; margin-top: 30px; }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-quick);
}

.dot:hover { background-color: var(--mist-light); }

.dot.active {
    background-color: var(--mist);
    width: 24px;
    border-radius: 5px;
}

.faq-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.3) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(224, 229, 233, 0.2);
}

.faq-item.active {
    border-color: var(--mist);
    box-shadow: 0 0 20px rgba(224, 229, 233, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(224, 229, 233, 0.08);
    border: 1px solid rgba(224, 229, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mist);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--mist);
    color: var(--bg-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 22, 42, 0.6) 100%);
}

.contact-details { margin-top: 40px; }

.details-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.det-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(224, 229, 233, 0.05);
    border: 1px solid rgba(224, 229, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--mist);
    flex-shrink: 0;
}

.details-item h5 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
}

.details-item p {
    font-size: 0.95rem;
    margin-top: 2px;
}

.glass-map-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.glass-map-card i {
    font-size: 1.6rem;
    color: var(--mist);
}

.glass-map-card h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
}

.glass-map-card p { font-size: 0.85rem; }

.form-wrapper-glass {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.form-wrapper-glass h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-row { gap: 20px; }

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.checkbox-group input {
    accent-color: var(--mist);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkbox-group label span {
    color: var(--mist);
    font-weight: 600;
}

.inquiry-form {
    transition: opacity 0.4s ease;
}

.inquiry-form.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 10px;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    background-color: #060410;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.footer-slogan {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--mist);
    margin-bottom: 30px;
}

.footer-links { margin-bottom: 30px; }

.footer-links a {
    margin: 0 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.footer-links a:hover { color: var(--mist); }

.social-links { gap: 15px; margin-bottom: 40px; }

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.social-icon:hover {
    border-color: var(--mist);
    color: var(--mist);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.15);
}

.credit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.1);
    margin-top: 6px;
}

.credit a {
    color: rgba(255,255,255,0.2);
    transition: color 0.3s ease;
}

.credit a:hover {
    color: var(--mist);
}

/* ===== Bottom Banner ===== */
.banner-section {
    padding: 30px 0;
}

.bottom-banner {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mist);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(224, 229, 233, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--mist-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--mist-glow);
}

.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }

.reveal-left.active, .reveal-right.active, .reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* ===== Card White Glow (IntersectionObserver) ===== */
.card-glow {
    position: relative;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    border-color: rgba(255, 255, 255, 0.06);
}

.card-glow.visible {
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.08);
}

.card-glow:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

::selection {
    background: var(--mist);
    color: var(--bg-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(224, 229, 233, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(224, 229, 233, 0.5);
}

@media (max-width: 992px) {
    .logo-img { height: 34px; }
    .logo-text { font-size: 1.2rem; }
    .service-card { padding: 30px 24px; }
    .service-card h3 { font-size: 1.2rem; }
    .process-step { padding: 30px 20px; }
    .step-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .process-step h3 { font-size: 1.1rem; }
    .glass-insta-card { padding: 40px 24px; }
    .glass-insta-card h2 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .form-wrapper-glass { padding: 24px; }
    .form-wrapper-glass h3 { font-size: 1.3rem; }
    .contact-details { margin-top: 24px; }
    .details-item { gap: 14px; margin-bottom: 20px; }
    .det-icon { width: 42px; height: 42px; font-size: 1rem; }
    .glass-map-card { padding: 16px 20px; }
    .faq-question h3 { font-size: 0.95rem; }
    .faq-question { padding: 16px 18px; }
    .testimonial-card { padding: 24px; }
    .testimonial-text { font-size: 1.05rem; }
    .footer-logo-img { height: 50px; }
    .footer-logo { font-size: 1.4rem; }
    .footer { padding: 40px 0 24px; }
    .footer-links a { margin: 0 10px; font-size: 0.85rem; }
    .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .logo-img { height: 28px; }
    .section-header { margin-bottom: 36px; }
    .section-tag { font-size: 0.75rem; letter-spacing: 2px; }
    .menu-tabs { gap: 8px; }
    .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
    .calculator-body { padding: 20px; }
    .calculator-header h3 { font-size: 1.1rem; }
    .insta-stats h3 { font-size: 1.5rem; }
    .glass-insta-card { padding: 30px 16px; }
    .glass-insta-card h2 { font-size: 1.4rem; }
    .btn-instagram-glass { padding: 12px 24px; font-size: 0.9rem; }
    .faq-question h3 { font-size: 0.9rem; }
    .faq-icon { width: 28px; height: 28px; font-size: 0.8rem; }
    .nav-link { font-size: 0.9rem; }
    .instagram-glass-btn { width: 36px; height: 36px; font-size: 1rem; }
    .quote-highlights { flex-direction: column; gap: 16px; }
    .q-highlight { padding-left: 14px; }
    .social-links { gap: 12px; }
    .social-icon { width: 36px; height: 36px; }
}