
/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --black: #0a0f1a;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --accent: #d4a843;
    --accent-dark: #b8922e;
    --accent-light: #e8d5a0;
    --star: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.04);
    --shadow-xl: 0 12px 36px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.06);
    --shadow-glow: 0 0 40px rgba(212,168,67,0.12);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.08), 0 20px 56px rgba(0,0,0,0.06);
    --accent-gradient: linear-gradient(135deg, #d4a843 0%, #e8c56c 50%, #d4a843 100%);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.12;
    color: var(--gray-900);
    letter-spacing: -0.03em;
}

/* ============================================
   UTILITY
   ============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--gray { background: var(--gray-50); }
.section--black { background: var(--gray-900); color: var(--white); }
.section--black h2, .section--black h3, .section--black p { color: var(--white); }
.text-center { text-align: center; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-tag {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 14px;
    background: rgba(212,168,67,0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212,168,67,0.15);
}
.section--black .section-tag { background: rgba(212,168,67,0.12); border-color: rgba(212,168,67,0.2); }
.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 18px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 620px;
    line-height: 1.75;
    font-weight: 400;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
}
.btn--primary {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
    box-shadow: 0 2px 8px rgba(15,23,42,0.12);
}
.btn--primary:hover { background: var(--gray-800); border-color: var(--gray-800); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(15,23,42,0.2); }
.btn--outline {
    background: transparent;
    color: var(--gray-900);
    border-color: var(--gray-300);
}
.btn--outline:hover { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); transform: translateY(-2px); }

/* Dark background button overrides */
.hero .btn--outline,
.cta-banner .btn--outline,
.section--black .btn--outline,
.page-hero .btn--outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.hero .btn--outline:hover,
.cta-banner .btn--outline:hover,
.section--black .btn--outline:hover,
.page-hero .btn--outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}
.hero .btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.hero .btn--primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 8px 30px rgba(212,168,67,0.3);
}
.btn--white {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}
.btn--white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--accent {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(212,168,67,0.2);
}
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,168,67,0.35); }
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--lg { padding: 18px 44px; font-size: 0.92rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226,232,240,0.4);
    transition: all var(--transition);
}
.navbar.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.06); background: rgba(255,255,255,0.95); }
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}
.navbar__logo { display: flex; align-items: center; gap: 12px; }
.navbar__logo img { height: 34px; }
.navbar__logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-900);
    line-height: 1.1;
}
.navbar__logo-text span { display: block; font-size: 0.58rem; font-weight: 500; color: var(--gray-400); letter-spacing: 2.5px; margin-top: 2px; }
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
    position: relative;
    letter-spacing: 0.01em;
}
.navbar__link:hover { color: var(--gray-900); }
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}
.navbar__link:hover::after { width: 100%; }
.navbar__cta { display: flex; align-items: center; gap: 16px; }
.navbar__phone {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-900);
    letter-spacing: 0.02em;
}
.navbar__phone:hover { color: var(--accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--gray-900); transition: all var(--transition); }
.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
   ============================================ */
.hero {
    padding: 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.6) 50%, rgba(10,15,26,0.75) 100%);
    z-index: 1;
}
/* Subtle grain texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 75px;
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}
.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.06;
    color: var(--white);
    letter-spacing: -0.035em;
}
.hero__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero__badges {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.hero__badge {
    height: 38px;
    opacity: 0.9;
    border-radius: 6px;
    background: #fff;
    padding: 4px 8px;
    object-fit: contain;
    transition: opacity var(--transition);
}
.hero__badge:hover { opacity: 1; }

/* Lead Form */
.lead-form {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08), 0 0 80px rgba(212,168,67,0.06);
}
.lead-form__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}
.lead-form__subtitle {
    font-size: 0.83rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}
.lead-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.lead-form__group { margin-bottom: 12px; }
.lead-form__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lead-form__input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--gray-800);
    transition: all var(--transition);
    background: var(--white);
}
.lead-form__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,168,67,0.1); }
.lead-form__input::placeholder { color: var(--gray-400); }
.lead-form__radio-group { display: flex; gap: 14px; flex-wrap: wrap; }
.lead-form__radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-600);
    cursor: pointer;
}
.lead-form__radio input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; }
.lead-form__submit {
    width: 100%;
    margin-top: 8px;
    background: var(--accent-gradient);
    border-color: var(--accent);
    color: var(--white);
    font-size: 0.92rem;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(212,168,67,0.25);
}
.lead-form__submit:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(212,168,67,0.4); }
.lead-form__disclaimer {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 14px;
    line-height: 1.5;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 18px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-100);
}
.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}
.trust-bar__icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* ============================================
   CARDS
   ============================================ */
.card-grid { display: grid; gap: 24px; margin-top: 48px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-card);
    border-top: 3px solid transparent;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-8px); border-top-color: var(--accent); }
.card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card__image { transform: scale(1.05); }
.card__body { padding: 28px; }
.card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.card__text {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Area cards */
.area-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-card);
    position: relative;
}
.area-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-8px); }
.area-card__image-wrap {
    position: relative;
    overflow: hidden;
}
.area-card__image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity var(--transition);
}
.area-card:hover .area-card__image-wrap::after { opacity: 0; }
.area-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.area-card:hover .area-card__image { transform: scale(1.08); }
.area-card__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 16px 8px;
    letter-spacing: -0.01em;
}
.area-card__cta { padding: 8px 16px 22px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-us__list { margin: 28px 0; }
.why-us__item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.why-us__check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}
.why-us__item-title { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--gray-900); font-size: 0.95rem; }
.why-us__item-text { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; margin-top: 2px; }
.why-us__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.why-us__images img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.why-us__images img:nth-child(2) { transform: translateY(16px); }
.why-us__images img:nth-child(3) { transform: translateY(-8px); }
.why-us__images img:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.why-us__images img:nth-child(2):hover { transform: translateY(16px) scale(1.04); }
.why-us__images img:nth-child(3):hover { transform: translateY(-8px) scale(1.04); }
.why-us__areas {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 16px;
}
.why-us__areas strong { color: var(--gray-900); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(160deg, var(--gray-900) 0%, #0d1929 40%, #111c33 80%, #0f1a2e 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, rgba(212,168,67,0.03) 40%, transparent 65%);
    border-radius: 50%;
    animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-banner__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.cta-banner__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-banner__sub {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ
   ============================================ */
.faq__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.faq__image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 600px;
}
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}
.faq__question:hover { color: var(--accent); }
.faq__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all var(--transition);
    background: var(--gray-100);
    color: var(--gray-900);
    border-radius: 50%;
}
.faq__item.active .faq__icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer-inner {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.75;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}
.testimonials__rating { display: flex; align-items: center; gap: 14px; }
.testimonials__score {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
}
.testimonials__stars { display: flex; gap: 2px; }
.testimonials__stars svg { width: 20px; height: 20px; fill: var(--star); }
.testimonials__count { font-size: 0.82rem; color: var(--gray-400); }
.testimonials__links { display: flex; gap: 20px; }
.testimonials__links a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 6px;
}
.testimonials__links a:hover { color: var(--accent); }

.testimonial-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-card);
    position: relative;
    border-left: 3px solid transparent;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(212,168,67,0.12);
    pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); border-left-color: var(--accent); }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-card__stars svg { width: 16px; height: 16px; fill: var(--star); }
.testimonial-card__meta {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.testimonial-card__text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-card__author {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-900);
}

/* ============================================
   PROJECTS / GALLERY
   ============================================ */
.project-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-card);
}
.project-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.project-card__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-card__image { transform: scale(1.05); }
.project-card__body { padding: 24px; }
.project-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.project-card__text { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; }

/* ============================================
   BLOG PREVIEWS
   ============================================ */
.blog-card {
    display: flex;
    gap: 28px;
    padding: 28px 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
    border-radius: var(--radius-md);
    margin: 0 -16px;
}
.blog-card:last-child { border-bottom: none; }
.blog-card:hover { background: var(--gray-50); transform: translateX(4px); }
.blog-card__image {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.blog-card__content { flex: 1; }
.blog-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 10px;
}
.blog-card__meta {
    font-size: 0.72rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.blog-card__meta a { color: var(--accent); }
.blog-card__meta a:hover { color: var(--accent-dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 80px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212,168,67,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer__nap {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.9;
}
.footer__nap a { color: var(--gray-400); }
.footer__nap a:hover { color: var(--accent); }
.footer__nap strong { color: var(--white); font-weight: 700; }
.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gray-300);
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer__link:hover { color: var(--accent); }

.footer__badges {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.footer__badge { height: 40px; opacity: 0.4; filter: brightness(0) invert(1); transition: opacity var(--transition); }
.footer__badge:hover { opacity: 0.7; }
.footer__social { display: flex; gap: 12px; margin-left: auto; }
.footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all var(--transition);
    background: rgba(255,255,255,0.03);
}
.footer__social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(212,168,67,0.3); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__copy { font-size: 0.78rem; color: var(--gray-500); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.78rem; color: var(--gray-500); }
.footer__legal a:hover { color: var(--accent); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.78rem;
    color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__separator { margin: 0 8px; color: var(--gray-300); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 145px 0 70px;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 65%);
    border-radius: 50%;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    pointer-events: none;
}
.page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 16px;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.page-hero__text {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 700px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.page-hero--centered { text-align: center; }
.page-hero--centered .page-hero__text { margin: 0 auto; }
.page-hero .breadcrumb { color: var(--gray-500); position: relative; z-index: 1; }
.page-hero .breadcrumb a { color: var(--gray-400); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb__separator { color: var(--gray-600); }

/* ============================================
   CONTENT (service/location pages)
   ============================================ */
.content { padding: 70px 0; }
.content h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin: 56px 0 18px;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    margin: 36px 0 12px;
}
.content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 18px;
}
.content ul, .content ol { margin: 18px 0; padding-left: 24px; }
.content ul { list-style: disc; }
.content ol { list-style: decimal; }
.content li {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 8px;
}
.content a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.content a:hover { color: var(--gray-900); }
.content--two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.content__sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}
.sidebar-cta__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sidebar-cta__text {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 18px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.google-review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
    border-left: 3px solid transparent;
    position: relative;
}
.google-review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(212,168,67,0.1);
    pointer-events: none;
}
.google-review-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-left-color: var(--accent);
}

/* ============================================
   REVIEW CARD (reviews page)
   ============================================ */
.review-card {
    transition: all var(--transition-slow);
    border-left: 3px solid transparent;
}
.review-card:hover { border-left-color: var(--accent); }

/* ============================================
   ACCENT TOP LINE
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 1001;
}

/* ============================================
   FOCUS STYLES (accessibility)
   ============================================ */
.btn:focus-visible,
.navbar__link:focus-visible,
.faq__question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212,168,67,0.3);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   STAT COUNTER ROW
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px 0;
}
.stat-item {
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: var(--gray-200);
}
.stat-item__number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-item__number span {
    color: var(--accent);
}
.stat-item__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,168,67,0.08);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 12px;
    color: var(--accent);
}
.contact-info__icon svg {
    width: 20px;
    height: 20px;
}
.contact-info__label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
}
.contact-info__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    line-height: 1.5;
}
.contact-info__text a {
    color: var(--white);
    font-weight: 700;
}
.contact-info__text a:hover {
    color: var(--accent);
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 20%, var(--accent-light) 50%, var(--gray-200) 80%, transparent 100%);
    border: none;
    margin: 0;
}

/* ============================================
   BENEFIT ITEMS (about page)
   ============================================ */
.benefit-list {
    max-width: 800px;
    margin: 32px auto 0;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: 1px solid transparent;
}
.benefit-item:hover {
    background: var(--white);
    border-color: var(--gray-100);
    box-shadow: var(--shadow-card);
}
.benefit-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}
.benefit-item__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.95rem;
}
.benefit-item__text {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .content--two-col { grid-template-columns: 1fr; }
    .content__sidebar { position: static; }
    .hero__inner { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    .navbar__nav {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-xl);
        gap: 0;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .navbar__nav.active { display: flex; transform: translateY(0); opacity: 1; }
    .navbar__link { padding: 14px 0; border-bottom: 1px solid var(--gray-100); width: 100%; }
    .hamburger { display: flex; }

    .hero { min-height: auto; padding: 0; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 123px 0 60px; }
    .lead-form { order: -1; }

    .card-grid--3 { grid-template-columns: 1fr; }
    .card-grid--4 { grid-template-columns: 1fr; }
    .card-grid--2 { grid-template-columns: 1fr; }

    .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
    .why-us__images { order: -1; }

    .faq__inner { grid-template-columns: 1fr; }
    .faq__image { display: none; }

    .footer__grid { grid-template-columns: 1fr; }
    .footer__badges { justify-content: center; }
    .footer__social { margin-left: 0; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .section { padding: 70px 0; }

    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }

    .cta-banner__buttons { flex-direction: column; align-items: center; }
    .cta-banner__buttons .btn { width: 100%; max-width: 340px; }

    .lead-form__row { grid-template-columns: 1fr; }

    .testimonials__header { flex-direction: column; text-align: center; }

    .blog-card { flex-direction: column; }
    .blog-card__image { width: 100%; height: 200px; }

    .page-hero { padding: 123px 0 50px; }

    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 40px 0; }
    .stat-item::after { display: none; }
    .stat-item__number { font-size: 2rem; }
    .stat-item__label { font-size: 0.72rem; }

    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__inner { padding: 103px 0 40px; }
    .lead-form { padding: 24px; }
    .trust-bar__inner { gap: 20px; }
    .trust-bar__item { font-size: 0.72rem; }
    .section { padding: 60px 0; }
}
