/* =====================================================
   EVER-NEW RESTORATION CORP. — bestroofrepair.us
   Design: Clean professional light theme — blue + orange
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&display=swap');

/* --- Variables ----------------------------------------
   NOTE: variable names are kept for backward compatibility
   with inline styles in the HTML pages. Their VALUES now
   describe a light theme:
     --red*  = primary BLUE (brand accent)
     --gold  = ORANGE accent (CTA)
     --white = INK (dark headings)  ← repurposed
     --dark* = soft light surfaces
     --black = page background (white)
   ----------------------------------------------------- */
:root {
    --red:        #1d6fb8;   /* primary blue */
    --red-dark:   #15507f;   /* deep blue (hover) */
    --red-light:  #4a93d4;   /* light blue */
    --black:      #ffffff;   /* page background */
    --dark:       #eef3f8;   /* footer / bg-dark sections */
    --dark-2:     #f4f7fa;   /* soft sections / cards */
    --dark-3:     #e9f0f7;   /* deeper soft surface */
    --dark-4:     #dce6f0;   /* deepest soft surface */
    --gray:       #6b7c89;   /* muted text */
    --gray-light: #41525f;   /* body text */
    --light:      #3c4d5a;   /* base body text */
    --white:      #1b2b38;   /* INK — headings (repurposed) */
    --gold:       #f47b20;   /* orange accent */
    --gold-dark:  #d9650f;   /* orange hover */
    --line:       #e2e9f0;   /* hairline borders */
    --radius:     6px;
    --shadow:     0 10px 30px rgba(27,43,56,.10);
    --transition: .35s cubic-bezier(.4,0,.2,1);
    --font-head:  'Montserrat', sans-serif;
    --font-body:  'Open Sans', sans-serif;
}

/* --- Reset -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility ------------------------------------------ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.text-red   { color: var(--red); }
.text-gold  { color: var(--gold); }
.text-gray  { color: var(--gray); }
.bg-dark    { background: var(--dark); }
.bg-dark-2  { background: var(--dark-2); }
.bg-dark-3  { background: var(--dark-3); }
.flex       { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Section Header ----------------------------------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
    vertical-align: middle;
    margin: 0 10px;
}
.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.section-header p {
    margin-top: 16px;
    color: var(--gray-light);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons ------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29,111,184,.32);
}
.btn-outline {
    background: transparent;
    color: var(--red);
    border-color: rgba(29,111,184,.45);
}
.btn-outline:hover {
    border-color: var(--red);
    background: rgba(29,111,184,.08);
    transform: translateY(-2px);
}
/* hero buttons sit over the dark video — keep light outline there */
.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255,255,255,.55);
}
.hero .btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,.12);
}
.btn-gold {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,123,32,.34);
}

/* --- Topbar ------------------------------------------- */
.topbar {
    background: var(--red-dark);
    padding: 10px 0;
    font-size: .82rem;
    font-family: var(--font-head);
    font-weight: 600;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #ffffff; opacity: .92; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar-item { display: flex; align-items: center; gap: 7px; color: #ffffff; }
.topbar-item svg { flex-shrink: 0; }

/* --- Navigation --------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(27,43,56,.10);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.navbar-brand {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.01em;
}
.navbar-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}
.navbar-brand span { color: var(--red); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray-light);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--red); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 16px; }
/* CTA button keeps white text even though it also carries .nav-link */
.nav-cta.btn-primary,
.nav-cta.btn-primary:hover,
.nav-cta.btn-primary.active { color: #ffffff; }
.nav-cta.btn-primary::after { display: none; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Homepage transparent overlay header ----------------
   On the homepage the header floats over the full-screen
   hero video. It is transparent by default and turns solid
   after scrolling past the video, or when the mobile menu
   is open. Scoped to <body class="home"> so sub-pages keep
   their normal solid header. */
.home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}
.home .site-header .topbar,
.home .site-header .navbar {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom-color: transparent;
    transition: background var(--transition), border-color var(--transition);
}
.home .site-header .navbar { position: static; }
.home .site-header .navbar-brand { color: #ffffff; }
.home .site-header .nav-link { color: rgba(255,255,255,.88); }
.home .site-header .nav-link:hover,
.home .site-header .nav-link.active { color: #ffffff; }
.home .site-header .nav-toggle span { background: #ffffff; }
.home .site-header .nav-cta.btn-primary { color: #ffffff; }
/* Solid state: scrolled past the hero, or mobile menu open */
.home .site-header.scrolled,
.home .site-header.menu-open {
    box-shadow: 0 4px 24px rgba(27,43,56,.10);
}
.home .site-header.scrolled .topbar,
.home .site-header.menu-open .topbar {
    background: var(--red-dark);
}
.home .site-header.scrolled .navbar,
.home .site-header.menu-open .navbar {
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
}
.home .site-header.scrolled .navbar-brand,
.home .site-header.menu-open .navbar-brand { color: var(--white); }
.home .site-header.scrolled .nav-link,
.home .site-header.menu-open .nav-link { color: var(--gray-light); }
.home .site-header.scrolled .nav-link:hover,
.home .site-header.scrolled .nav-link.active,
.home .site-header.menu-open .nav-link:hover,
.home .site-header.menu-open .nav-link.active { color: var(--red); }
.home .site-header.scrolled .nav-toggle span,
.home .site-header.menu-open .nav-toggle span { background: var(--white); }

/* --- Hero --------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03);
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* uniform mask over the whole first screen, opacity 0.4 */
    background: rgba(15, 36, 58, .4);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,123,32,.20);
    border: 1px solid rgba(244,123,32,.45);
    color: #ffd0a6;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: .5; }
}
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.02em;
    text-shadow: 0 4px 22px rgba(0,0,0,.42), 0 1px 2px rgba(0,0,0,.32);
}
.hero h1 em {
    font-style: normal;
    color: #ffb877;
    text-shadow: 0 4px 22px rgba(0,0,0,.34), 0 1px 2px rgba(0,0,0,.26);
}
.hero p {
    font-size: 1.12rem;
    color: rgba(255,255,255,.90);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.75;
    text-shadow: 0 2px 12px rgba(0,0,0,.44);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: .75rem;
    font-family: var(--font-head);
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}
.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Stats Bar ---------------------------------------- */
.stats-bar {
    background: var(--red);
    padding: 32px 0;
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,.22);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number sup { font-size: 1.4rem; vertical-align: super; }
.stat-label {
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}

/* --- Services Grid ------------------------------------ */
.service-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 18px rgba(27,43,56,.05);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(29,111,184,.30);
    box-shadow: 0 24px 60px rgba(27,43,56,.14), 0 0 0 1px rgba(29,111,184,.12);
}
.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}
.service-card:hover .service-card-icon { transform: rotate(-5deg) scale(1.08); }
.service-card-body { padding: 32px; }
.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
}
.service-card p {
    color: var(--gray-light);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
    transition: var(--transition);
}
.service-link svg { transition: transform var(--transition); }
.service-link:hover { color: var(--red-dark); }
.service-link:hover svg { transform: translateX(4px); }
.service-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover .service-card-accent { transform: scaleX(1); }
.service-card-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.service-card-photo.card-thumb {
    height: 168px;
    border-bottom: 1px solid var(--line);
}
.service-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.service-card:hover .service-card-photo img { transform: scale(1.05); }

/* --- About / Why Us ----------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}
.about-visual {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 100%;
    min-height: 460px;
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.about-img-main svg,
.about-img-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.about-img-main img {
    object-fit: cover;
    display: block;
}
.about-badge-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--red);
    color: #ffffff;
    padding: 24px 28px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(29,111,184,.30);
}
.about-badge-float .big-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.about-badge-float .small-text {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .92;
}
.about-text .eyebrow {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    display: block;
}
.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}
.about-text p {
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}
.feature-list { margin: 28px 0 36px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(29,111,184,.10);
    border: 1px solid rgba(29,111,184,.22);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
    font-size: 1rem;
}
.feature-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}
.feature-text span { color: var(--gray-light); font-size: .88rem; }

/* --- Process Steps ------------------------------------ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(to right, var(--red), rgba(29,111,184,.16));
    z-index: 0;
}
.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid rgba(29,111,184,.34);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--red);
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(27,43,56,.08);
}
.process-item:hover .process-num {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    transform: scale(1.08);
}
.process-item h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.process-item p { color: var(--gray-light); font-size: .88rem; }

/* --- Testimonials ------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(27,43,56,.05);
}
.testi-card:hover {
    border-color: rgba(29,111,184,.24);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27,43,56,.12);
}
.testi-quote {
    font-size: 3.5rem;
    color: var(--gold);
    line-height: .8;
    font-family: Georgia, serif;
    margin-bottom: 16px;
    opacity: .55;
}
.testi-text {
    color: var(--gray-light);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
}
.testi-info strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
}
.testi-info span { color: var(--gray); font-size: .8rem; }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }

/* --- CTA Banner --------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, var(--gold) 120%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    color: rgba(255,255,255,.88);
    font-size: 1.1rem;
    margin-bottom: 36px;
    position: relative;
}
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 32px;
    position: relative;
    transition: var(--transition);
}
.cta-phone:hover { color: #ffe1c4; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* --- Blog Cards --------------------------------------- */
.blog-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(27,43,56,.05);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(29,111,184,.22);
}
.blog-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 36, 58, 0), rgba(15, 36, 58, .28));
    pointer-events: none;
}
.blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 1;
}
.blog-body { padding: 24px; }
.blog-meta {
    font-size: .78rem;
    color: var(--gray);
    font-family: var(--font-head);
    margin-bottom: 10px;
}
.blog-body h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 12px;
}
.blog-body p { color: var(--gray-light); font-size: .88rem; line-height: 1.7; }

/* --- FAQ -------------------------------------------- */
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
    background: #ffffff;
}
.faq-item.open { border-color: rgba(29,111,184,.34); }
.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 22px 28px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}
.faq-question:hover { background: var(--dark-2); }
.faq-item.open .faq-question { background: var(--dark-2); color: var(--red); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(27,43,56,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--gray);
}
.faq-item.open .faq-icon {
    border-color: var(--red);
    color: var(--red);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, padding .3s ease;
    background: var(--dark-2);
    color: var(--gray-light);
    font-size: .92rem;
    line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 28px 24px; }

/* --- Contact Form ------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}
.ci-icon {
    width: 52px;
    height: 52px;
    background: rgba(29,111,184,.10);
    border: 1px solid rgba(29,111,184,.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--red);
}
.ci-content strong {
    display: block;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}
.ci-content a, .ci-content span {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
}
.ci-content a:hover { color: var(--red); }
.form-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark-2);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(29,111,184,.14);
    background: #ffffff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }

/* --- Page Hero (inner pages) -------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 55%, rgba(29,111,184,.10) 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(29,111,184,.10) 0%, transparent 60%);
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
    position: relative;
}
.page-hero .breadcrumb a { color: var(--gray-light); }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero .breadcrumb span { color: var(--red); }
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    position: relative;
}
.page-hero p {
    color: var(--gray-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 16px auto 0;
    position: relative;
}

.article-cover,
.detail-image {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(27,43,56,.12);
    margin-bottom: 28px;
    background: var(--dark-2);
}
.article-cover img,
.detail-image img {
    width: 100%;
    height: clamp(240px, 38vw, 460px);
    object-fit: cover;
    display: block;
}
.detail-image img { height: clamp(220px, 34vw, 420px); }

/* --- Footer ------------------------------------------- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--line);
}
.footer-main { padding: 70px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand .navbar-brand { margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: .9rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: .95rem;
    transition: var(--transition);
    background: #ffffff;
}
.social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    transform: translateY(-2px);
}
.footer-col h4 {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--gray);
    font-size: .9rem;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '›';
    color: var(--red);
    font-size: 1.1rem;
    line-height: 1;
}
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    text-align: center;
    color: var(--gray);
    font-size: .82rem;
    font-family: var(--font-head);
}
.footer-bottom a { color: var(--red); }

/* --- AOS Custom --------------------------------------- */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* --- Responsive --------------------------------------- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.22); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .about-grid { gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-menu { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff; border-top: 1px solid var(--line); padding: 8px 0; box-shadow: 0 12px 28px rgba(27,43,56,.12); }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 14px 24px; border-radius: 0; }
    .nav-link::after { display: none; }
    .nav-cta { margin: 8px 16px 16px; display: block; text-align: center; }
    .nav-toggle { display: flex; }
    .navbar .container { flex-wrap: wrap; position: relative; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge-float { right: 0; }
    .hero h1 { font-size: 2.4rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .topbar .container { justify-content: center; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
}
