/* =============================================
   DK LETTINGS — SITE STYLESHEET
   Brand: Navy Blue (#163087) + Gold (#f5a800)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    /* ── Brand Colours (from logo) ── */
    --navy-deep:    #0d1f4e;
    --navy:         #163087;
    --navy-mid:     #1e3fa0;
    --navy-pale:    #e8edf8;
    --navy-ghost:   #f2f5fb;

    --gold:         #f5a800;
    --gold-light:   #ffc73a;
    --gold-dark:    #c88600;
    --gold-pale:    #fff4d6;
    --gold-glow:    rgba(245, 168, 0, 0.18);

    --white:        #ffffff;
    --cloud:        #dce4f0;
    --smoke:        #5a6a8a;
    --text:         #1e2d4a;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --section-pad:    clamp(80px, 10vw, 130px);
    --container-max:  1300px;
    --transition:     0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-sm:      4px;
    --radius-md:      8px;
    --shadow-sm:      0 2px 12px rgba(13, 31, 78, 0.08);
    --shadow-md:      0 8px 32px rgba(13, 31, 78, 0.14);
    --shadow-lg:      0 20px 60px rgba(13, 31, 78, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--navy);
}

/* ── Utilities ── */
.container-site {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.25rem;
}
.section-body {
    font-size: 1rem;
    color: var(--smoke);
    max-width: 54ch;
    line-height: 1.85;
}
.gold-rule {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.25rem 0;
}

/* ── Buttons ── */
.btn-primary-site {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--navy); color: var(--white);
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-decoration: none;
    padding: 0.95rem 2rem; border: 2px solid var(--navy);
    border-radius: var(--radius-sm); cursor: pointer;
    transition: all var(--transition);
}
.btn-primary-site:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold-site {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold); color: var(--navy-deep);
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.06em; text-decoration: none;
    padding: 0.95rem 2rem; border: 2px solid var(--gold);
    border-radius: var(--radius-sm); cursor: pointer;
    transition: all var(--transition);
}
.btn-gold-site:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245, 168, 0, 0.35); color: var(--navy-deep); }

.btn-outline-site {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: transparent; color: var(--white);
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-decoration: none;
    padding: 0.95rem 2rem; border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-sm); cursor: pointer;
    transition: all var(--transition);
}
.btn-outline-site:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94); will-change: opacity, transform; }
.reveal.from-left   { transform: translateX(-65px); }
.reveal.from-right  { transform: translateX(65px); }
.reveal.from-bottom { transform: translateY(45px); }
.reveal.visible     { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══ NAVBAR ══ */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0.5rem 0; transition: all var(--transition); }
.site-nav.scrolled { background: rgba(13, 31, 78, 0.97); backdrop-filter: blur(14px); padding: 0.4rem 0; box-shadow: 0 2px 30px rgba(13, 31, 78, 0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 160px; width: auto; display: block; mix-blend-mode: lighten; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.82); text-decoration: none; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); border-radius: 1px; transition: width var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.78rem !important; font-weight: 700 !important; color: var(--navy-deep) !important; background: var(--gold); padding: 0.6rem 1.4rem; border-radius: var(--radius-sm); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,31,78,0.98); flex-direction: column; padding: 2rem; gap: 1.4rem; border-top: 1px solid rgba(245,168,0,0.2); }
    .nav-links.open { display: flex; }
}

/* ══ HERO ══ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--navy-deep); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(125deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%); }
.hero-glow { position: absolute; top: -150px; right: 20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,168,0,0.12) 0%, transparent 65%); pointer-events: none; }
.hero-photo-panel { position: absolute; top: 0; right: 0; width: 50%; height: 100%; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); }
.hero-photo-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; transform: scale(1.06); animation: hero-zoom 14s ease-out forwards; }
.hero-photo-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--navy-deep) 0%, transparent 45%); }
.hero-geo-1 { position: absolute; top: -60px; right: 34%; width: 300px; height: 300px; border: 1px solid rgba(245,168,0,0.12); border-radius: 50%; pointer-events: none; }
.hero-geo-2 { position: absolute; bottom: -80px; left: 18%; width: 200px; height: 200px; border: 1px solid rgba(245,168,0,0.08); border-radius: 50%; pointer-events: none; }
.hero-dots { position: absolute; top: 28%; right: 47%; width: 130px; height: 130px; background-image: radial-gradient(circle, rgba(245,168,0,0.25) 1.5px, transparent 1.5px); background-size: 16px 16px; pointer-events: none; }
@keyframes hero-zoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }

.hero-content { position: relative; z-index: 2; padding: 140px 0 80px; max-width: 680px; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(245,168,0,0.15); border: 1px solid rgba(245,168,0,0.35); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.75rem; opacity: 0; animation: fade-up 1s ease 0.3s forwards; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); opacity: 0; animation: fade-up 1s ease 0.5s forwards; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { margin-top: 1.5rem; color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.8; opacity: 0; animation: fade-up 1s ease 0.7s forwards; }
.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fade-up 1s ease 0.9s forwards; }
.hero-trust { display: flex; align-items: center; gap: 2rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0; animation: fade-up 1s ease 1.1s forwards; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(245,168,0,0.15); border: 1px solid rgba(245,168,0,0.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check svg { width: 11px; height: 11px; color: var(--gold); }
.trust-item span { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; animation: bounce 2.5s ease-in-out infinite; z-index: 2; }
@keyframes fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ══ ABOUT ══ */
.about-section { padding: var(--section-pad) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-md); display: block; }
.about-image-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 55%; aspect-ratio: 1; border: 2px solid var(--navy-pale); border-radius: var(--radius-md); z-index: -1; }
.about-badge { position: absolute; top: 2rem; left: -2rem; background: var(--navy); border-radius: var(--radius-md); padding: 1.5rem 1.75rem; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .badge-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge .badge-text { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }

/* ══ HOW IT WORKS ══ */
.how-section { padding: var(--section-pad) 0; background: var(--navy-ghost); }
.how-header { text-align: center; margin-bottom: 4.5rem; }
.how-header .section-body { margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 31px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(to right, var(--gold), var(--navy)); z-index: 0; }
.step-item { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; border: 3px solid var(--white); box-shadow: 0 0 0 4px var(--gold); position: relative; z-index: 1; }
.step-item h3 { font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.step-item p { font-size: 0.88rem; color: var(--smoke); line-height: 1.75; }

/* ══ SERVICES ══ */
.services-section { padding: var(--section-pad) 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-body { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--navy-ghost); border: 1px solid var(--cloud); border-radius: var(--radius-md); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--gold), var(--gold-dark)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-pale); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background var(--transition); }
.service-card:hover .service-icon-wrap { background: var(--gold); }
.service-icon-wrap svg { width: 24px; height: 24px; color: var(--white); }
.service-card:hover .service-icon-wrap svg { color: var(--navy-deep); }
.service-card h3 { font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--smoke); line-height: 1.8; }

/* ══ GUARANTEE ══ */
.guarantee-section { padding: var(--section-pad) 0; background: var(--navy); position: relative; overflow: hidden; }
.guarantee-section::before { content: ''; position: absolute; top: -120px; right: -80px; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(245,168,0,0.12) 0%, transparent 65%); pointer-events: none; }
.guarantee-section::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(245,168,0,0.07) 0%, transparent 65%); pointer-events: none; }
.guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.guarantee-content .section-label { color: var(--gold-light); }
.guarantee-content .section-title { color: var(--white); }
.guarantee-content .section-body { color: rgba(255,255,255,0.65); }
.guarantee-content .gold-rule { background: var(--gold); }
.guarantee-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.guarantee-list li { display: flex; align-items: flex-start; gap: 0.875rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.g-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(245,168,0,0.18); border: 1px solid rgba(245,168,0,0.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.g-check svg { width: 11px; height: 11px; color: var(--gold); }
.guarantee-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 3rem; backdrop-filter: blur(8px); }
.guarantee-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.g-feature { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: center; }
.g-feature:last-child { border-bottom: none; padding-bottom: 0; }
.g-feature-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(245,168,0,0.15); border: 1px solid rgba(245,168,0,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-feature-icon svg { width: 20px; height: 20px; color: var(--gold); }
.g-feature-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
.g-feature-text span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ══ WHY ══ */
.why-section { padding: var(--section-pad) 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.why-feature { background: var(--navy-ghost); border: 1px solid var(--cloud); border-radius: var(--radius-md); padding: 1.5rem; transition: border-color var(--transition), box-shadow var(--transition); }
.why-feature:hover { border-color: rgba(245,168,0,0.4); box-shadow: 0 4px 20px rgba(245,168,0,0.1); }
.why-feature-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-feature-icon svg { width: 18px; height: 18px; color: var(--gold); }
.why-feature h4 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.why-feature p { font-size: 0.82rem; color: var(--smoke); line-height: 1.7; }
.why-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-image-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); display: block; }
.why-image-grid img:nth-child(2) { margin-top: 2.5rem; }

/* ══ TESTIMONIALS ══ */
.testimonials-section { padding: var(--section-pad) 0; background: var(--navy-ghost); }
.testimonials-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.testimonials-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--cloud); border-radius: var(--radius-md); padding: 2rem 2.25rem; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card.featured { background: var(--navy); border-color: var(--navy-mid); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--gold-pale); display: block; margin-bottom: 1rem; }
.testimonial-card.featured .quote-mark { color: rgba(245,168,0,0.25); }
.testimonial-card p { font-size: 0.95rem; line-height: 1.75; color: var(--text); font-style: italic; }
.testimonial-card.featured p { color: rgba(255,255,255,0.85); }
.testimonial-author { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--cloud); display: flex; gap: 1rem; align-items: center; }
.testimonial-card.featured .testimonial-author { border-color: rgba(255,255,255,0.1); }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); flex-shrink: 0; border: 2px solid var(--gold-pale); }
.testimonial-card.featured .author-avatar { background: rgba(245,168,0,0.15); color: var(--gold); border-color: rgba(245,168,0,0.35); }
.author-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testimonial-card.featured .author-name { color: var(--white); }
.author-role { font-size: 0.75rem; color: var(--smoke); }
.testimonial-card.featured .author-role { color: rgba(255,255,255,0.5); }

/* ══ FAQ ══ */
.faq-section { padding: var(--section-pad) 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cloud); }
.faq-question { width: 100%; background: none; border: none; padding: 1.4rem 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.faq-question:hover { color: var(--gold-dark); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { font-size: 0.9rem; color: var(--smoke); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.45s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 0 1.5rem; }

/* ══ CONTACT ══ */
.contact-section { padding: var(--section-pad) 0; background: var(--navy-ghost); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-detail { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item-body strong { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item-body span { font-size: 0.9rem; color: var(--smoke); line-height: 1.6; }
.contact-item-body a { font-size: 0.9rem; color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-item-body a:hover { color: var(--gold-dark); text-decoration: underline; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--cloud); border-top: 3px solid var(--gold); border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--cloud); border-radius: var(--radius-sm); background: var(--white); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); outline: none; transition: border-color var(--transition), box-shadow var(--transition); -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══ CTA BANNER ══ */
.cta-banner { padding: 6rem 0; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(245,168,0,0.12) 1.5px, transparent 1.5px); background-size: 28px 28px; pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.cta-banner .section-label { color: var(--gold-light); display: flex; justify-content: center; }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 50ch; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══ FOOTER ══ */
.footer-gold-rule { height: 3px; background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.55); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-logo { height: 160px; width: auto; margin-bottom: 1rem; mix-blend-mode: lighten; filter: drop-shadow(0 2px 8px rgba(245,168,0,0.2)); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 34ch; }
.footer-col h5 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
    .hero-photo-panel { display: none; }
    .about-grid, .guarantee-grid, .why-grid, .faq-grid, .contact-grid, .testimonials-inner { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid, .steps-grid { grid-template-columns: 1fr; }
    .why-features, .why-image-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-badge { left: 0.5rem; }
}
