/* ============================================
   RadyannaSuvar — Immersive Dark Luxury
   Palette: Deep Midnight #0D1117 + Warm Gold #D4A853 + Ivory #F8F4EF
   Fonts: DM Serif Display + Inter
   Layout: Full-bleed, overlapping, asymmetric
   ============================================ */

:root {
    --midnight: #0D1117;
    --midnight-soft: #161B22;
    --midnight-lighter: #21262D;
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --gold-dark: #B08A3A;
    --ivory: #F8F4EF;
    --ivory-dim: #EDE8E1;
    --smoke: #9CA3AF;
    --white: #FFFFFF;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--midnight);
    color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* === TOPBAR === */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(10px);
}
.topbar.scrolled {
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
    white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { opacity: 1; color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
    font-size: 0.82rem;
    opacity: 0.7;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
}
.nav-phone:hover { opacity: 1; color: var(--gold); }

.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px;
    background: var(--gold);
    color: var(--midnight);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px;
    background: transparent;
    color: var(--ivory);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    border-radius: 50px;
    border: 1.5px solid rgba(248, 244, 239, 0.3);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 14px 32px; font-size: 0.92rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none; border: none; padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--ivory);
    transition: all 0.3s var(--ease);
    display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO — FULL VIEWPORT IMMERSIVE === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.55) 50%, rgba(13,17,23,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 140px 24px 80px;
    width: 100%;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero p {
    font-size: 1rem;
    color: var(--smoke);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    display: block;
}
.hero-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--smoke);
    margin-top: 4px;
    display: block;
}

/* === SECTION SPACING === */
.section { padding: 80px 0; }
.section-dark { background: var(--midnight); }
.section-darker { background: var(--midnight-soft); }
.section-light { background: var(--ivory); color: var(--midnight); }

/* === SECTION HEADERS === */
.sec-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.sec-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
}
.sec-desc {
    font-size: 1rem;
    color: var(--smoke);
    max-width: 560px;
    line-height: 1.8;
}
.section-light .sec-desc { color: #555; }

/* === SERVICES — HORIZONTAL PANELS === */
.service-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}
.service-panel:nth-child(even) .service-visual { order: -1; }

.service-visual {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.service-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.service-panel:hover .service-visual img { transform: scale(1.03); }

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}
.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(212, 168, 83, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}
.service-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--white);
}
.service-info p {
    color: var(--smoke);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.service-tags span {
    padding: 5px 14px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}

/* === GALLERY — MASONRY STYLE === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 6px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 0.9rem; margin-bottom: 4px; }
.gallery-overlay span { font-size: 0.75rem; color: var(--gold); }

/* === PROCESS — VERTICAL TIMELINE === */
.timeline {
    position: relative;
    padding-left: 56px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 18px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(212,168,83,0.1));
}
.timeline-step {
    position: relative;
    padding: 0 0 48px 0;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -48px; top: 4px;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--midnight);
    display: flex; align-items: center; justify-content: center;
}
.timeline-dot::after {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}
.timeline-step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}
.timeline-step p {
    color: var(--smoke);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 500px;
}

/* === TESTIMONIALS — HORIZONTAL SCROLL === */
.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 0 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 320px;
    max-width: 340px;
    scroll-snap-align: start;
    background: var(--midnight-lighter);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    padding: 28px;
    flex-shrink: 0;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    font-size: 0.88rem;
    color: var(--ivory);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--midnight);
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.85rem; }
.testimonial-role { font-size: 0.75rem; color: var(--smoke); }

/* === STATS BAR === */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}
.stat-item {
    text-align: center;
    padding: 40px 16px;
    border-right: 1px solid rgba(212, 168, 83, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--smoke);
}

/* === WHY US — ICON ROWS === */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 60px;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(212, 168, 83, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}
.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}
.feature-text p {
    font-size: 0.85rem;
    color: var(--smoke);
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--midnight-soft) 0%, var(--midnight) 100%);
    border-top: 1px solid rgba(212, 168, 83, 0.1);
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 14px;
    color: var(--white);
}
.cta-section p {
    color: var(--smoke);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
    background: var(--midnight-soft);
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.08);
}
.footer-brand p {
    color: var(--smoke);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 12px;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(248, 244, 239, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    font-size: 0.82rem;
    color: var(--smoke);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: var(--smoke);
    align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; min-width: 14px; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--smoke); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.75rem; color: var(--smoke); }
.footer-bottom-links a:hover { color: var(--gold); }

/* === WHATSAPP FLOAT === */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
}
.wa-float a {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}
.wa-float a:hover { transform: scale(1.1); }

/* === BACK TO TOP === */
.btt {
    position: fixed;
    bottom: 24px; right: 88px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--midnight-lighter);
    border: 1px solid rgba(212, 168, 83, 0.2);
    color: var(--gold);
    display: none; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    z-index: 998;
    transition: all 0.3s;
}
.btt.visible { display: flex; }
.btt:hover { background: var(--gold); color: var(--midnight); }

/* === COOKIE BAR === */
.cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--midnight-soft);
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    padding: 14px 0;
    z-index: 9999;
    display: none;
}
.cookie-bar.show { display: block; }
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.8rem; color: var(--smoke); }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-btns button {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}
.cookie-btns .c-accept { background: var(--gold); color: var(--midnight); }
.cookie-btns .c-decline { background: transparent; border: 1px solid rgba(248,244,239,0.2); color: var(--ivory); }

/* === PAGE HERO (inner pages) === */
.page-hero {
    padding: 140px 0 60px;
    background: var(--midnight-soft);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}
.page-hero .breadcrumb {
    font-size: 0.75rem;
    color: var(--smoke);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 1rem;
    color: var(--smoke);
    max-width: 560px;
    line-height: 1.8;
}

/* === POLICY PAGES === */
.policy-content {
    max-width: 740px;
    margin: 0 auto;
}
.policy-meta {
    padding: 14px 20px;
    background: var(--midnight-lighter);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--smoke);
    margin-bottom: 36px;
    border: 1px solid rgba(212, 168, 83, 0.1);
}
.policy-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 36px 0 12px;
    color: var(--white);
}
.policy-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--ivory);
}
.policy-content p {
    color: var(--smoke);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.9rem;
}
.policy-content ul {
    margin: 10px 0 18px 20px;
    list-style: disc;
}
.policy-content li {
    color: var(--smoke);
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 0.88rem;
}
.policy-content a { color: var(--gold); text-decoration: underline; }

/* === CONTACT FORM === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--white);
}
.contact-info > p {
    color: var(--smoke);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 0.92rem;
}
.contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-detail i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.95rem;
    min-width: 18px;
}
.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 3px;
    color: var(--ivory);
}
.contact-detail span,
.contact-detail a {
    font-size: 0.85rem;
    color: var(--smoke);
}
.contact-detail a:hover { color: var(--gold); }

.form-card {
    background: var(--midnight-lighter);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    padding: 32px;
}
.form-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--smoke);
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--midnight);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 8px;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { cursor: pointer; }

/* === SERVICE AREAS — TAG CLOUD === */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.area-tag {
    padding: 8px 18px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--ivory);
    transition: all 0.3s;
}
.area-tag:hover {
    background: var(--gold);
    color: var(--midnight);
    border-color: var(--gold);
}

/* === MAP === */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.1);
    margin-top: 40px;
}
.map-wrap iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(0.8) brightness(0.7);
}

/* === ABOUT — SPLIT === */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.about-img img { width: 100%; height: auto; }
.about-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--gold);
    color: var(--midnight);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
}
.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 16px;
    color: var(--white);
}
.about-text p {
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

/* === FAQ === */
.faq-list { max-width: 680px; }
.faq-item {
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}
.faq-q {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--ivory);
    transition: color 0.3s;
    gap: 12px;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); font-size: 0.75rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-a p {
    padding: 0 0 18px;
    color: var(--smoke);
    font-size: 0.88rem;
    line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ===================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   =================================================== */
@media (max-width: 1024px) {
    .service-panel { 
        grid-template-columns: 1fr; 
        min-height: auto; 
    }
    .service-visual { 
        height: 300px; 
        min-height: 300px;
    }
    .service-info { padding: 36px 24px; }
    .service-panel:nth-child(even) .service-visual { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 32px; }
    .contact-layout { grid-template-columns: 1fr; gap: 36px; }
    .features-list { gap: 28px 40px; }
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 200px; 
    }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .nav-menu { gap: 20px; }
    .nav-menu a { font-size: 0.72rem; }
}

/* ===================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   =================================================== */
@media (max-width: 768px) {
    .topbar { padding: 14px 0; }
    .topbar-inner { padding: 0 16px; }
    .logo { font-size: 1.3rem; }
    .nav-menu {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(13, 17, 23, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 999;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { font-size: 1.1rem; opacity: 1; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }

    .hero { min-height: 100vh; }
    .hero-content { padding: 120px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.92rem; }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 1.6rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-gold,
    .hero-btns .btn-outline { width: 100%; justify-content: center; }

    .section { padding: 60px 0; }
    .container { padding: 0 16px; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 28px 12px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.65rem; }

    .features-list { grid-template-columns: 1fr; gap: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .testimonial-card { min-width: 280px; max-width: 300px; padding: 24px; }
    .testimonial-card blockquote { font-size: 0.82rem; }

    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }

    .gallery-grid { 
        grid-template-columns: 1fr 1fr; 
        grid-auto-rows: 180px; 
    }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }

    .timeline { padding-left: 44px; }
    .timeline-dot { left: -38px; width: 18px; height: 18px; }
    .timeline-dot::after { width: 6px; height: 6px; }
    .timeline-step h3 { font-size: 1.1rem; }
    .timeline-step p { font-size: 0.85rem; }

    .page-hero { padding: 110px 0 48px; }
    .page-hero h1 { font-size: 1.8rem; }

    .cta-section { padding: 60px 0; }
    .cta-section h2 { font-size: 1.6rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-gold,
    .cta-btns .btn-outline { width: 100%; justify-content: center; }

    .service-info { padding: 28px 20px; }
    .service-info h2 { font-size: 1.5rem; }
    .service-number { font-size: 2.2rem; }
    .service-visual { height: 250px; min-height: 250px; }

    .about-split { gap: 24px; }
    .about-text h2 { font-size: 1.5rem; }

    .contact-info h3 { font-size: 1.4rem; }

    .wa-float { bottom: 20px; right: 16px; }
    .wa-float a { width: 48px; height: 48px; font-size: 1.2rem; }
    .btt { bottom: 20px; right: 72px; width: 36px; height: 36px; }

    .cookie-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cookie-inner p { font-size: 0.75rem; }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   =================================================== */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .hero-content { padding: 110px 16px 48px; }
    .hero-stats { gap: 16px; }
    .hero-stat-number { font-size: 1.4rem; }
    .hero-stat-label { font-size: 0.65rem; }

    .sec-title { font-size: 1.5rem; }
    .section { padding: 48px 0; }

    .stat-number { font-size: 1.5rem; }
    .stat-item { padding: 20px 8px; }

    .service-info { padding: 24px 16px; }
    .service-info h2 { font-size: 1.3rem; }
    .service-info p { font-size: 0.85rem; }
    .service-tags span { font-size: 0.68rem; padding: 4px 10px; }

    .gallery-grid { 
        grid-template-columns: 1fr; 
        grid-auto-rows: 200px; 
    }

    .testimonial-card { min-width: 260px; max-width: 280px; padding: 20px; }

    .footer { padding: 40px 0 0; }
    .footer-grid { gap: 20px; }

    .page-hero { padding: 100px 0 36px; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.88rem; }

    .form-card { padding: 20px 16px; }
    .form-card h3 { font-size: 1.1rem; }

    .area-tag { padding: 6px 14px; font-size: 0.72rem; }

    .cta-section { padding: 48px 0; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section p { font-size: 0.88rem; }
}

/* === ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
