@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════
   ROOT VARIABLES
══════════════════════════════════════ */

:root {
    /* ── Colors ── */
    --color-accent:          #ffcf23;
    --color-accent-dark:     #fcc706;
    --color-gold-light:      #ffe97a;
    --color-gold-deep:       #c89b00;
    --color-silver-mid:      #d0d0d0;
    --color-silver-dark:     #7a7a7a;
    --color-dark:            #111111;
    --color-dark-2:          #333333;
    --color-dark-3:          #555555;
    --color-white:           #ffffff;

    /* ── Fonts ── */
    --font-primary:  'Plus Jakarta Sans', sans-serif;
    --font-display:  'Plus Jakarta Sans', sans-serif;

    /* ── Font Sizes — Badges & Labels ── */
    --fs-micro:      9px;     /* exp-label, ticker star, decorative */
    --fs-tiny:       10px;    /* stat-label, card-tag, footer-contact-label */
    --fs-badge:      11px;    /* hero-badge, section-badge, cta-badge, testi-label, faq-label */
    --fs-label:      11.5px;  /* section-tag, why-card-label, footer-logo-sub */

    /* ── Font Sizes — UI / Interactive ── */
    --fs-btn:        12px;    /* btn-primary, btn-ghost, btn-view-more, between-cta-btn */
    --fs-nav:        13px;    /* nav-links, tab-btn, footer-links, body-sm */
    --fs-tag:        10px;    /* card-tag on service images */

    /* ── Font Sizes — Body / Content ── */
    --fs-caption:    12.5px;  /* service-features li, faq-answer (mobile), why-checklist li */
    --fs-body-sm:    13px;    /* footer-about, footer-links, between-cta-desc, faq-cta-text */
    --fs-body:       14px;    /* hw-main-desc, why-panel-text, faq-answer p, tc-text */
    --fs-body-md:    15px;    /* hero-subtitle, about-desc, section-subtitle, hw-panel-desc */

    /* ── Font Sizes — Component Titles ── */
    --fs-card-title: 16px;    /* service-title */
    --fs-comp-title: 20px;    /* why-panel-title, hw-panel-title base */

    /* ── Font Sizes — Section Headings (fluid) ── */
    --fs-heading-sm:  clamp(26px, 3vw, 40px);   /* faq-title, testi-title */
    --fs-heading-md:  clamp(28px, 3vw, 44px);   /* about-title, why-card-title */
    --fs-heading-lg:  clamp(30px, 3.5vw, 48px); /* section-title (services) */
    --fs-heading-xl:  clamp(32px, 3.8vw, 54px); /* hero-title, hw-main-title */
    --fs-heading-cta: clamp(32px, 4.5vw, 56px); /* cta-title */

    /* ── Font Sizes — Display / Numbers ── */
    --fs-stat-hero:   22px;   /* hero stat-number */
    --fs-stat-big:    36px;   /* hw-stat-num, cta-stat-number */
    --fs-exp-num:     20px;   /* about experience badge */
    --fs-panel-num:   68px;   /* hw-panel-num large watermark */
    --fs-index-wm:    46px;   /* service-index watermark */
    --fs-tbs-num:     clamp(46px, 6vw, 76px); /* testimonials big stat */

    /* ── Font Sizes — Footer ── */
    --fs-footer-logo: 16px;   /* footer-logo-name */
    --fs-footer-body: 13px;   /* footer-about, footer-links */
    --fs-footer-copy: 12px;   /* footer copyright */

    /* ── Font Sizes — Floating CTA ── */
    --fs-float-title: clamp(17px, 2vw, 24px); /* between-cta-title */

    /* ── Spacing ── */
    --nav-height:         100px;
    --section-padding:    80px 56px;
    --border-radius-sm:   6px;
    --border-radius-md:   12px;
    --border-radius-lg:   16px;
    --border-radius-pill: 50px;

    /* ── Shadows ── */
    --shadow-gold-sm:  0 4px 18px rgba(255, 207, 35, 0.35);
    --shadow-gold-md:  0 8px 32px rgba(255, 207, 35, 0.50);
    --shadow-gold-lg:  0 8px 36px rgba(255, 207, 35, 0.60);
    --shadow-dark-sm:  0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-dark-md:  0 12px 40px rgba(0, 0, 0, 0.12);
}


/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

.faq-question span {
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: var(--nav-height);
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
}

.nav-logo img {
    height: 125px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    flex: 1;
    justify-content: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: var(--fs-nav);
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-dark-3);
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent-dark);
}

/* Contact Button */
.nav-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-contact {
    text-decoration: none;
    font-size: var(--fs-btn);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 11px 26px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.35);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent));
    box-shadow: 0 8px 32px rgba(255, 207, 35, 0.50);
    transform: translateY(-2px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 20px 24px 28px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

.mobile-menu ul li a {
    display: block;
    text-decoration: none;
    font-size: var(--fs-nav);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark-3);
    padding: 12px 8px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--color-accent-dark);
    background: rgba(255, 207, 35, 0.07);
}

.mobile-contact-btn {
    display: block;
    margin-top: 8px;
    text-align: center;
    font-size: var(--fs-btn) !important;
    font-weight: 700 !important;
    letter-spacing: 0.09em !important;
    color: var(--color-dark) !important;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)) !important;
    padding: 13px !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.35);
}

/* ── Responsive ── */
@media (max-width: 1080px) {
    nav {
        padding: 0 28px;
    }

    .nav-links {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 11.5px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        height: 80px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta .btn-contact {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 80px;
    }
}

@media (max-width: 400px) {
    .nav{
        height: 80px;
    }
    .nav-logo img {
        height: 80px;
    }
}

/* ══════════════════════════════════════
   PAGE BANNER — SHARED (all pages)
══════════════════════════════════════ */

.page-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: var(--nav-height, 72px);
}

/* Background Image */
.pb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pb-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark overlay */
.pb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.50) 0%,
        rgba(8, 8, 8, 0.70) 60%,
        rgba(8, 8, 8, 0.88) 100%
    );
}

/* Gold grid texture */
.pb-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Content */
.pb-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 36px 64px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Breadcrumb */
.pb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pb-bread-link {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.pb-bread-link:hover {
    color: #fcc706;
}

.pb-bread-sep {
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
}

.pb-bread-current {
    font-size: 12px;
    font-weight: 700;
    color: #fcc706;
    letter-spacing: 0.04em;
}

/* Title */
.pb-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.pb-title-gold {
    background: linear-gradient(90deg, #ffcf23, #e6a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.pb-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
    max-width: 480px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .pb-content { padding: 32px 36px 32px; }
}

@media (max-width: 768px) {
    .page-banner { min-height: 240px; }
    .pb-content { padding: 28px 24px 28px; gap: 10px; }
    .pb-title { font-size: clamp(26px, 7vw, 38px); }
    .pb-subtitle { font-size: 13.5px; }
}

@media (max-width: 540px) {
    .page-banner { min-height: 220px; }
    .pb-content { padding: 24px 16px 24px; }
    .pb-title { font-size: clamp(24px, 8vw, 32px); }
    .pb-subtitle { font-size: 13px; max-width: 100%; }
}

@media (max-width: 400px) {
    .page-banner { min-height: 200px; }
    .pb-content { padding: 20px 14px 20px; }
    .pb-title { font-size: clamp(22px, 8vw, 28px); }
}


/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */

.ct-section {
    background: var(--color-white);
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
}

.ct-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ── Two Column Wrap ── */
.ct-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

/* ══════════════════════════════════════
   LEFT — CONTACT DETAILS
══════════════════════════════════════ */

.ct-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ct-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ct-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.ct-label-text {
    font-size: var(--fs-badge);           /* 11px — matches .section-badge, .faq-label-text */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.ct-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md);      /* clamp(28px, 3vw, 44px) — matches .faq-title, .about-title */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.ct-title-gold {
    background: linear-gradient(90deg, var(--color-accent-dark), #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-desc {
    font-size: var(--fs-body-md);         /* 15px — matches .ih-subtitle, .wci-desc, .ip-desc */
    color: var(--color-dark-3);
    line-height: 1.80;
    margin: 0;
}

/* ── Contact Items ── */
.ct-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-item-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: var(--shadow-gold-sm);
    flex-shrink: 0;
}

.ct-item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ct-item-label {
    font-size: var(--fs-badge);           /* 11px — matches .faq-label-text, .wci-label-text */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.ct-item-value {
    font-size: var(--fs-body);            /* 14px — matches .faq-a p, .why-panel-text */
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s ease;
}

a.ct-item-value:hover {
    color: var(--color-accent-dark);
}

/* ── Social Links ── */
.ct-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ct-social-label {
    font-size: var(--fs-btn);             /* 12px — matches small uppercase labels site-wide */
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-dark-3);
}

.ct-social-links {
    display: flex;
    gap: 10px;
}

.ct-social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(0, 0, 0, 0.10);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-dark-sm);
}

.ct-social-btn:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-color: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-sm);
}

/* ══════════════════════════════════════
   RIGHT — FORM CARD
══════════════════════════════════════ */

.ct-right {
    position: relative;
}

.ct-form-card {
    background: #f8f7f4;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 44px;
    box-shadow: var(--shadow-dark-sm);
}

.ct-form-header {
    margin-bottom: 32px;
}

.ct-form-title {
    font-family: var(--font-display);
    font-size: var(--fs-comp-title);      /* 20px — matches .wci-card-title, .ib-cta-card-label */
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 6px;
}

.ct-form-subtitle {
    font-size: var(--fs-body-sm);         /* 13px — matches .footer-about, .between-cta-desc */
    color: var(--color-dark-3);
    margin: 0;
}

/* ── Form Layout ── */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ct-form-group--full {
    grid-column: 1 / -1;
}

/* Label */
.ct-form-label {
    font-size: var(--fs-btn);             /* 12px — matches form labels, .wci-stat-sub */
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.04em;
}

.ct-form-label span {
    color: #e53935;
}

/* Input / Select / Textarea */
.ct-form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-white);
    border: 1.5px solid rgba(0, 0, 0, 0.10);
    border-radius: var(--border-radius-sm);
    font-size: var(--fs-body);            /* 14px — body text in inputs */
    font-family: var(--font-primary);
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
    appearance: none;
}

.ct-form-input::placeholder {
    color: rgba(0, 0, 0, 0.30);
    font-size: var(--fs-body);            /* 14px — matches input font */
}

.ct-form-input:focus {
    border-color: var(--color-accent-dark);
    box-shadow: 0 0 0 3px rgba(255, 207, 35, 0.18);
}

/* Select arrow */
.ct-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Textarea */
.ct-form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Submit Button */
.ct-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-dark);
    font-size: var(--fs-btn);             /* 12px — matches .btn-primary, .wci-cta-btn */
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-gold-sm);
    transition: all 0.28s ease;
    margin-top: 6px;
}

.ct-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-md);
}

/* ══════════════════════════════════════
   MAP SECTION
══════════════════════════════════════ */

.ct-map-section {
    background: var(--color-white);
    padding: 80px 64px 0;
    position: relative;
}

.ct-map-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ct-map-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md);      /* clamp(28px, 3vw, 44px) — matches .ct-title, .faq-title */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.ct-map-desc {
    font-size: var(--fs-body-md);         /* 15px — matches .ct-desc, .ih-subtitle */
    color: var(--color-dark-3);
    line-height: 1.70;
    margin: 0 0 0 auto;
    max-width: 380px;
    text-align: right;
}

/* Map Container */
.ct-map-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 500px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.08);
}

.ct-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(15%);
}

/* Map Overlay Card */
.ct-map-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-dark-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 280px;
    z-index: 10;
}

.ct-map-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold-sm);
}

.ct-map-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ct-map-card-body strong {
    font-family: var(--font-display);
    font-size: var(--fs-body);            /* 14px — matches .faq-img-card-title, .ih-float-title */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

.ct-map-card-body span {
    font-size: var(--fs-caption);         /* 12.5px — matches .service-features li, .ib-cta-trust-item */
    color: var(--color-dark-3);
    line-height: 1.5;
}

.ct-map-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    font-size: var(--fs-btn);             /* 12px — matches .faq-img-card-link, action links */
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.ct-map-card-link:hover {
    gap: 8px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .ct-section     { padding: 80px 36px; }
    .ct-map-section { padding: 72px 36px 0; }
    .ct-wrap        { gap: 52px; }
}

@media (max-width: 860px) {
    .ct-section     { padding: 80px 24px; }
    .ct-map-section { padding: 64px 24px 0; }
    .ct-wrap        { grid-template-columns: 1fr; gap: 52px; }
    .ct-map-header  { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ct-map-desc    { margin: 0; text-align: left; max-width: 100%; }
    .ct-map-wrap    { height: 420px; }
    .ct-form-card   { padding: 32px 28px; }
    .ct-title       { font-size: var(--fs-heading-sm); }   /* clamp(26px, 3vw, 40px) */
    .ct-map-title   { font-size: var(--fs-heading-sm); }
}

@media (max-width: 560px) {
    .ct-section     { padding: 64px 16px; }
    .ct-map-section { padding: 52px 0 0; }
    .ct-map-header  { padding: 0 16px; }
    .ct-form-row    { grid-template-columns: 1fr; }
    .ct-form-card   { padding: 24px 20px; border-radius: var(--border-radius-lg); }
    .ct-map-wrap    { height: 360px; border-radius: 0; }
    .ct-map-card    { left: 16px; bottom: 16px; max-width: calc(100% - 32px); }
    .ct-desc        { font-size: var(--fs-body); }         /* 14px */
    .ct-form-title  { font-size: 18px; }
    .ct-form-subtitle { font-size: var(--fs-btn); }        /* 12px */
    .ct-item-value  { font-size: var(--fs-body-sm); }      /* 13px */
    .ct-map-desc    { font-size: var(--fs-body); }         /* 14px */
}
/* =====================================
   FLOATING CTA
===================================== */

.between-cta {
    position: relative;
    z-index: 4;
    margin-top: 40px;
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.between-cta-inner {
    pointer-events: auto;
    max-width: 1200px;
    width: calc(100% - 64px);
    background: linear-gradient(135deg, #ffcf23, #ffb321);
    border-radius: 20px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.between-cta-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.between-cta-label {
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7b5300;
}

.between-cta-title {
    font-family: var(--font-display);
    font-size: var(--fs-float-title); /* clamp(17px, 2vw, 24px) — was clamp(20px, 2.3vw, 28px) */
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
}

.between-cta-highlight {
    background: linear-gradient(90deg, #c87c00, #8b4c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.between-cta-desc {
    font-size: var(--fs-body-sm);   /* 13px — was 13.5px */
    color: #5d4200;
    line-height: 1.7;
    margin: 4px 0 0;
    max-width: 520px;
}

.between-cta-right {
    flex-shrink: 0;
}

.between-cta-btn {
    text-decoration: none;
    font-size: 11.5px;              /* was 12px */
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111111;
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.between-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30);
}

/* =====================================
   FOOTER
===================================== */

.footer {
    background: #0b0d10;
    color: #f5f5f5;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── Main Footer ── */
.footer-main {
    position: relative;
    z-index: 1;
    padding: 48px 64px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* ── Brand Column ── */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;                /* was 18px */
    font-weight: 700;
    color: #111111;
    box-shadow: 0 6px 16px rgba(255, 207, 35, 0.45);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: var(--fs-footer-logo); /* 16px — was 17px */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 11px;                /* was 11.5px */
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.3;
}

.footer-about {
    font-size: var(--fs-footer-body); /* 13px — was 13px ✓ */
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.75;
    margin: 0;
}

/* ── Social Buttons ── */
.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: #ffcf23;
    border-color: #ffcf23;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 207, 35, 0.40);
}

/* ── Generic Column ── */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-heading {
    font-size: 10.5px;              /* was 11px */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Footer Links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    text-decoration: none;
    font-size: var(--fs-footer-body); /* 13px — was 13.5px */
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.footer-links a::before {
    content: '›';
    font-size: 14px;                /* was 15px */
    color: var(--color-accent-dark);
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffcf23;
    gap: 8px;
}

.footer-links a:hover::before {
    transform: translateX(2px);
}

/* ── Contact Column ── */
.footer-col-contact {
    gap: 14px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 207, 35, 0.12);
    border: 1px solid rgba(255, 207, 35, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcf23;
    flex-shrink: 0;
}

.footer-contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: var(--fs-tiny);      /* 10px — was 10.5px */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
}

.footer-contact-body a {
    font-size: var(--fs-footer-body); /* 13px — was 13.5px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-body a:hover {
    color: #ffcf23;
}

.footer-contact-body span:not(.footer-contact-label) {
    font-size: var(--fs-footer-body); /* 13px — was 13.5px */
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ── Bottom Bar ── */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 64px 20px;
    margin-top: 8px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    font-size: var(--fs-footer-copy); /* 12px — was 14px */
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    line-height: 1.6;
}

.footer-powered {
    color: #ffcf23;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-powered:hover {
    color: #ffe27a;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1080px) {
    .between-cta-inner {
        width: calc(100% - 48px);
        padding: 24px 26px;
    }
    .footer-main {
        padding: 40px 36px 32px;
    }
    .footer-bottom {
        padding: 14px 36px 18px;
    }
    .footer-inner {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .between-cta {
        margin-top: 32px;
        margin-bottom: -32px;
    }
    .between-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px;
    }
    .between-cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    .footer {
        padding-top: 56px;
    }
    .footer-main {
        padding: 28px 24px 28px;
    }
    .footer-bottom {
        padding: 14px 24px 18px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .between-cta-inner {
        width: calc(100% - 32px);
        padding: 20px 18px;
    }
    .between-cta-title {
        font-size: clamp(15px, 6vw, 20px); /* was clamp(18px, 6vw, 24px) */
    }
    .between-cta-desc {
        font-size: var(--fs-caption);  /* 12.5px — was 13px */
    }
    .footer {
        padding-top: 52px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-main {
        padding: 24px 16px 24px;
    }
    .footer-bottom {
        padding: 12px 16px 16px;
    }
    .footer-copy {
        font-size: 11px;            /* was 11.5px */
    }
}




/* ══════════════════════════════════════
   SCROLL TO TOP BUTTON
══════════════════════════════════════ */

.stt-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: 0 6px 24px rgba(255, 207, 35, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.30s ease,
                visibility 0.30s ease,
                transform 0.30s ease,
                box-shadow 0.25s ease;
}

.stt-btn.stt-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.stt-btn:hover {
    box-shadow: 0 10px 32px rgba(255, 207, 35, 0.60);
    transform: translateY(-3px);
}

@media (max-width: 560px) {
    .stt-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}


/* ══ WHATSAPP FLOAT ══ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}