/* ============================
   GLOBAL
============================ */
body {
    margin: 0;
    background: #0a0a0a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.content {
    padding-top: 110px;
}


/* ============================
   NAVIGATION
============================ */
.nav-header {
    width: 100%;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo img {
    height: 75px;
}

.nav-links a {
    margin-left: 25px;
    font-size: 24px;
    position: relative;
}

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background: #00ff66;
        transition: width .3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

.btn-quote {
    background: #00ff66;
    padding: 10px 18px;
    border-radius: 4px;
    color: black;
    font-weight: bold;
}

/* ============================
   HAMBURGER MENU
============================ */
/* --- Hamburger Animation Core Mechanics --- */
.hamburger {
    display: none; /* Hidden on desktop by default */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.25s ease-in-out;
    }

    /* ⭐ THE KEY FIX: Transform the three horizontal bars into a clean "X" on open */
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #00ff66;
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #00ff66;
    }

/* ============================
   MOBILE MENU
============================ */
/* ==========================================================================
   TACTICAL RESPONSIVE HAMBURGER & MOBILE MENU CONTROLS
   ========================================================================== */

/* Mobile Menu Base State Hidden Off-Screen or Collapsed */
.mobile-menu {
    position: fixed;
    top: 70px; /* Adjust based on your header's real height */
    left: 0;
    width: 100%;
    background-color: #111111; /* Sleek Matte Black to match theme */
    border-bottom: 2px solid #333333;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    z-index: 999;
    /* Smooth slide-down / fade transition combination */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

    /* ⭐ THE KEY FIX: What happens when the JS appends the .open class */
    .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 30px;
        letter-spacing: 0.5px;
        transition: color 0.2s ease;
    }

        .mobile-menu a:hover {
            color: #00ff66; /* Your signature tactical green */
        }

/* Media Query to expose menu layout on mobile break points */
/* ==========================================================================
   UPDATED MOBILE NAVIGATION RESPONSIVE BREAKPOINT GRID
   ========================================================================== */

@media (max-width: 768px) { /* Increased break step boundary from 768px to 991px for broader tablet compatibility */

    /* 1. Hide the static inline text links so they don't mash into the logo */
    .nav-links {
        display: none !important;
    }

    /* 2. Unhide and force the structural hamburger flexbox to render */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        cursor: pointer;
        z-index: 1000; /* Keeps the toggle layered neatly on top of video grids or canvas headers */
        position: relative;
    }

        /* 3. Explicitly verify individual vector bars have full structural sizing and color opacity */
        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #ffffff; /* High contrast bright white bars */
            box-shadow: 0 0 4px rgba(255, 255, 255, 0.2); /* Soft ambient depth glow */
            border-radius: 2px;
            transition: all 0.25s ease-in-out;
        }

    /* 4. Ensure the parent flex container maps items evenly along horizontal limits */
    .nav-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================
   HERO / BACKGROUND SECTION
============================ */
.hero-wrapper {
    position: relative;
    background: #0a0a0a;
    padding-bottom: 100px;
}

.hero {
    position: absolute; /* Serves as a background canvas so layout wrapper sits directly on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 700px; /* Controls how far down the dark tech background graphic spans */
    background: url('/images/hero-tech.png') center/cover no-repeat;
    z-index: 0;
    box-shadow: inset 0 0 120px rgba(0,0,0,0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.35));
    z-index: 1;
}


/* ============================
    MAIN HORIZONTAL SPLIT LAYOUT
    ============================ */
.split-layout-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    /* CHANGE: Swapped padding-top from 40px to 15px, added height map to frame the canvas */
    padding: 30px 40px 0;
    gap: 40px; /* Increased from 20px to prevent the right column from hugging your reviews */
    position: relative;
    z-index: 5;
    min-height: 560px; /* 👈 Crucial: Creates vertical container space so elements can separate */
}

/* LEFT COLUMN (Holds Hero Text Content + Reviews Below It) */
.left-column {
    flex: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* CHANGE: Changed from flex-end to space-between. 
       This anchors your Hero Text cleanly to the top, and pushes the Reviews to the absolute bottom! */
    justify-content: space-between;
    text-align: left;
    gap: 20px;
}

.hero-content {
    max-width: 500px; /* Slightly increased from 400px so title doesn't break into too many lines */
    position: relative;
    z-index: 3;
    margin-top: 10px; /* Tiny buffer space right under your navbar area */
}

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
        margin-top: 0;
    }

        .hero-content h1 span {
            color: #00ff66;
        }

    .hero-content p {
        margin-top: 15px;
        font-size: 20px;
        color: #ccc;
    }

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: #00ff66;
    color: black;
    padding: 12px 22px;
    border-radius: 4px;
    margin-right: 15px;
    font-weight: bold;
}

.btn-outline {
    border: 2px solid #00ff66;
    padding: 10px 20px;
    border-radius: 4px;
    color: #00ff66;
}

/* ============================
   REVIEWS SECTION (TIGHT & COMPACT)
============================ */
.reviews-section {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(4px);
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #222;
    width: 100%;
    box-sizing: border-box;
    max-width: 650px;
}

    .reviews-section h2 {
        text-align: left;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 24px;
        color: #00ff66;
    }

.review-list {
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}

    /* Custom Scrollbar */
    .review-list::-webkit-scrollbar {
        width: 6px;
    }

    .review-list::-webkit-scrollbar-track {
        background: #111;
        border-radius: 4px;
    }

    .review-list::-webkit-scrollbar-thumb {
        background: #222;
        border-radius: 4px;
        border: 1px solid #333;
    }

        .review-list::-webkit-scrollbar-thumb:hover {
            background: #00ff66;
        }

.review-card {
    background: #161616;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

    .review-card:last-child {
        margin-bottom: 0;
    }

/* Line 1: Date Styling */
.review-date {
    display: block;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Line 2: Horizontal Text Flow Layout (Replaced Flex with Inline) */
.review-meta-inline {
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

.review-stars {
    color: #f4b400;
    font-size: 16px;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

.review-author {
    color: white;
    display: inline;
    margin-right: 4px;
    vertical-align: middle;
}

.review-text {
    color: #ccc;
    display: inline; /* 👈 Forces text to sit directly next to the author's colon */
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
/* ============================
   FLOATING ICONS
============================ */
.floating-icon {
    position: absolute;
    z-index: 4;
    width: 140px;
    animation: float 4s ease-in-out infinite;
}

.shield-icon {
    top: 40px;
    right: 60px;
    z-index: 20;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================
    SERVICE CARDS (HORIZONTAL ROW CONTAINER)
    ============================ */
.services {
    position: relative;
    z-index: 5;
    margin-top: 10px;
    /* ADDED THESE THREE LINES: */
    align-self: stretch; /* 1. Makes the services container match the full height of the layout */
    display: flex; /* 2. Turns it into a flex container */
    flex-direction: column;
    justify-content: flex-end; /* 3. Drops the child row down to the absolute bottom */
}

.service-cards-row {
    display: flex;
    flex-direction: row; /* Arranges the cards side-by-side horizontally */
    gap: 20px;
}

.service-card {
    background: #111;
    padding: 25px;
    border-radius: 8px;
    width: 320px; /* Adjusted card width to fit perfectly in a horizontal layout */
    border: 1px solid #222;
    transition: transform .25s ease, border-color .25s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    box-sizing: border-box;
}

    .service-card:hover {
        transform: translateY(-4px);
        border-color: #00ff66;
    }

    .service-card h3 {
        color: #00ff66;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .service-card p {
        color: #ccc;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .service-card a {
        color: #00ff66;
        font-weight: bold;
        font-size: 14px;
    }

.service-icon {
    width: 80px;
    max-width: none;
    margin: 0 auto 15px;
}

/* ============================
   THEME-MATCHED POPUP MODAL STYLING
============================ */
/* 1. Main Modal Frame Box styling */
.custom-dark-modal {
    background-color: #1a1d20 !important; /* Matches site dark section background */
    border: 2px solid #00ff66 !important; /* Your theme neon green color */
    border-radius: 12px !important;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.35) !important; /* Adds the outer glowing ring */
    padding: 10px;
}

/* 2. Header Box Setup */
.custom-modal-header {
    border-bottom: none !important; /* Removes the white separator line */
    justify-content: center;
    position: relative;
    padding-top: 15px;
}

    .custom-modal-header .modal-title {
        color: #00ff66 !important;
        font-size: 28px !important;
        font-weight: 700 !important;
        text-shadow: 0 0 10px rgba(0, 255, 102, 0.6); /* Adds title glow text treatment */
        text-align: center;
        width: 100%;
    }

    /* Position the close button neatly inside the dark header layout */
    .custom-modal-header .btn-close {
        position: absolute;
        right: 15px;
        top: 15px;
    }

/* 3. Modal Buttons Container Alignment */
.modal-button-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 35px 30px !important; /* Widens side margins for cleaner proportions */
}

/* 4. Action Buttons Configurations */
.btn-modal-choice {
    display: block;
    text-align: center;
    padding: 14px 0;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* "New Request" Solid Button */
.btn-primary-choice {
    background-color: #00ff66 !important;
    color: #000000 !important;
    border: none;
}

    .btn-primary-choice:hover {
        background-color: #00cc52 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 255, 102, 0.2);
    }

/* "Realtor's Only" Hollow Button */
.btn-outline-choice {
    background-color: transparent !important;
    border: 2px solid #00ff66 !important;
    color: #00ff66 !important;
}

    .btn-outline-choice:hover {
        background-color: rgba(0, 255, 102, 0.08) !important;
        transform: translateY(-2px);
    }

/* ============================
   DETAILED SERVICES PAGE STYLING
============================ */
.services-wrapper {
    background: #0a0a0a;
    color: white;
    padding-bottom: 80px;
}

/* 1. Page Header Canvas Banner */
.services-hero {
    position: relative;
    padding: 140px 40px 60px; /* Accounts for fixed layout navigation bar offset */
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), #0a0a0a), url('/images/hero-tech.png') center/cover no-repeat;
    border-bottom: 1px solid #161616;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

    .services-hero-content h1 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 700;
    }

        .services-hero-content h1 span {
            color: #00ff66;
            text-shadow: 0 0 15px rgba(0, 255, 102, 0.35);
        }

    .services-hero-content p {
        font-size: 18px;
        color: #ccc;
        line-height: 1.5;
        margin: 0;
    }

/* 2. Layout Grid Container Row Controls */
.services-detailed-container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 50px; /* Space between each large service layout block */
}

/* 3. Individual Service Section Blocks */
.detailed-service-card {
    display: flex;
    align-items: center;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 40px;
    gap: 50px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    /* Subtle accent glow card borders when hovered */
    .detailed-service-card:hover {
        border-color: #00ff66;
        box-shadow: 0 8px 30px rgba(0, 255, 102, 0.05);
    }

    /* Flips the row layout alignment on every other service block for design variety */
    .detailed-service-card.row-reverse {
        flex-direction: row-reverse;
    }

/* Left/Right layout segment fractions split */
.service-media {
    flex: 0 0 220px; /* Keeps your custom clipart graphics properly locked down */
    display: flex;
    justify-content: center;
    align-items: center;
}

.detailed-icon {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.service-info {
    flex: 1;
}

    .service-info h2 {
        color: #00ff66;
        font-size: 26px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .service-info p {
        color: #ccc;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* 4. Service Specific Checklist Styling */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .service-features-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #eee;
    }

        /* Injects custom theme green check marks before list descriptions cleanly */
        .service-features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: -1px;
            color: #00ff66;
            font-weight: bold;
            font-size: 16px;
        }

/* 5. Custom Button Configuration */
.btn-service-action {
    display: inline-block;
    background: #00ff66;
    color: black !important;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

    .btn-service-action:hover {
        background: #00cc52;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 255, 102, 0.2);
    }

/* ============================
   SERVICE AREA SECTION STYLING
============================ */
.service-area-section {
    background: #0d0d0d; /* Slightly different dark shade to separate sections */
    border-top: 1px solid #161616;
    padding: 80px 40px;
}

.service-area-container {
    max-width: 1200px; /* Aligns flawlessly with your services grid container edge limits */
    margin: 0 auto;
}

.area-title {
    text-align: center;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 45px;
    font-weight: 700;
}

    .area-title span {
        color: #00ff66;
        text-shadow: 0 0 15px rgba(0, 255, 102, 0.35);
    }

.area-split-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Matching structural grid spacing proportions */
    align-items: center;
}

/* Left Text Column Setup */
.area-info-col {
    flex: 1 1 450px;
}

.area-lead-text {
    font-size: 18px;
    color: #eee;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 25px;
}

.area-bounds-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .area-bounds-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 18px;
        font-size: 15px;
        color: #ccc;
        line-height: 1.6;
    }

        /* Custom indicator icon for the coverage geographic highlights layout */
        .area-bounds-list li::before {
            content: "📍";
            position: absolute;
            left: 0;
            top: 1px;
            font-size: 16px;
        }

.accent-text {
    color: #00ff66;
    display: inline-block;
    margin-right: 4px;
}

.area-footer-text {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

/* Right Map Column Setup */
.area-map-col {
    flex: 1 1 450px;
    width: 100%;
}

.theme-mapped-canvas {
    width: 100%;
    height: 450px; /* Balanced ratio fit */
    background: #111111; /* Fallback frame backdrop color */
    border: 1px solid #222222;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    /* Adds your signature subtle tech glow focus behavior when viewing the map zone area */
    .theme-mapped-canvas:hover {
        border-color: #00ff66;
        box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
    }

/* ============================
   RESPONSIVE STYLING FOR AREA
============================ */
@media (max-width: 900px) {
    .service-area-section {
        padding: 50px 20px;
    }

    .area-split-row {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .area-bounds-list li {
        text-align: left; /* Maintains text alignment readability on mobile break points */
    }

    .theme-mapped-canvas {
        height: 350px; /* Scales canvas height appropriately down on compact tablet/mobile device screens */
    }
    .hamburger {
        display: flex !important;
    }
}
/* ============================
   RESPONSIVE STYLING FOR MOBILE
============================ */
@media (max-width: 900px) {
    .detailed-service-card,
    .detailed-service-card.row-reverse {
        flex-direction: column; /* Stack card details sequentially vertically on narrow viewports */
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .service-features-list li {
        text-align: left; /* Keep text columns legible when elements align centrally */
    }

    .services-hero h1 {
        font-size: 32px;
    }
    .hamburger {
        display: flex !important;
    }
}

/* ============================
    RESPONSIVE LAYOUTS
    ============================ */
@media (max-width: 1300px) {
    /* Stacks columns vertically when the viewport narrows down so cards don't break lines */
    .split-layout-container {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        padding: 130px 20px 0;
        gap: 40px;
    }

    .hero {
        height: 600px;
    }

    .left-column {
        width: 100%;
    }

    .services {
        width: 100%;
    }

    .service-cards-row {
        justify-content: center;
        flex-wrap: wrap; /* Allows cards to drop lines perfectly on tablet viewports */
    }

    .service-card {
        width: 260px;
    }

    .shield-icon {
        display: none;
    }
}

@media (max-width: 700px) {
    .service-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 340px;
    }
    .hamburger {
        display: flex !important;
    }
}

/* ============================
   CONTACT PAGE CUSTOM STYLING
============================ */
.contact-page-wrapper {
    background: #0a0a0a;
    color: white;
    padding-bottom: 80px;
}

/* 1. Header Banner Layout Configuration */
.contact-hero {
    position: relative;
    padding: 140px 40px 50px; /* Aligns smoothly under fixed site nav bar */
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), #0a0a0a), url('/images/hero-tech.png') center/cover no-repeat;
    border-bottom: 1px solid #161616;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    max-width: 750px;
    margin: 0 auto;
}

    .contact-hero-content h1 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 700;
    }

        .contact-hero-content h1 span {
            color: #00ff66;
            text-shadow: 0 0 15px rgba(0, 255, 102, 0.35);
        }

    .contact-hero-content p {
        font-size: 17px;
        color: #ccc;
        line-height: 1.5;
        margin: 0;
    }

/* 2. Main Structural Column Alignment Spacing */
.contact-split-container {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* 3. Left Input Form Block */
.contact-form-card {
    flex: 1.3; /* Allows the form block to sit slightly wider than details block */
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

    .contact-form-card h2 {
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 24px;
        color: #ffffff;
        font-weight: 600;
    }

.form-group-split {
    display: flex;
    gap: 20px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
    flex: 1;
}

    .input-wrapper label {
        font-size: 13px;
        color: #00ff66; /* Neon indicator accent tags */
        margin-bottom: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

/* Custom Social Media Metric Grid Rule sets */
.fb-vector-icon {
    width: 26px;
    height: 26px;
    color: #00ff66; /* Neon tactical green default override */
    filter: drop-shadow(0 0 4px rgba(0, 255, 102, 0.2));
    transition: transform 0.2s ease-in-out, color 0.2s;
}

/* Make the whole block subtly light up when they are looking to follow */
.link-metric-block {
    transition: background-color 0.2s ease;
}

    .link-metric-block:hover {
        background-color: rgba(255, 255, 255, 0.02);
    }

        .link-metric-block:hover .fb-vector-icon {
            transform: scale(1.08);
            color: #1877f2; /* Swaps over to true branded Facebook Blue upon direct card interaction */
            filter: drop-shadow(0 0 6px rgba(24, 119, 242, 0.4));
        }

.fb-metric-link {
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin: 2px 0;
    padding-bottom: 2px;
    border-bottom: 1px dashed #333333;
    transition: all 0.2s ease-in-out;
}

    .fb-metric-link:hover {
        color: #00ff66;
        border-bottom-color: #00ff66;
    }

    .fb-metric-link .arrow-indicator {
        font-size: 14px;
        margin-left: 4px;
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .fb-metric-link:hover .arrow-indicator {
        transform: translateX(3px);
    }
/* Dark Skin Input Form Elements Setup */
.theme-dark-form input[type="text"],
.theme-dark-form input[type="email"],
.theme-dark-form input[type="tel"],
.theme-dark-form textarea {
    background: #1a1d20 !important; /* Premium dark background color */
    border: 1px solid #333333 !important;
    border-radius: 6px !important;
    padding: 14px 16px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-family: inherit;
    outline: none;
    transition: all 0.25s ease-in-out;
}

    /* Custom placeholder visibility coloring profiles */
    .theme-dark-form input::placeholder,
    .theme-dark-form textarea::placeholder {
        color: #666666;
    }

    /* Elegant Focus Border Glow Trigger States */
    .theme-dark-form input:focus,
    .theme-dark-form textarea:focus {
        border-color: #00ff66 !important;
        box-shadow: 0 0 10px rgba(0, 255, 102, 0.2) !important;
        background-color: #1c2024 !important;
    }

/* Submit Action Button Core Setup */
.btn-form-submit {
    display: block;
    width: 100%;
    background: #00ff66;
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-top: 10px;
}

    .btn-form-submit:hover {
        background: #00cc52;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 255, 102, 0.2);
    }

/* 4. Right Side Details Block Elements Setup */
.contact-details-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-button-group {
    display: flex;
    justify-content: center; /* Centers buttons horizontally */
    gap: 15px; /* Adds space between buttons */
    margin-top: 30px; /* Spacing from the text above */
}

.info-metric-block {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color 0.3s ease;
}

    .info-metric-block:hover {
        border-color: #1a1a1a;
    }

.metric-icon {
    font-size: 24px;
    background: rgba(0, 255, 102, 0.06);
    border: 1px solid rgba(0, 255, 102, 0.15);
    padding: 10px;
    border-radius: 8px;
    line-height: 1;
}

.metric-text h3 {
    margin: 0 0 6px 0;
    font-size: 15px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-metric {
    font-size: 22px;
    color: #00ff66; /* Large focal highlights */
    font-weight: 700;
    margin: 0 0 4px 0;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.metric-text small {
    color: #666666;
    font-size: 13px;
}

.hours-detail {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #dddddd;
}

    .hours-detail:last-child {
        margin-bottom: 0;
    }

    .hours-detail strong {
        color: #ffffff;
        display: inline-block;
        width: 130px; /* Keeps operating times grid-aligned cleanly */
    }

/* ============================
   RESPONSIVE STYLING FOR MOBILE
============================ */
@media (max-width: 950px) {
    .contact-split-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .contact-form-card,
    .contact-details-panel {
        width: 100%;
        box-sizing: border-box;
    }

    .form-group-split {
        flex-direction: column;
        gap: 0;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .hamburger {
        display: flex !important;
    }
}

/* ============================
   ABOUT PAGE CUSTOM STYLING
============================ */
.about-page-wrapper {
    background: #0a0a0a;
    color: white;
    padding-bottom: 80px;
}

/* 1. Header Banner Layout Configuration */
.about-hero {
    position: relative;
    padding: 140px 40px 50px; /* Aligns smoothly under fixed site nav bar */
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), #0a0a0a), url('/images/hero-tech.png') center/cover no-repeat;
    border-bottom: 1px solid #161616;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 5;
    max-width: 750px;
    margin: 0 auto;
}

    .about-hero-content h1 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 700;
    }

        .about-hero-content h1 span {
            color: #00ff66;
            text-shadow: 0 0 15px rgba(0, 255, 102, 0.35);
        }

    .about-hero-content p {
        font-size: 17px;
        color: #ccc;
        line-height: 1.5;
        margin: 0;
    }

/* 2. Main Narrative Layout Configuration */
.about-split-container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-narrative {
    flex: 1.2;
}

    .about-narrative h2 {
        font-size: 32px;
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .about-narrative .lead-text {
        font-size: 18px;
        color: #00ff66;
        line-height: 1.6;
        margin-bottom: 25px;
        font-weight: 500;
    }

    .about-narrative p {
        font-size: 15px;
        color: #b3b3b3;
        line-height: 1.7;
        margin-bottom: 20px;
    }

/* 3. Core Pillar Micro-Cards (Right Side) */
.about-pillars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.25s ease-in-out;
}

    .pillar-card:hover {
        border-color: #00ff66;
        box-shadow: 0 4px 20px rgba(0, 255, 102, 0.05);
        transform: translateX(3px); /* Subtle shift interaction */
    }

.pillar-icon {
    font-size: 22px;
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.15);
    padding: 10px;
    border-radius: 8px;
    line-height: 1;
}

.pillar-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.pillar-text p {
    margin: 0;
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

/* 4. Bottom Action Callout Block */
.about-cta-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 40px;
}

.cta-inner-box {
    background: linear-gradient(135deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

    /* Decorative subtle background gradient blur effect */
    .cta-inner-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 255, 102, 0.03) 0%, transparent 60%);
        pointer-events: none;
    }

    .cta-inner-box h2 {
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 12px;
        color: #ffffff;
    }

    .cta-inner-box p {
        font-size: 16px;
        color: #aaaaaa;
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.5;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    /* Reusing modal utility sizes explicitly to keep CSS minimal */
    .cta-buttons .btn-primary-choice,
    .cta-buttons .btn-outline-choice {
        padding: 14px 30px;
        font-size: 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        transition: all 0.2s ease-in-out;
    }

/* ============================
   RESPONSIVE STYLING FOR MOBILE
============================ */
@media (max-width: 950px) {
    .about-split-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .about-narrative,
    .about-pillars {
        width: 100%;
    }

    .pillar-card:hover {
        transform: none; /* Turn off tracking translations on standard tap targets */
    }

    .about-cta-section {
        padding: 0 20px;
        margin-top: 50px;
    }

    .cta-inner-box {
        padding: 35px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

        .cta-buttons .btn-primary-choice,
        .cta-buttons .btn-outline-choice {
            display: block;
            width: 100%;
            box-sizing: border-box;
        }
    .hamburger {
        display: flex !important;
    }
}
/* ============================
   REALTOR ESCROW FORM ARCHITECTURE
============================ */
.realtor-page-wrapper {
    background: #0a0a0a;
    color: white;
    padding-bottom: 80px;
}

/* 1. Header Banner Layout Configuration */
.realtor-hero {
    position: relative;
    padding: 140px 40px 50px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), #0a0a0a), url('/images/hero-tech.png') center/cover no-repeat;
    border-bottom: 1px solid #161616;
}

.realtor-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.realtor-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

    .realtor-hero-content h1 {
        font-size: 42px;
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 700;
    }

        .realtor-hero-content h1 span {
            color: #00ff66;
            text-shadow: 0 0 15px rgba(0, 255, 102, 0.35);
        }

    .realtor-hero-content p {
        font-size: 16px;
        color: #ccc;
        line-height: 1.5;
        margin: 0;
    }

/* 2. Form Canvas & Content Segments */
.realtor-form-section {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.realtor-form-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.form-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #00ff66;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed #222222;
    padding-bottom: 10px;
    margin-top: 35px;
    margin-bottom: 25px;
}

    .form-section-title:first-of-type {
        margin-top: 0;
    }

.test-mode-banner {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid #ffaa00;
    color: #ffaa00;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 30px;
}

/* 3. Fluid Layout Grid Calculations */
.form-grid-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

    .form-grid-row.align-bottom {
        align-items: flex-end;
    }

.triple-split .city-col {
    flex: 2;
}

.triple-split .state-col {
    flex: 1;
    min-width: 110px;
}

.triple-split .zip-col {
    flex: 1;
}

.triple-split .phone-col {
    flex: 2;
}

.triple-split .checkbox-col {
    flex: 1.2;
    padding-bottom: 12px;
}

.triple-split .price-col {
    flex: 1.5;
}

/* 4. Controls, Fields, & Dropdowns Setup */
.theme-dark-form select,
.theme-dark-form input[type="text"],
.theme-dark-form input[type="tel"],
.theme-dark-form textarea {
    background: #1a1d20 !important;
    border: 1px solid #333333 !important;
    border-radius: 6px !important;
    padding: 14px 16px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    outline: none;
    transition: all 0.25s ease-in-out;
    width: 100%;
    box-sizing: border-box;
}

.theme-dark-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23888888' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 12px 12px !important;
}

    .theme-dark-form select:focus,
    .theme-dark-form input:focus,
    .theme-dark-form textarea:focus {
        border-color: #00ff66 !important;
        box-shadow: 0 0 10px rgba(0, 255, 102, 0.2) !important;
        background-color: #1c2024 !important;
    }

/* 5. Custom Neon Checkbox Architecture */
.checkbox-row-wrapper {
    margin: 25px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    color: #eee;
    font-weight: 500;
    user-select: none;
    line-height: 22px;
}

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.custom-checkbox {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background-color: #1a1d20;
    border: 1px solid #333333;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .custom-checkbox {
    border-color: #00ff66;
}

.checkbox-container input:checked ~ .custom-checkbox {
    background-color: rgba(0, 255, 102, 0.1);
    border-color: #00ff66;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.3);
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #00ff66;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
    display: block;
}

/* 6. Form Submission Buttons */
.btn-realtor-submit {
    display: block;
    width: 100%;
    background: #00ff66;
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-realtor-submit:hover {
        background: #00cc52;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 255, 102, 0.25);
    }

    .btn-realtor-submit:disabled {
        background-color: #222222 !important;
        border: 1px solid #333333 !important;
        color: #555555 !important;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

/* 7. Hidden Accordion Transitions */
.hidden-accordion-panel {
    background: #15181a;
    border: 1px dashed #333333;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

/* ==================================
   8. Error Pulse Handling Matrix
================================== */
.theme-dark-form select.input-error,
.theme-dark-form select.input-error option {
    color: white;
    background: #0a0a0a;
}
.theme-dark-form input[type="text"].input-error,
.theme-dark-form input[type="tel"].input-error,
.theme-dark-form textarea.input-error {
    border: 1px solid #ff3344 !important;
    background-color: rgba(255, 51, 68, 0.15) !important;
    background-image: none !important; /* Clears dropdown arrows if necessary during flash */
    animation: pulseRedFrame 0.4s ease-in-out 0s 2;
}

@keyframes pulseRedFrame {
    0% {
        box-shadow: 0 0 0px rgba(255, 51, 68, 0);
    }

    50% {
        box-shadow: 0 0 12px rgba(255, 51, 68, 0.5);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 51, 68, 0);
    }
}

/* 9. Dark Custom Loading Screen Modal Overlay */
.custom-theme-modal .modal-content {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 30px;
}

.custom-theme-modal h5 {
    color: #ffffff;
    font-weight: 700;
}

.custom-theme-modal p {
    color: #888888;
    font-size: 14px;
    margin-bottom: 0;
}

.glow-spinner {
    color: #00ff66 !important;
    width: 3rem;
    height: 3rem;
}

/* ============================
   RESPONSIVE LAYOUT CONSTRAINTS
============================ */
/* ============================
   RESPONSIVE LAYOUT CONSTRAINTS
============================ */
@media (max-width: 768px) {
    .realtor-hero {
        padding: 120px 20px 40px;
    }

        .realtor-hero h1 {
            font-size: 32px;
        }

    .realtor-form-card {
        padding: 25px 20px;
    }

    /* Fix the layout collapse by introducing vertical field separation */
    .form-grid-row,
    .form-grid-row.triple-split {
        flex-direction: column;
        gap: 20px; /* Provides consistent spacing between stacked inputs */
    }

        /* Reset desktop bottom alignment mechanics so inputs span cleanly */
        .form-grid-row.align-bottom {
            align-items: stretch !important;
        }

    /* Give the custom checkbox row contextual spacing inside the vertical grid */
    .triple-split .checkbox-col {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .hamburger {
        display: flex !important;
    }
}