/* ========================================
   BLUEVIBE REMODELING — Design System
   Brand gradient: #1B4DDB → #1A8FE8 → #00C4E6
   ======================================== */

:root {
    /* Brand Colors (matched to actual logo) */
    --blue: #1A8FE8;
    --blue-dark: #1B4DDB;
    --blue-light: #00C4E6;
    --blue-glow: rgba(26, 143, 232, 0.3);
    --blue-subtle: rgba(26, 143, 232, 0.08);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --gray-100: #E8ECF1;
    --gray-200: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-600: #6B7280;
    --gray-800: #1F2937;
    --black: #0A0A0A;
    --dark: #111827;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-pad: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --ease: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   NAVBAR
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--ease);
}

nav.scrolled {
    padding: 12px 5%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: var(--ease);
}

nav.scrolled .logo-img {
    height: 36px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
}

.footer-logo-img:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links>a,
.nav-links>.nav-dropdown>.nav-dropdown-trigger {
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--ease);
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: var(--ease);
}

.nav-links>a:hover,
.nav-dropdown:hover>.nav-dropdown-trigger {
    color: var(--blue);
}

.nav-links>a:hover::after {
    width: 100%;
}

.nav-links>a.active {
    color: var(--blue);
}

.nav-links>a.active::after {
    width: 100%;
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger i {
    font-size: 0.7rem;
    transition: var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--ease);
}

.nav-dropdown-menu a:hover {
    background: var(--blue-subtle);
    color: var(--blue);
}

.nav-dropdown-menu a i {
    width: 18px;
    color: var(--blue);
    font-size: 0.8rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.nav-phone:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--blue-glow);
}

.nav-phone i {
    font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #0D1B2A 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--ease);
}

.breadcrumb a:hover {
    color: var(--blue-light);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
    color: var(--blue-light);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    line-height: 1.7;
}

/* Inner page content sections */
.page-content {
    padding: var(--section-pad);
}

.page-content.alt-bg {
    background: var(--off-white);
}

.page-content.dark-bg {
    background: var(--dark);
    color: var(--white);
}

/* Content grid for service pages */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-grid.reversed {
    grid-template-columns: 1fr 2fr;
}

.content-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.content-body p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.content-body ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-600);
    line-height: 1.6;
}

.content-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--blue);
    font-size: 0.85rem;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--blue-dark);
}

.cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover no-repeat;
    text-align: center;
    padding: 140px 24px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.82) 0%,
            rgba(26, 115, 232, 0.25) 50%,
            rgba(10, 10, 10, 0.78) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 115, 232, 0.15);
    border: 1px solid rgba(26, 115, 232, 0.4);
    color: #7BB8FF;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(26, 115, 232, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(26, 115, 232, 0.25);
    }
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-desc strong {
    color: var(--white);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust-strip {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--blue-light);
    font-size: 0.9rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    background: rgba(26, 115, 232, 0.1);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--blue-subtle);
    color: var(--blue);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--blue-light);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.65);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-pad);
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--ease);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--blue);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img .financing-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--blue);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-body {
    padding: 28px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--blue);
}

.service-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.service-body p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.service-benefits li i {
    color: var(--blue);
    font-size: 0.7rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--ease);
}

.service-cta:hover {
    gap: 14px;
    color: var(--blue-dark);
}

/* ========================================
   FINANCING SECTION
   ======================================== */
.financing {
    padding: var(--section-pad);
    background: linear-gradient(135deg, var(--dark) 0%, #0D1B2A 100%);
    position: relative;
    overflow: hidden;
}

.financing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.financing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--ease);
    backdrop-filter: blur(10px);
}

.financing-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(26, 115, 232, 0.15);
}

.financing-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.financing-icon i {
    font-size: 1.5rem;
    color: var(--blue-light);
}

.financing-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.financing-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.financing-cta-wrap {
    text-align: center;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: var(--section-pad);
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-100);
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--ease);
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px var(--blue-glow);
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: var(--section-pad);
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--ease);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.02);
    transition: var(--ease);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-overlay h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--ease);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-page {
    padding: var(--section-pad);
    background: var(--off-white);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--section-pad);
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: var(--ease);
}

.testimonial-card:hover {
    border-color: rgba(26, 115, 232, 0.3);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.stars {
    margin-bottom: 18px;
}

.stars i {
    color: #FBBF24;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--gray-400);
    font-size: 0.78rem;
}

/* ========================================
   SERVICE AREAS SECTION
   ======================================== */
.service-areas {
    padding: var(--section-pad);
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.area-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--ease);
}

.area-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.08);
}

.area-card i {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 14px;
}

.area-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: var(--section-pad);
    background: linear-gradient(135deg, #0D1B2A 0%, var(--dark) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: var(--ease);
}

.trust-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.trust-card i {
    font-size: 2.2rem;
    color: var(--blue-light);
    margin-bottom: 18px;
}

.trust-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--section-pad);
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-info-side>p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--blue);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-item strong {
    color: var(--black);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.contact-item span {
    color: var(--gray-600);
    font-size: 0.88rem;
}

.contact-financing-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--blue-subtle);
    border: 1px solid rgba(26, 115, 232, 0.15);
    border-radius: 12px;
    padding: 18px 22px;
}

.contact-financing-note i {
    font-size: 1.5rem;
    color: var(--blue);
    min-width: 30px;
}

.contact-financing-note p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-financing-note strong {
    color: var(--blue);
}

/* Estimate Form */
.estimate-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.estimate-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--off-white);
    transition: var(--ease);
    outline: none;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
    background: var(--white);
}

.estimate-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
}

.financing-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.financing-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--blue);
    cursor: pointer;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--black);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--ease);
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    transition: var(--ease);
}

.footer-links-col a:hover {
    color: var(--blue-light);
    padding-left: 4px;
}

.footer-links-col p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    transition: var(--ease);
}

.footer-links-col p a {
    display: inline;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    padding-left: 0;
    transition: var(--ease);
}

.footer-links-col p a:hover {
    color: var(--blue-light);
    padding-left: 0;
}

.footer-links-col p i {
    width: 16px;
    min-width: 16px;
    color: var(--blue);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .content-grid,
    .content-grid.reversed {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-pad: 70px 0;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 10000;
        animation: fadeIn 0.3s ease;
    }

    .nav-links.mobile-open>a,
    .nav-links.mobile-open>.nav-dropdown>.nav-dropdown-trigger {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--black);
    }

    .nav-links.mobile-open .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        text-align: center;
    }

    .nav-links.mobile-open .nav-dropdown-menu a {
        justify-content: center;
        font-size: 1rem;
        padding: 8px 16px;
    }

    .nav-links.mobile-open .nav-dropdown-menu a i {
        display: none;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }

    .hero-trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .estimate-form {
        padding: 28px 20px;
    }

    .process-timeline::before {
        left: 24px;
    }

    .page-hero {
        padding: 110px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .financing-grid {
        grid-template-columns: 1fr;
    }
}