/* ============================================
   VANOVA RENOVATIONS — Logo-Matched Theme
   Colors extracted from logo:
   - Royal Blue: #2D5FC2 (roof, "Vanova" text)
   - Dark Navy: #1A2740 (outlines, "RENOVATIONS")
   - Orange/Amber: #E88B2D (brush, handle, window)
   - Steel Gray: #8C9BAD (hammer head)
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
    --blue: #2D5FC2;
    --blue-hover: #244FAA;
    --blue-gradient: linear-gradient(135deg, #2D5FC2, #1E4FA8);
    --orange: #E88B2D;
    --orange-hover: #D07A1F;
    --orange-gradient: linear-gradient(135deg, #E88B2D, #D07A1F);
    --navy: #1A2740;
    --navy-dark: #111C2E;
    --navy-deep: #0E1724;
    --white: #FFFFFF;
    --light-bg: #F0F4F8;
    --light-gray: #E2E8F0;
    --text-dark: #1A2740;
    --text-body: #4A5568;
    --text-light: #8C9BAD;
    --font: 'Poppins', sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 24px rgba(26,39,64,0.08);
    --shadow-hover: 0 8px 32px rgba(26,39,64,0.14);
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--blue);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header h2 strong {
    font-weight: 700;
    color: var(--text-dark);
}

.section-header-light h2 {
    color: var(--orange);
}

.section-header-light h2 strong {
    color: var(--white);
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
}

.section-header-light p {
    color: rgba(255,255,255,0.8);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(232,139,45,0.35);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,139,45,0.45);
    background: linear-gradient(135deg, #D07A1F, #B86A15);
}

.btn-link {
    background: transparent;
    color: var(--white);
    padding: 14px 20px;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--orange);
}

.btn-link i { transition: transform var(--transition); }
.btn-link:hover i { transform: translateX(5px); }

.btn-link-dark {
    background: transparent;
    color: var(--blue);
    font-weight: 600;
    padding: 10px 0;
}

.btn-link-dark:hover { color: var(--orange); }
.btn-link-dark i { transition: transform var(--transition); }
.btn-link-dark:hover i { transform: translateX(5px); }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo img {
    height: 85px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link.active,
.nav-link:hover {
    color: var(--orange);
}

.nav-link i {
    font-size: 0.6rem;
    margin-left: 4px;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
    border-top: 3px solid var(--blue);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.dropdown li a:hover {
    color: var(--blue);
    background: var(--light-bg);
    padding-left: 24px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.header.scrolled .header-phone {
    color: var(--text-dark);
}

.header-phone i {
    background: var(--blue);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.header-cta {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(232,139,45,0.25);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,139,45,0.4);
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,39,64,0.90) 0%,
        rgba(45,95,194,0.70) 50%,
        rgba(26,39,64,0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 660px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-text h1 strong {
    font-weight: 700;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: 80px;
    bottom: 50%;
    transform: translateY(50%);
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-scroll span {
    writing-mode: vertical-lr;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ========================================
   TRUST BAR — FIXED: solid bg, no image bleed
   ======================================== */
.trust-bar {
    background: var(--navy);
    padding: 24px 0;
    border-bottom: 3px solid var(--orange);
    position: relative;
    z-index: 10;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-text {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 300;
}

.trust-text strong {
    font-weight: 700;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 36px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.10);
}

.trust-google {
    display: flex;
    gap: 1px;
}

.g-letter {
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Product Sans', 'Poppins', sans-serif;
}

.trust-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-icon-green {
    background: #28a745;
}

.trust-detail {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.3;
}

.trust-detail strong {
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-stars {
    color: #FBBC05;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.trust-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 90px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    height: 380px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    position: absolute;
    inset: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(26,39,64,0.90) 0%, rgba(26,39,64,0.40) 60%, transparent 100%);
    z-index: 2;
}

.service-label h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    font-weight: 300;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 90px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 1.85rem;
    font-weight: 300;
    color: var(--blue);
    line-height: 1.35;
    margin-bottom: 24px;
}

.about-text h2 strong {
    color: var(--text-dark);
    font-weight: 700;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.how-bg {
    position: absolute;
    inset: 0;
    background: url('images/dark-bg.png') center/cover no-repeat;
}

.how-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,39,64,0.93) 0%,
        rgba(17,28,46,0.91) 100%
    );
}

.how-content {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-img {
    height: 200px;
    overflow: hidden;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-img img {
    transform: scale(1.05);
}

.step-info {
    padding: 24px;
    text-align: center;
}

.step-num {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

.step-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
    margin: 6px 0 12px;
    font-style: italic;
}

.step-info p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.65;
}

.how-cta {
    text-align: center;
}

.how-phone {
    margin-top: 18px;
    color: var(--white);
    font-size: 1rem;
}

.how-phone i {
    color: var(--orange);
    margin-right: 6px;
}

.how-phone a {
    color: var(--white);
    font-weight: 600;
}

.how-phone a:hover {
    color: var(--orange);
}

/* ========================================
   RECENT WORK / PROJECTS
   ======================================== */
.recent-work {
    padding: 90px 0;
    background: var(--light-bg);
}

.projects-slider {
    overflow: hidden;
    position: relative;
}

.projects-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slide {
    min-width: calc(33.333% - 18px);
    margin: 0 9px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-slide:hover img {
    transform: scale(1.05);
}

.project-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.project-slide-info p {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--blue);
}

.projects-cta {
    text-align: center;
    margin-top: 30px;
}

/* ========================================
   AREAS WE SERVE
   ======================================== */
.areas {
    padding: 90px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.areas-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.areas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.areas-content h2 {
    font-size: 1.85rem;
    font-weight: 300;
    color: var(--blue);
    line-height: 1.35;
    margin-bottom: 24px;
}

.areas-content h2 strong {
    color: var(--text-dark);
    font-weight: 700;
}

.areas-content > p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.areas-list ul li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.areas-list ul li i {
    color: var(--blue);
    font-size: 0.6rem;
}

/* ========================================
   INSIGHTS
   ======================================== */
.insights {
    padding: 90px 0;
    background: var(--light-bg);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 500px;
}

.insight-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.insight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover img {
    transform: scale(1.05);
}

.insight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.insight-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.insight-overlay h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.insight-card-large { height: 100%; }

.insight-card-large .insight-overlay h3 {
    font-size: 1.15rem;
}

.insight-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-stack .insight-card { flex: 1; }

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 90px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--light-bg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--blue);
    text-align: left;
    transition: var(--transition);
    gap: 16px;
}

.faq-question i {
    color: var(--blue);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

/* Active FAQ: brand blue background */
.faq-item.active {
    background: var(--blue);
}

.faq-item.active .faq-question {
    color: var(--white);
    font-weight: 500;
}

.faq-item.active .faq-question i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-body);
}

.faq-item.active .faq-answer p {
    color: rgba(255,255,255,0.9);
}

/* ========================================
   ESTIMATE / CONTACT
   ======================================== */
.estimate {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.estimate-bg {
    position: absolute;
    inset: 0;
    background: url('images/dark-bg.png') center/cover no-repeat;
}

.estimate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,39,64,0.93) 0%,
        rgba(17,28,46,0.90) 100%
    );
}

.estimate-content {
    position: relative;
    z-index: 2;
}

.estimate-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.estimate-info h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.estimate-info h2 strong {
    font-weight: 700;
}

.estimate-info > p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.estimate-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.estimate-phone,
.estimate-email {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.estimate-phone i,
.estimate-email i {
    color: var(--orange);
    font-size: 1.1rem;
}

.estimate-phone:hover,
.estimate-email:hover {
    color: var(--orange);
}

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.estimate-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.estimate-form input,
.estimate-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 5px;
    font-family: var(--font);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.92);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.estimate-form input:focus,
.estimate-form textarea:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45,95,194,0.3);
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
    color: #999;
}

.estimate-form textarea {
    resize: vertical;
    min-height: 120px;
}

.estimate-form .btn-cta {
    align-self: flex-start;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(1.3);
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--orange);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-contact-list li i {
    color: var(--orange);
    margin-top: 4px;
    font-size: 0.85rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer-credit a {
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--orange);
}

/* ========================================
   MOBILE CALL BUTTON
   ======================================== */
.mobile-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAV OVERLAY
   ======================================== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-scroll { display: none; }
    .insights-grid { min-height: 400px; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding-top: 70px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active { right: 0; }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-link {
        color: var(--text-dark) !important;
        padding: 14px 24px;
        display: block;
        border-bottom: 1px solid var(--light-bg);
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        padding: 0;
        background: var(--light-bg);
        border-top: none;
    }

    .menu-toggle { display: flex; }
    .header-container { height: 65px; }
    .logo img { height: 65px; }
    .header-cta { display: none; }
    .header-phone span { display: none; }
    .hero-text h1 { font-size: 2rem; }
    .hero-scroll { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { height: 300px; }

    .about-grid,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img img,
    .areas-img img { min-height: 280px; }

    .steps-grid { grid-template-columns: 1fr; }
    .project-slide { min-width: calc(100% - 18px); }

    .insights-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .insight-card-large { height: 300px; }
    .insight-stack .insight-card { height: 220px; }

    .estimate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .estimate-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .trust-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .areas-list { grid-template-columns: repeat(2, 1fr); }
    .mobile-call { display: flex; }
    .faq-question { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.7rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .section-header h2 { font-size: 1.7rem; }

    .about-text h2,
    .areas-content h2,
    .estimate-info h2 { font-size: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .areas-list { grid-template-columns: 1fr; }

    .services, .about, .how-it-works, .recent-work,
    .areas, .insights, .faq, .estimate {
        padding: 60px 0;
    }

    .trust-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Selection */
::selection {
    background: var(--blue);
    color: var(--white);
}
