/* ==========================================================================
   REAL SCRAP - Premium CSS Stylesheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --primary-orange: #f38100;
    --primary-glow: rgba(243, 129, 0, 0.4);
    --secondary-orange: #ff9d00;
    --gradient-orange: linear-gradient(135deg, #ffb300 0%, #f38100 50%, #d56000 100%);
    --dark-bg: #0a0b0d;
    --dark-card: #121418;
    --text-white: #ffffff;
    --text-muted: #b0b3c1;
    --text-light: #dedede;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --header-height: 100px;
    --border-radius-sm: 3px;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: #2a2c35;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Header Container */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: var(--header-height);
}

/* Logo hanging effect */
.logo-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    z-index: 1010;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

.logo-link:hover .logo-img {
    transform: scale(1.03) rotate(-1deg);
}

/* Header Right Grid Layout */
.header-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 0;
}

/* Top Info Bar */
.top-info-bar {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-family: var(--font-body);
}

.hours-text {
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hours-text i {
    color: var(--primary-orange);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-fast);
}

.phone-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Main Navigation Bar */
.nav-bar {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 9px;
    transition: var(--transition-fast);
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(18, 20, 24, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--text-white);
    background: rgba(243, 129, 0, 0.1);
    padding-left: 24px;
}

/* Get a Quote Header Button */
.btn-quote-header {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(243, 129, 0, 0.2);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btn-quote-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-quote-header:hover::before {
    left: 150%;
}

.btn-quote-header:hover {
    background: #ff9012;
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-1px);
}

.btn-arrow {
    font-size: 11px;
    transition: var(--transition-smooth);
}

.btn-quote-header:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hamburger mobile Menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Hamburger active transformation */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ==========================================================================
   Mobile Overlay Menu
   ========================================================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 11, 13, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 990;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-menu {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
}

.mobile-item {
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

.mobile-nav-overlay.active .mobile-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay logic when active */
.mobile-nav-overlay.active .mobile-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-item:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-item:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-overlay.active .mobile-item:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-item:nth-child(8) { transition-delay: 0.45s; }
.mobile-nav-overlay.active .mobile-item:nth-child(9) { transition-delay: 0.5s; }

.mobile-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.mobile-submenu {
    display: none;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 8px 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-sublink {
    display: block;
    padding: 8px;
    font-size: 16px;
    color: var(--text-muted);
}

.mobile-hours {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 30px;
}

.mobile-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    margin-top: 5px;
}

.btn-quote-mobile {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 18px;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-bg);
}

/* Background image handling with slow zooming effects */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05); /* Starts slightly scaled up for GSAP scale down reveal */
}

/* Multi-layer overlay for optimal readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 11, 13, 0.95) 0%,
        rgba(10, 11, 13, 0.85) 35%,
        rgba(10, 11, 13, 0.6) 60%,
        rgba(10, 11, 13, 0.25) 100%
    );
}

/* Hero Content layout styling */
.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 40px 40px 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    text-align: left;
}

/* Heading with mask revealing */
.hero-title {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
}

.title-line {
    display: inline-block;
    overflow: hidden;
    height: auto;
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 900;
}

.title-white {
    color: var(--text-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.title-orange {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(243, 129, 0, 0.3));
    font-weight: 950;
    letter-spacing: -0.01em;
    display: inline-block;
}

/* Subheadings list styling */
.hero-subheadings {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.9;
}

.subheading-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bullet-dot {
    color: var(--primary-orange);
    font-size: 1.5rem;
    line-height: 1;
    margin: 0 4px;
}

/* Hero actions button row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons style */
.btn-primary {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 800;
    letter-spacing: 0.05em;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: clamp(14px, 1.5vw, 18px) clamp(28px, 2.5vw, 36px);
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(243, 129, 0, 0.35);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.8s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    background: #ff9012;
    box-shadow: 0 8px 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-primary .btn-arrow {
    font-size: 13px;
    transition: var(--transition-smooth);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 800;
    letter-spacing: 0.05em;
    background: transparent;
    color: var(--text-white);
    padding: clamp(14px, 1.5vw, 18px) clamp(28px, 2.5vw, 36px);
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}
/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    padding: 100px 0;
    background-color: #f7f8fa; /* Light grey base */
    background-image: 
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0); /* Subtle concrete pattern */
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.02);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0d0e12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-bottom: 12px;
}

.about-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

.title-line-orange {
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    display: inline-block;
}

.about-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4a4d55;
    margin-bottom: 35px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.btn-about {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 129, 0, 0.25);
    transition: var(--transition-smooth);
}

.btn-about:hover {
    background: #ff9012;
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}
/* ==========================================================================
   Why Choose Us & Pricing Section
   ========================================================================== */

.benefits-pricing-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: var(--text-white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0); /* Subtle dark pattern */
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
}

.benefits-pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.15fr auto 0.85fr;
    gap: 60px;
    align-items: stretch;
}

/* Vertical divider styling */
.section-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}

/* Benefits (Why Choose Us) Left Column */
.benefits-column {
    display: flex;
    flex-direction: column;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 45px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.benefit-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    background: rgba(243, 129, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(243, 129, 0, 0.1);
}

.benefit-icon-wrapper i {
    color: var(--primary-orange);
    font-size: 20px;
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon-wrapper {
    background: var(--primary-orange);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.05) rotate(5deg);
}

.benefit-item:hover .benefit-icon-wrapper i {
    color: var(--text-white);
}

.benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-white);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.benefit-text p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Pricing Right Column */
.pricing-column {
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pricing-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 500;
}

.pricing-table-wrapper {
    background: #111317;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background-color: var(--primary-orange);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 14px 20px;
    text-align: left;
    border: none;
}

.pricing-table td {
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:nth-child(2) {
    color: var(--text-muted);
    font-weight: 400;
}

/* Pricing Table Row Hover Effect */
.pricing-table tbody tr {
    transition: var(--transition-fast);
}

.pricing-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Pricing CTA button */
.btn-pricing-cta {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 14px 30px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 129, 0, 0.25);
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-pricing-cta i {
    font-size: 13px;
    transition: var(--transition-smooth);
}

.btn-pricing-cta:hover {
    background: #ff9012;
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-pricing-cta:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* ==========================================================================
   Our Services Section
   ========================================================================== */

.services-section {
    padding: 100px 0;
    background-color: #f7f8fa; /* Light grey base */
    background-image: 
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0); /* Subtle concrete pattern */
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0d0e12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line-orange-side {
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    display: inline-block;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(243, 129, 0, 0.2);
}

/* Card Image Section */
.service-card-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

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

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

/* Circular Badge Overlapping Bottom of Image */
.service-card-icon-badge {
    position: absolute;
    top: 200px; /* Aligns with the bottom of the 200px image wrapper */
    left: 50%;
    transform: translate(-50%, -50%); /* Center-align overlap vertically and horizontally */
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(243, 129, 0, 0.3);
    z-index: 10;
    transition: var(--transition-smooth);
}

.service-card-icon-badge i {
    color: #ffffff;
    font-size: 18px;
}

.service-card:hover .service-card-icon-badge {
    transform: translate(-50%, -50%) scale(1.08) rotate(10deg);
}

/* Card Content section */
.service-card-content {
    padding: 42px 25px 30px 25px; /* Large top padding to clear the badge */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #0d0e12;
    text-align: left;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(243, 129, 0, 0.1);
    padding-bottom: 8px; /* Added separation line for premium structure */
}

.service-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0; /* Align perfectly with h3 */
    margin: 0;
}

.service-bullet-list li {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4a4d55;
    list-style: none;
    position: relative;
    padding-left: 18px;
    font-weight: 500;
    text-align: left;
}

.service-bullet-list li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
    line-height: 1;
}


/* ==========================================================================
   Our Simple Process Section
   ========================================================================== */

.process-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: var(--text-white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0); /* Subtle dark pattern */
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 22px;
    width: 100%;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(243, 129, 0, 0.25);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.step-mini-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 11px;
}

.step-icon {
    color: var(--primary-orange);
    font-size: 38px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
}

.step-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.step-body p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 200px;
    margin: 0 auto;
}

/* Connecting Arrow between step units */
.process-connecting-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: var(--primary-orange);
    font-size: 22px;
    opacity: 0.35;
    padding-top: 13px; /* Align vertically with number bubbles */
    transition: var(--transition-smooth);
}

/* Hover effects */
.process-step:hover .step-icon {
    transform: scale(1.18);
    color: #ffffff;
    text-shadow: 0 0 15px var(--primary-glow);
}

.process-step:hover .step-number {
    background-color: #ff9012;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: scale(1.06);
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large screens center adjustment */
@media (max-width: 1400px) {
    .header-container {
        padding: 0 30px;
    }
    .hero-container {
        padding: 120px 30px 40px 30px;
    }
}

/* Medium size tablets & desktop transitions */
@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .logo-img {
        height: 85px;
    }

    .top-info-bar {
        display: none; /* Hide top bar on mobile/tablet to clean up */
    }

    .header-right {
        justify-content: center;
        padding: 0;
    }

    .nav-menu {
        display: none; /* Menu elements go into Hamburger */
    }

    .btn-quote-header {
        display: none; /* Quote button goes into Hamburger */
    }

    .mobile-menu-toggle {
        display: flex; /* Toggle display */
    }

    .hero-overlay {
        /* Centered fading on tablet/mobile */
        background: linear-gradient(
            0deg,
            rgba(10, 11, 13, 0.95) 0%,
            rgba(10, 11, 13, 0.8) 50%,
            rgba(10, 11, 13, 0.7) 100%
        );
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        align-items: center;
        margin-bottom: 20px;
    }

    .hero-subheadings {
        align-items: center;
        margin-bottom: 35px;
    }

    .subheading-item {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .about-section {
        padding: 70px 0;
    }

    .benefits-pricing-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-divider {
        display: none;
    }

    .benefits-pricing-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-section {
        padding: 70px 0;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-connecting-arrow {
        display: none; /* Hide horizontal flow arrows on mobile stack */
    }

    .process-section {
        padding: 70px 0;
    }
}


/* ==========================================================================
   Testimonials Section — Premium Redesign
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    background-color: #f7f8fa;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonials-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Centered section header */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-centered {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0d0e12;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.section-subtitle-centered {
    font-family: var(--font-body);
    font-size: 16px;
    color: #6b6f7a;
    font-weight: 400;
}

/* 3-Column testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual testimonial card */
.tcard {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 36px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.tcard::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.4s ease;
}

.tcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(243, 129, 0, 0.2);
}

.tcard:hover::before {
    width: 100%;
}

/* Large quote icon top-right */
.tcard-quote-icon {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(243, 129, 0, 0.12);
    font-size: 42px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.tcard:hover .tcard-quote-icon {
    color: rgba(243, 129, 0, 0.2);
    transform: scale(1.1);
}

/* Star rating row */
.tcard-stars {
    display: flex;
    gap: 4px;
    color: var(--primary-orange);
    font-size: 14px;
    margin-bottom: 18px;
}

/* Quote text */
.tcard-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #4a4d55;
    font-style: italic;
    font-weight: 400;
    flex-grow: 1;
    margin-bottom: 28px;
}

/* Footer: avatar + name */
.tcard-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 20px;
}

.tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(243, 129, 0, 0.3);
    letter-spacing: 0.04em;
}

.tcard-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tcard-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #0d0e12;
}

.tcard-location {
    font-family: var(--font-body);
    font-size: 13px;
    color: #8a8e9a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tcard-location i {
    color: var(--primary-orange);
    font-size: 11px;
}


/* ==========================================================================
   Service Areas Section — Premium Redesign
   ========================================================================== */

.service-areas-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: var(--text-white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    overflow: hidden;
}

.service-areas-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left text column */
.service-areas-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-areas-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 28px;
    position: relative;
}

.title-underline-bar {
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-orange);
    margin-top: 16px;
    border-radius: 2px;
}

.service-areas-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

/* State badges grid */
.service-areas-states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.state-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: default;
    transition: var(--transition-fast);
    letter-spacing: 0.03em;
}

.state-badge i {
    color: var(--primary-orange);
    font-size: 11px;
}

.state-badge:hover {
    background: rgba(243, 129, 0, 0.1);
    border-color: rgba(243, 129, 0, 0.35);
    color: var(--text-white);
}

.state-badge-more {
    background: rgba(243, 129, 0, 0.08);
    border-color: rgba(243, 129, 0, 0.3);
    color: var(--primary-orange);
    font-weight: 700;
}

.state-badge-more:hover {
    background: rgba(243, 129, 0, 0.2);
    border-color: var(--primary-orange);
}

/* CTA phone button */
.btn-service-areas-cta {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(243, 129, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-service-areas-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.btn-service-areas-cta:hover::before { left: 150%; }

.btn-service-areas-cta:hover {
    background: #ff9012;
    box-shadow: 0 8px 30px var(--primary-glow);
    transform: translateY(-2px);
}

/* Right map panel */
.service-areas-map-panel {
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 460px;
}

.map-grid-bg {
    width: 100%;
    background: #0e1014;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated network SVG */
.map-network-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Pulsing ring animation */
.map-pulse-ring {
    animation: mapPulse 2.8s ease-out infinite;
}
.map-pulse-ring-2 {
    animation: mapPulse 2.8s ease-out infinite 0.7s;
}

@keyframes mapPulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 0.2; transform: scale(1.08); }
    100% { opacity: 0; transform: scale(1.2); }
}

/* USA label */
.map-usa-label {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    z-index: 5;
}

.map-usa-label i {
    color: var(--primary-orange);
    font-size: 18px;
    opacity: 0.7;
}

/* Stat chips */
.map-stat-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 17, 21, 0.88);
    border: 1px solid rgba(243, 129, 0, 0.25);
    border-radius: 6px;
    padding: 12px 16px;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.map-stat-chip:hover {
    border-color: rgba(243, 129, 0, 0.5);
    transform: translateY(-3px);
}

.map-stat-chip i {
    color: var(--primary-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.map-stat-chip div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.chip-number {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.chip-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.map-stat-chip-1 { bottom: 30px; left: 24px; }
.map-stat-chip-2 { top: 70px; left: 24px; }
.map-stat-chip-3 { bottom: 30px; right: 24px; }


/* ==========================================================================
   CTA Banner Section
   ========================================================================== */

.cta-banner-section {
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-orange);
    background-image: linear-gradient(135deg, #d56000 0%, #f38100 40%, #ff9d00 100%);
    z-index: 0;
}

/* Subtle diagonal texture overlay */
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.04) 0px,
        rgba(0, 0, 0, 0.04) 2px,
        transparent 2px,
        transparent 14px
    );
}

.cta-banner-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner-text {
    flex: 1;
    min-width: 280px;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-banner-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cta-banner-primary {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: #ffffff;
    color: var(--primary-orange);
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.btn-cta-banner-primary:hover {
    background: #0a0b0d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-banner-secondary {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.btn-cta-banner-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}


/* ==========================================================================
   Main Footer Section
   ========================================================================== */

.main-footer {
    background: #111217;
    color: var(--text-white);
    padding: 90px 0 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 70px 40px;
    display: grid;
    grid-template-columns: 3.2fr 1px 4.5fr 4.2fr;
    gap: 45px;
    align-items: stretch;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer titles */
.footer-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-title-line {
    width: 35px;
    height: 2px;
    background: var(--primary-orange);
    display: inline-block;
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact-list li span {
    font-family: var(--font-body);
}

.footer-contact-list .contact-icon {
    color: var(--primary-orange);
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-phone-link {
    font-family: var(--font-body);
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-phone-link:hover {
    color: #ff9012;
    text-shadow: 0 0 8px rgba(243, 129, 0, 0.3);
}

.footer-email-link {
    font-family: var(--font-body);
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-email-link:hover {
    color: #ff9012;
    text-decoration: underline;
}

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

.footer-social-links .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #111217;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social-links .social-icon:hover {
    background: #ffffff;
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 129, 0, 0.45);
}

/* Vertical divider */
.footer-vertical-divider {
    background: rgba(255, 255, 255, 0.08);
    width: 1px;
    align-self: stretch;
}

/* Quote Form Column */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.footer-form .form-row.full-width {
    grid-template-columns: 1fr;
}

.footer-form .form-group {
    width: 100%;
}

.footer-form input {
    width: 100%;
    background: #ffffff;
    color: #111217;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

.footer-form input::placeholder {
    color: #8c8f99;
}

.footer-form input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(243, 129, 0, 0.25);
}

.btn-footer-submit {
    width: 100%;
    background: var(--primary-orange);
    color: var(--text-white);
    border: none;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(243, 129, 0, 0.25);
    margin-top: 6px;
}

.btn-footer-submit:hover {
    background: #ff9012;
    box-shadow: 0 8px 24px rgba(243, 129, 0, 0.45);
    transform: translateY(-2px);
}

/* Promo Visual Panel Column */
.footer-visual-panel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-visual-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
    z-index: 1;
}

.footer-visual-panel:hover .footer-visual-img {
    transform: scale(1.08);
}

.footer-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 18, 23, 0.95) 0%,
        rgba(17, 18, 23, 0.75) 45%,
        rgba(17, 18, 23, 0.2) 100%
    );
    z-index: 2;
}

.footer-visual-content {
    position: relative;
    z-index: 5;
    padding: 30px;
    width: 100%;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.promo-white {
    color: #ffffff;
}

.promo-orange {
    color: var(--primary-orange);
}

.promo-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #0a0b0d;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom-separator {
    color: rgba(255, 255, 255, 0.12);
    font-size: 12px;
}
/* ==========================================================================
   Responsive Media Queries (Footer, Testimonials, Service Areas, CTA)
   ========================================================================== */

@media (max-width: 1024px) {
    /* Testimonials section */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-section {
        padding: 70px 0;
    }

    /* Service areas section */
    .service-areas-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-areas-map-panel {
        min-height: 320px;
    }

    .service-areas-section {
        padding: 70px 0;
    }

    .map-stat-chip-1 { bottom: 16px; left: 12px; }
    .map-stat-chip-2 { top: 12px; left: 12px; }
    .map-stat-chip-3 { bottom: 16px; right: 12px; }

    /* CTA Banner */
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-banner-actions {
        justify-content: center;
    }

    /* Footer tablet styling */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px 50px 30px;
    }

    .footer-vertical-divider {
        display: none;
    }

    .footer-visual-panel {
        min-height: 320px;
    }

    .footer-bottom-bar {
        margin-top: 40px;
    }
}

/* Smaller mobile viewports */
@media (max-width: 580px) {
    .header-container {
        padding: 0 20px;
    }

    .logo-img {
        height: 75px;
    }

    .hero-container {
        padding: 100px 20px 30px 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }

    .about-container {
        padding: 0 20px;
    }

    .btn-about {
        width: 100%;
        justify-content: center;
    }

    .benefits-pricing-container {
        padding: 0 20px;
    }

    .btn-pricing-cta {
        width: 100%;
        justify-content: center;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-container {
        padding: 0 20px;
    }

    /* Testimonials */
    .testimonials-section-inner {
        padding: 0 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Service areas */
    .service-areas-inner {
        padding: 0 20px;
    }

    .service-areas-map-panel {
        min-height: 260px;
    }

    .map-stat-chip {
        padding: 9px 12px;
    }

    .chip-number {
        font-size: 17px;
    }

    /* CTA Banner */
    .cta-banner-section {
        padding: 60px 20px;
    }

    .btn-cta-banner-primary,
    .btn-cta-banner-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    /* Footer mobile styling */
    .footer-form .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 12px;
    }
}

