/*
Theme Name: Bitlane Movers
Theme URI: https://bitlanemovers.com
Author: Bitlane
Author URI: https://bitlanemovers.com
Description: Professional moving company theme for Kingston Movers - Bitlane
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bitlane
Tags: moving, company, professional, block-theme
*/

/* ===== ROOT VARIABLES ===== */
:root {
    --red: #CC0000; /* Deep, pure brand red matching the logo */
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-card: #1e1e1e;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #f5f5f5;
    --border: #2e2e2e;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
/* Top bar removed for the light UI version */

/* ===== HEADER / NAVBAR ===== */
.site-header.site-header-light {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Subtle shadow for white header */
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 90px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo Styles */
.site-logo, .footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: auto;
    width: 210px; /* Perfect size */
    max-height: none;
    display: block;
    transition: var(--transition);
}

.nav-links.nav-links-light {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-start; /* Move to the left */
    margin-left: 40px; /* Spacing from the logo */
}
.nav-links.nav-links-light li { position: relative; }
.nav-links.nav-links-light a {
    color: #4a5568; /* Grayish blue dark color */
    font-size: 15px;
    font-weight: 600;
    padding: 28px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    text-transform: capitalize;
}
.nav-links.nav-links-light a:hover, .nav-links.nav-links-light a.active { 
    color: var(--dark); 
}
.nav-links.nav-links-light a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: var(--transition);
}
.nav-links.nav-links-light a:hover::after { width: calc(100% - 32px); }
.nav-links.nav-links-light .has-dropdown > a::after { display: none; }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #eee;
    border-top: 3px solid var(--red);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    padding: 12px 20px;
    color: #4a5568;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    display: block;
    text-transform: none;
}
.dropdown a:hover { color: var(--red); background: #fafafa; padding-left: 24px; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.btn-phone {
    background: var(--white);
    border: 1px solid #cbd5e1;
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-phone:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}
.btn-quote {
    background: linear-gradient(to right, #ef4444, #dc2626);
    color: var(--white) !important;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.btn-quote:hover { 
    background: linear-gradient(to right, #dc2626, #b91c1c); 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--dark);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.45) 100%);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><polygon points="0,0 800,0 600,600 0,600" fill="rgba(232,36,28,0.03)"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px; 
    align-items: center; /* Center vertically for the image */
}
.hero-image-widget {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); /* Softer shadow, no border */
    background: transparent;
}
.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-label {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px; /* Increased gap */
}
.hero-label::before {
    content: '';
    width: 24px; /* Slightly shorter line */
    height: 2px;
    background: var(--red);
}
.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.hero-title .highlight { 
    color: var(--red); 
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-desc {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.7;
}
.hero-desc strong {
    color: var(--white);
    font-weight: 700;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--red), #a30000);
    color: var(--white);
    padding: 18px 32px;
    font-weight: 900;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}
.btn-primary:hover { 
    background: linear-gradient(135deg, #e60000, #b80000);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    font-weight: 900;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2); 
    cursor: pointer;
}
.btn-secondary:hover { 
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}




/* Quote Form */
.quote-form-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: 4px;
    padding: 28px;
}
.quote-form-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 3px;
    color: var(--white);
    padding: 11px 14px;
    font-size: 14px;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: #161616;
}
.form-group select option { background: #111; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-form {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
}
.btn-form:hover { background: #c01a13; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #f4f7f9;
    padding: 24px 0;
    border-bottom: 1px solid #e1e7ec;
}
.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px;
    transition: var(--transition);
}
.trust-item:hover {
    transform: translateY(-2px);
}
.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}
.trust-text strong { 
    display: block; 
    font-size: 13px; 
    color: #4a5568; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}
.trust-text span { display: none; }

/* ===== SECTION COMMON ===== */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-label::before, .section-label::after {
    content: '';
    height: 1px;
    background: var(--red);
    width: 30px;
    opacity: 0.5;
}
.section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 70px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}
.about-content .section-label { justify-content: flex-start; }
.about-content .section-label::before { display: none; }
.about-title {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.1;
}
.about-text { font-size: 14px; color: #555; line-height: 1.9; margin-bottom: 16px; }
.about-text strong { color: var(--red); }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.about-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.about-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--red);
    opacity: 0;
    transition: var(--transition);
    border-radius: 4px 0 0 4px;
}
.about-feature:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #e0e0e0;
}
.about-feature:hover::before {
    opacity: 1;
}
.about-feature-icon {
    width: 54px;
    height: 54px;
    background: rgba(232, 36, 28, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}
.about-feature:hover .about-feature-icon {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(232, 36, 28, 0.3);
}
.about-feature-text { flex: 1; }
.about-feature-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.3px; }
.about-feature-text span { font-size: 14px; color: var(--gray); line-height: 1.5; display: block; }

/* Premium Map Widget */
.map-widget {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.05) inset;
    position: relative;
}
.map-header {
    background: rgba(255,255,255,0.03);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.map-header h4 { color: var(--white); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.map-status { 
    font-size: 11px; color: #4ade80; font-weight: 700; display: flex; align-items: center; gap: 8px; 
    background: rgba(74, 222, 128, 0.1); padding: 6px 12px; border-radius: 30px; border: 1px solid rgba(74, 222, 128, 0.2);
}
.map-status::before { content: ''; display: block; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.5); } 100% { opacity: 0.4; transform: scale(0.8); } }
.map-body { 
    height: 280px; 
    background-color: #0b1118;
    position: relative; 
    display: block; 
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.dispatch-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.map-widget:hover .dispatch-map-image {
    transform: scale(1.05);
}
.map-cities { padding: 20px 24px; background: rgba(0,0,0,0.3); }
.map-city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    font-size: 13px;
}
.map-city-item:last-child { border: none; padding-bottom: 0; }
.map-city-name { color: #e2e8f0; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.map-city-badge {
    background: rgba(232, 36, 28, 0.12);
    color: #ff6b6b;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(232, 36, 28, 0.25);
    letter-spacing: 0.5px;
}
.map-city-badge.available { 
    background: rgba(74, 222, 128, 0.1); 
    color: #4ade80; 
    border-color: rgba(74, 222, 128, 0.25);
}
.btn-map {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 20px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-map:hover { background: #d01d16; }
.btn-map::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-map:hover::after {
    transform: translateX(6px);
}

/* ===== SERVICE AREAS ===== */
.service-areas {
    background: var(--dark);
    padding: 70px 0;
}
.service-areas .section-label { justify-content: center; }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.area-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.area-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}
.area-card:hover { border-color: var(--red); transform: translateY(-4px); }
.area-card:hover::before { width: 100%; }
.area-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}
.area-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.area-sub { font-size: 11px; color: var(--gray); }

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 70px 0;
    background: var(--white);
}
.services-section .section-label { justify-content: center; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}
.service-card:hover::before { 
    transform: scaleY(1);
    transform-origin: top;
}
.service-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(232,36,28,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.5s ease;
    border: 1px solid rgba(232, 36, 28, 0.1);
}
.service-card-icon i {
    color: var(--red);
    transition: all 0.5s ease;
}
.service-card:hover .service-card-icon { 
    background: var(--red); 
    transform: scale(1.1) rotateY(360deg);
    border-color: var(--red);
}
.service-card:hover .service-card-icon i {
    color: var(--white);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: var(--dark);
    transition: color 0.4s ease;
}
.service-card:hover h3 {
    color: var(--white);
}
.service-card p { 
    font-size: 14px; 
    color: var(--gray); 
    line-height: 1.7; 
    margin-bottom: 24px; 
    transition: color 0.4s ease;
}
.service-card:hover p {
    color: #b0b0b0;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}
.service-card:hover .service-card-link { 
    color: var(--red);
    gap: 12px;
}
.service-card-link i {
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* ===== ESTIMATOR SECTION ===== */
.estimator-section {
    background: var(--dark);
    padding: 70px 0;
}
.estimator-grid {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 70px;
    align-items: center;
}
.estimator-content .section-label { justify-content: flex-start; }
.estimator-content .section-label::before { display: none; }
.estimator-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
}
.estimator-title .highlight { color: var(--red); }
.estimator-features { display: flex; flex-direction: column; gap: 24px; margin-top: 30px; }
.estimator-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-left: 0;
}
.feature-bullet {
    width: 28px;
    height: 28px;
    background: rgba(232, 36, 28, 0.1);
    border: 1px solid rgba(232, 36, 28, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-top: 2px;
}
.feature-bullet::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}
.estimator-feature-text strong { display: block; font-size: 16px; color: var(--white); font-weight: 800; margin-bottom: 6px; letter-spacing: 0.5px;}
.estimator-feature-text span { font-size: 14px; color: #999; line-height: 1.6; display: block; }

/* Premium Estimator Form */
.estimator-form {
    background: linear-gradient(145deg, rgba(30,30,30,0.8) 0%, rgba(15,15,15,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.est-section-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a0a0a0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.est-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

/* Property type tabs */
.property-tabs, .distance-tabs { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 28px; 
    flex-wrap: wrap; 
}
.prop-tab {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    color: #888;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.prop-tab:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.1);
    color: #ccc;
    transform: translateY(-2px);
}
.prop-tab.active {
    background: var(--red);
    border-color: #ff4747;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232, 36, 28, 0.35);
    transform: translateY(-2px);
}

/* Price range */
.price-range {
    background: #050505;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 28px;
    margin: 24px 0;
    text-align: center;
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}
.price-range::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.5;
}
.price-label { font-size: 12px; color: #777; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.price-value { 
    font-size: 42px; 
    font-weight: 900; 
    color: var(--red); 
    text-shadow: 0 0 20px rgba(232, 36, 28, 0.4);
    letter-spacing: -1px;
}
.estimator-form .btn-form {
    padding: 18px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, var(--red) 0%, #c01a13 100%);
    box-shadow: 0 5px 15px rgba(232, 36, 28, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.estimator-form .btn-form::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}
.estimator-form .btn-form:hover::after {
    left: 100%;
}
.estimator-form .btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 36, 28, 0.5);
}
.estimator-form .form-group input {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--white);
    padding: 14px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.estimator-form .form-group input:focus {
    background: rgba(0,0,0,0.7);
    border-color: rgba(232, 36, 28, 0.5);
    box-shadow: 0 0 10px rgba(232, 36, 28, 0.2);
}
.estimator-form .form-row {
    margin-bottom: 0;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    padding: 70px 0;
    background: var(--white);
}
.comparison-section .section-label { justify-content: center; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.comparison-table thead tr {
    background: var(--dark);
}
.comparison-table th {
    padding: 18px 22px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}
.comparison-table th:first-child { color: #555; }
.comparison-table th.bitlane-col {
    background: var(--red);
    color: var(--white) !important;
    text-align: center;
}
.comparison-table th.avg-col { text-align: center; color: #666; }
.comparison-table tbody tr { border-bottom: 1px solid #eee; transition: var(--transition); }
.comparison-table tbody tr:last-child { border: none; }
.comparison-table tbody tr:hover { background: #f9f9f9; }
.comparison-table td {
    padding: 16px 22px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}
.comparison-table td:nth-child(2) { text-align: center; }
.comparison-table td:nth-child(3) { text-align: center; }
.check-yes { color: #4ade80; font-size: 16px; font-weight: 700; }
.check-no { color: #f87171; font-size: 16px; }
.check-yes-text { color: #4ade80; font-size: 12px; font-weight: 700; display: block; text-align: center; }
.check-no-text { color: #f87171; font-size: 12px; font-weight: 700; display: block; text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 70px 0;
    background: var(--light-gray);
}
.testimonials-section .section-label { justify-content: center; }
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}
.reviews-score {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
}
.reviews-stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }
.reviews-count { font-size: 13px; color: var(--gray); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.testimonial-card:hover::before {
    opacity: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { 
    font-size: 14px; 
    color: #444; 
    line-height: 1.8; 
    margin-bottom: 24px; 
    font-style: italic; 
    font-weight: 500;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red) 0%, #a8120d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(232, 36, 28, 0.2);
}
.author-name { font-size: 15px; font-weight: 800; color: var(--dark); letter-spacing: -0.2px;}
.author-location { font-size: 13px; color: #777; margin-top: 2px;}
.verified-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 70px 0;
    background: var(--white);
}
.video-section .section-label { justify-content: center; }
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.video-card { border-radius: 8px; overflow: hidden; transition: var(--transition); }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.video-thumb {
    position: relative;
    background: var(--dark);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}
.video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.play-btn {
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    padding-left: 4px;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.video-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 1;
}
.video-meta { padding: 14px 16px; border: 1px solid #eee; border-top: none; border-radius: 0 0 8px 8px; }
.video-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.video-desc { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.faq-section .section-label { justify-content: center; }
.faq-list { margin-top: 50px; max-width: 850px; margin-left: auto; margin-right: auto; }
.faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
    border-color: rgba(232, 36, 28, 0.1);
}
.faq-item.active { 
    border-color: rgba(232, 36, 28, 0.3); 
    box-shadow: 0 10px 40px rgba(232, 36, 28, 0.08);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    gap: 20px;
}
.faq-question span {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    transition: color 0.3s ease;
}
.faq-item:hover .faq-question span {
    color: var(--red);
}
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq-item:hover .faq-icon {
    background: rgba(232, 36, 28, 0.1);
    color: var(--red);
}
.faq-item.active .faq-icon { 
    background: var(--red); 
    color: var(--white); 
    transform: rotate(135deg); 
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 30px 24px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--red);
    padding: 60px 0;
    text-align: center;
}
.cta-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.cta-sub {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 30px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 14px 30px;
    font-weight: 800;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    font-weight: 800;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-logo { font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--red); }
.footer-about { font-size: 13px; color: #666; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    background: #222;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    transition: var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 13px;
    color: #666;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--red); font-size: 16px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-contact-icon {
    color: var(--red);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-text { font-size: 13px; color: #666; line-height: 1.6; }
.footer-contact-text strong { color: #999; display: block; }
.footer-bottom {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: #555; }
.footer-copyright a { color: var(--red); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: #555; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.6s ease forwards; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .quote-form-card { max-width: 500px; }
    .about-grid { grid-template-columns: 1fr; }
    .estimator-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .logo-img { width: 150px; height: auto; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        border-top: 2px solid var(--red);
        padding: 16px;
        gap: 4px;
        z-index: 999;
    }
    .mobile-menu-open .nav-links a { padding: 12px 16px; border-radius: 4px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-table { font-size: 12px; }
    .comparison-table th, .comparison-table td { padding: 12px 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    
    /* Fix for estimator form overlapping/overflowing */
    .estimator-form { padding: 24px; }
    .prop-tab { font-size: 11px; padding: 10px 14px; }
}
@media (max-width: 480px) {
    .hero-badges { flex-direction: column; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar .container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    /* Fix for estimator form and property tabs overflowing on mobile */
    .estimator-form { padding: 20px; }
    .prop-tab {
        padding: 10px 12px;
        font-size: 11px;
        flex: 1 1 100%; /* Force tabs to stack nicely if needed or wrap */
        justify-content: center;
    }
    .distance-tabs, .property-tabs {
        gap: 8px;
    }
}
