/* Delta Catastrophe Website Styles */

/* ===========================
   RESET & BASE
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #1a1a1a;
    --primary-white: #f0f0f0;
    --dark-gray: #2a2a2a;
    --medium-gray: #333333;
    --light-gray: #666666;
    --very-light-gray: #e0e0e0;
    --off-white: #f5f5f5;
    --border-color: #d0d0d0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
    --orange: #FF6600;
    --orange-dark: #CC5200;
    --orange-light: #FF8533;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--medium-gray);
    background-color: var(--primary-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===========================
   LAYOUT
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* ===========================
   HEADER
   =========================== */

.main-header {
    background-color: var(--off-white);
    color: var(--primary-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

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

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
}

.phone-number a {
    color: var(--primary-black);
    transition: color 0.2s ease;
}

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

.btn-contact {
    background-color: var(--orange);
    color: var(--primary-white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===========================
   NAVIGATION
   =========================== */

.main-nav {
    background-color: var(--dark-gray);
    border-top: 1px solid var(--medium-gray);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li.active > a {
    background-color: var(--primary-black);
    color: var(--orange);
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-gray);
    min-width: 210px;
    z-index: 1001;
    border-top: 3px solid var(--orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 13px 20px;
    color: var(--primary-white);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--medium-gray);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--orange);
    color: var(--primary-white);
    padding-left: 28px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--primary-white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.35);
}

.btn-secondary {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

.btn-secondary:hover {
    background-color: var(--off-white);
    border-color: var(--off-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.btn-outline:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.btn-dark:hover {
    background-color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-strong);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-emergency {
    background-color: var(--orange);
    color: var(--primary-white);
    width: 100%;
    margin-top: 10px;
    border-color: var(--orange);
}

.btn-emergency:hover {
    background-color: var(--orange-dark);
}

/* ===========================
   HERO — HOME
   =========================== */

.hero-home {
    position: relative;
    background-color: var(--primary-black);
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-video-bg,
.section-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.services-video-bg {
    position: relative;
    overflow: hidden;
}

.services-video-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 245, 0.20);
    z-index: 1;
}

.services-video-bg .container {
    position: relative;
    z-index: 2;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(20, 20, 20, 0.52) 55%,
        rgba(40, 40, 40, 0.40) 100%);
    z-index: 1;
}

.hero-home .container {
    position: relative;
    z-index: 2;
}

.hero-home .hero-content {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-home h1 {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--primary-white);
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-home h1 span {
    color: var(--orange);
}

.hero-home .hero-description {
    font-size: 1.15rem;
    color: rgba(240, 240, 240, 0.85);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-home .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===========================
   HERO — GENERIC (inner pages)
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--medium-gray) 100%);
    color: var(--primary-white);
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */

.page-header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--orange);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
    background-color: var(--dark-gray);
    padding: 45px 20px;
    border-bottom: 3px solid var(--orange);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
    gap: 20px;
    text-align: center;
    justify-content: center;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* ===========================
   SECTION HELPERS
   =========================== */

.content-section {
    padding: 80px 20px;
}

.section-label {
    display: block;
    text-align: center;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-black);
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--light-gray);
}

/* ===========================
   SERVICES GRID
   =========================== */

.services-overview {
    padding: 90px 20px;
    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.services-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-3col {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px var(--shadow-strong);
    border-top-color: var(--orange);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--orange);
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--orange);
    color: white;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--primary-black);
}

.service-card p {
    margin-bottom: 22px;
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* ===========================
   SERVICE DETAIL (services page)
   =========================== */

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.service-detail-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}

@media (max-width: 768px) {
    .service-detail-grid-2col {
        grid-template-columns: 1fr;
    }
}

.service-detail {
    background-color: var(--off-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    opacity: 0.6;
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--primary-black);
}

.service-detail p {
    margin-bottom: 20px;
    color: var(--light-gray);
    line-height: 1.75;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 7px 0 7px 28px;
    position: relative;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--orange);
}

/* ===========================
   WHY CHOOSE US
   =========================== */

.why-choose-us {
    padding: 90px 20px;
    background-color: var(--primary-white);
}

.why-choose-photo-bg {
    position: relative;
    background-image: url('/images/HomePageStaticPhoto1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent;
}

.why-choose-photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 0;
}

.why-choose-photo-bg .container {
    position: relative;
    z-index: 1;
}

.storm-photo-bg-1 {
    position: relative;
    background-image: url('/images/StormDamage1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.storm-photo-bg-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

.storm-photo-bg-1 .container {
    position: relative;
    z-index: 1;
}

.storm-photo-bg-2 {
    position: relative;
    background-image: url('/images/StormDamage2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.storm-photo-bg-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

.storm-photo-bg-2 .container {
    position: relative;
    z-index: 1;
}

.commercial-photo-bg-1 {
    position: relative;
    background-image: url('/images/CommercialPhoto1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.commercial-photo-bg-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

.commercial-photo-bg-1 .container {
    position: relative;
    z-index: 1;
}

.commercial-photo-bg-2 {
    position: relative;
    background-image: url('/images/CommercialPhoto2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.commercial-photo-bg-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.20);
    z-index: 0;
}

.commercial-photo-bg-2 .container {
    position: relative;
    z-index: 1;
}

.residential-systems-photo-bg {
    position: relative;
    background-image: url('/images/ResidentialPhoto3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.residential-systems-photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

.residential-systems-photo-bg .container {
    position: relative;
    z-index: 1;
}

.residential-services-photo-bg {
    position: relative;
    background-image: url('/images/ResidentialPhoto2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.residential-services-photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

.residential-services-photo-bg .container {
    position: relative;
    z-index: 1;
}

.residential-intro-photo-bg {
    position: relative;
    background-image: url('/images/ResidentialPhoto1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.residential-intro-photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
    z-index: 0;
}

.residential-intro-photo-bg .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .why-choose-photo-bg,
    .storm-photo-bg-1,
    .storm-photo-bg-2,
    .commercial-photo-bg-1,
    .commercial-photo-bg-2,
    .residential-systems-photo-bg,
    .residential-services-photo-bg,
    .residential-intro-photo-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

/* ===========================
   REAL ESTATE / INSPECTION
   =========================== */

.realestate-section {
    padding: 90px 20px;
    background-color: var(--off-white);
}

.realestate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.realestate-card {
    background: var(--primary-white);
    border-radius: 10px;
    padding: 36px 30px;
    border-top: 4px solid var(--orange);
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.realestate-card-featured {
    background: var(--primary-black);
    color: var(--primary-white);
    border-top: 4px solid var(--orange);
    position: relative;
}

.realestate-featured-label {
    display: inline-block;
    background: var(--orange);
    color: var(--primary-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.realestate-card-icon {
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realestate-card-featured .realestate-card-icon {
    background: rgba(255, 102, 0, 0.2);
}

.realestate-card-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.realestate-card h3 {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin: 0;
}

.realestate-card-featured h3 {
    color: var(--primary-white);
}

.realestate-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.realestate-list li {
    padding-left: 22px;
    position: relative;
    font-size: 0.93rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.realestate-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.realestate-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.realestate-stat {
    border-left: 3px solid var(--orange);
    padding-left: 16px;
}

.realestate-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}

.realestate-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    line-height: 1.4;
}

.btn-orange {
    display: inline-block;
    background: var(--orange);
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.2s ease;
    text-decoration: none;
}

.btn-orange:hover {
    background: var(--orange-dark);
}

.inspection-realestate-photo-bg {
    position: relative;
    background-image: url('/images/inspectionPhoto1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inspection-realestate-photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 0;
}

.inspection-realestate-photo-bg .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .inspection-realestate-photo-bg {
        background-attachment: scroll;
    }
}

.inspection-realestate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.inspection-re-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 4px solid var(--orange);
    border-radius: 10px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.inspection-re-card h3 {
    color: var(--primary-white);
    font-size: 1.2rem;
    margin: 0;
}

.inspection-re-card .realestate-list li {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .inspection-realestate-grid {
        grid-template-columns: 1fr;
    }
}

.realestate-realtor-bar {
    margin-top: 50px;
    background: var(--primary-black);
    border-radius: 10px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.realestate-realtor-text h3 {
    font-size: 1.3rem;
    color: var(--primary-white);
    margin-bottom: 8px;
}

.realestate-realtor-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

@media (max-width: 1024px) {
    .realestate-grid {
        grid-template-columns: 1fr 1fr;
    }

    .realestate-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .realestate-grid {
        grid-template-columns: 1fr;
    }

    .realestate-card-featured {
        grid-column: span 1;
    }

    .realestate-realtor-bar {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 62px;
    height: 62px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.feature p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   VENDOR NETWORK TEASER
   =========================== */

.vendor-teaser {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 90px 20px;
    text-align: center;
}

.vendor-teaser h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.vendor-teaser > .container > p {
    font-size: 1.05rem;
    opacity: 0.82;
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.vendor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.vendor-card {
    background-color: var(--dark-gray);
    padding: 40px 32px;
    border-radius: 8px;
    border-top: 3px solid var(--orange);
    transition: all 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.vendor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--primary-white);
}

.vendor-card p {
    color: rgba(240, 240, 240, 0.68);
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ===========================
   SERVICE AREA
   =========================== */

.service-area-section {
    background-color: var(--off-white);
    padding: 90px 20px;
    text-align: center;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 45px;
    text-align: left;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
    font-size: 0.95rem;
    padding: 8px 0;
}

.area-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===========================
   CTA SECTIONS
   =========================== */

.cta-section {
    background-color: var(--off-white);
    color: var(--primary-black);
    padding: 90px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--light-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background-color: var(--off-white);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-gray);
}

/* ===========================
   SIDEBAR / CONTENT GRID
   =========================== */

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.content-main h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.bullet-list {
    margin: 20px auto;
    max-width: 600px;
    padding-left: 20px;
}

.bullet-list li {
    list-style-type: disc;
    margin-bottom: 10px;
    line-height: 1.8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-box {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: 8px;
}

.highlight-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.highlight-box p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.sidebar-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.fact-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-list strong {
    display: block;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.cta-card {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.cta-card h3 {
    color: var(--primary-white);
}

.cta-card p {
    color: var(--primary-white);
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ===========================
   MISSION & VALUES
   =========================== */

.mission-statement {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.mission-statement h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.values-section {
    margin: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--off-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
    color: var(--orange);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

.commitments-section {
    margin: 60px 0;
}

.commitment-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.commitment-item {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.commitment-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.commitment-item p {
    color: var(--light-gray);
    line-height: 1.8;
}

.vision-section {
    margin: 60px 0;
    text-align: center;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--light-gray);
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonial-section {
    margin: 60px 0;
}

.testimonial-card {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 40px auto;
    border-left: 4px solid var(--orange);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-black);
    text-align: right;
}

/* ===========================
   BENEFITS
   =========================== */

.benefits-section {
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.benefit-card p {
    color: var(--light-gray);
}

/* ===========================
   CONTACT PAGE
   =========================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-black);
}

/* ===========================
   FORMS
   =========================== */

.contact-form {
    margin-top: 30px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--medium-gray);
}

.required {
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* ===========================
   ALERTS
   =========================== */

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.alert-success {
    background-color: var(--off-white);
    border-left: 4px solid var(--orange);
    color: var(--medium-gray);
}

.alert-error {
    background-color: #fff5f5;
    border-left: 4px solid #cc0000;
    color: var(--medium-gray);
}

/* ===========================
   CONTACT INFO CARDS
   =========================== */

.contact-info-card {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.emergency-card {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.emergency-card h3 {
    color: var(--primary-white);
}

.emergency-card p {
    color: var(--primary-white);
    opacity: 0.9;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--medium-gray);
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: bold;
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
}

/* ===========================
   PRIVACY POLICY
   =========================== */

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--medium-gray);
}

.privacy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-content .contact-box {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

/* ===========================
   ATLAS PAGE
   =========================== */

.atlas-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.atlas-logo-block {
    flex-shrink: 0;
}

.atlas-logo-block img {
    max-width: 200px;
    width: 100%;
}

@media (max-width: 768px) {
    .atlas-intro {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ===========================
   SOCIAL ICONS
   =========================== */

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    color: rgba(240, 240, 240, 0.7);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: white;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===========================
   CERTIFICATIONS BAR
   =========================== */

.certifications-bar {
    background-color: var(--primary-white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.cert-track-wrapper {
    overflow: hidden;
    position: relative;
}

/* Fade edges when scrolling */
.cert-track-wrapper.is-scrolling-mode::before,
.cert-track-wrapper.is-scrolling-mode::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.cert-track-wrapper.is-scrolling-mode::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-white), transparent);
}

.cert-track-wrapper.is-scrolling-mode::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-white), transparent);
}

.cert-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 10px 30px;
}

.cert-track.is-static {
    justify-content: center;
    flex-wrap: wrap;
}

.cert-track.is-scrolling {
    width: max-content;
    animation: certScroll 22s linear infinite;
}

.cert-track-wrapper:hover .cert-track.is-scrolling {
    animation-play-state: paused;
}

@keyframes certScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-item img {
    max-height: 70px;
    width: auto;
}

.cert-placeholder {
    border: 2px dashed var(--border-color);
    color: var(--light-gray);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 18px 32px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ===========================
   FOOTER
   =========================== */

.main-footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-white);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section p {
    color: rgba(240, 240, 240, 0.65);
    line-height: 1.8;
    font-size: 0.92rem;
}

.footer-section ul li {
    margin-bottom: 11px;
}

.footer-section ul li a {
    color: rgba(240, 240, 240, 0.65);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--orange);
}

.footer-section ul li strong {
    color: var(--primary-white);
}

.footer-link-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: var(--orange);
    color: var(--primary-white) !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease !important;
}

.footer-link-btn:hover {
    background-color: var(--orange-dark) !important;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(240, 240, 240, 0.5);
    font-size: 0.88rem;
}

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

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

.separator {
    color: rgba(240, 240, 240, 0.25);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .phone-number {
        display: none;
    }

    .btn-contact {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .header-right {
        gap: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-menu > li > a {
        padding: 14px 20px;
    }

    .has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border-top: none;
        background-color: var(--primary-black);
    }

    .dropdown-menu.active {
        display: block;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown:hover .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 35px;
    }

    .hero-home {
        min-height: auto;
        padding: 70px 20px 80px;
    }

    .hero-home h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .vendor-cards {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-home h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .btn-large {
        padding: 13px 28px;
        font-size: 1rem;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   EMERGENCY BAR
   =========================== */

.emergency-bar {
    background-color: var(--orange);
    color: var(--primary-white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    position: relative;
    z-index: 1100;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.emergency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.emergency-bar a {
    color: var(--primary-white);
    text-decoration: underline;
    font-weight: 700;
}

.emergency-bar-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    opacity: 0.8;
    font-family: inherit;
}

.emergency-bar-close:hover {
    opacity: 1;
}

/* ===========================
   TRUST BAR
   =========================== */

.trust-bar {
    background-color: var(--primary-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0 20px;
}

.trust-bar-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-right: 1px solid var(--border-color);
    flex: 1;
    min-width: 0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 17px;
    height: 17px;
    fill: white;
}

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
}

.trust-text span {
    font-size: 0.72rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-stars {
    color: #FFB800;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ===========================
   PROCESS / HOW IT WORKS
   =========================== */

.process-section {
    background-color: var(--primary-black);
    padding: 90px 20px;
    color: var(--primary-white);
}

.process-section .section-label {
    color: var(--orange);
}

.process-section .section-title {
    color: var(--primary-white);
}

.process-section .section-subtitle {
    color: rgba(240, 240, 240, 0.7);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 37px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--orange-dark));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 76px;
    height: 76px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-white);
    border: 4px solid var(--primary-black);
    box-shadow: 0 0 0 3px var(--orange);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-white);
}

.process-step p {
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.62);
    line-height: 1.75;
}

/* ===========================
   TESTIMONIALS (grid version)
   =========================== */

.testimonials-section {
    background-color: var(--off-white);
    padding: 90px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: var(--primary-white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--shadow);
    border-top: 4px solid var(--orange);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.05rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-item blockquote {
    font-size: 0.97rem;
    line-height: 1.82;
    color: var(--medium-gray);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 22px;
    quotes: none;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 13px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-details strong {
    display: block;
    font-size: 0.93rem;
    color: var(--primary-black);
    font-weight: 600;
}

.author-details span {
    font-size: 0.82rem;
    color: var(--light-gray);
}

/* ===========================
   FAQ ACCORDION
   =========================== */

.faq-section {
    background-color: var(--primary-white);
    padding: 90px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: inherit;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    line-height: 1;
    transition: all 0.3s ease;
    color: var(--orange);
    font-weight: 400;
}

.faq-item.active .faq-icon {
    background-color: var(--orange);
    color: white;
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 0 24px;
    color: var(--light-gray);
    line-height: 1.82;
    font-size: 0.96rem;
}

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

/* ===========================
   FLOATING CTA
   =========================== */

.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn {
    background-color: var(--orange);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.93rem;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.floating-cta-btn:hover {
    background-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 102, 0, 0.55);
    color: white;
}

.floating-cta-phone {
    background-color: var(--primary-black);
    color: white;
    padding: 11px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.floating-cta-phone:hover {
    background-color: var(--dark-gray);
    transform: translateY(-2px);
    color: var(--orange);
}

/* ===========================
   SERVICE AREA (dark version)
   =========================== */

.service-area-dark {
    background-color: var(--primary-black);
    padding: 90px 20px;
    color: var(--primary-white);
    text-align: center;
}

.service-area-dark .section-label {
    color: var(--orange);
}

.service-area-dark .section-title {
    color: var(--primary-white);
}

.service-area-dark .section-subtitle {
    color: rgba(240, 240, 240, 0.7);
}

.service-area-dark .area-grid {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.service-area-dark .area-item {
    color: rgba(240, 240, 240, 0.82);
}

.service-area-dark a.area-item {
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-area-dark a.area-item:hover {
    color: var(--orange);
}

.service-area-compact {
    padding: 55px 20px;
}

/* ===========================
   GALLERY
   =========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-placeholder-box {
    background-color: var(--off-white);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===========================
   ABOUT PAGE
   =========================== */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-intro-text h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.about-intro-text p {
    color: var(--light-gray);
    line-height: 1.82;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-box {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 28px 24px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--orange);
}

.about-stat-box .stat-number {
    font-size: 2rem;
    color: var(--orange);
}

.about-stat-box .stat-label {
    font-size: 0.8rem;
    opacity: 0.75;
}

/* ===========================
   ADDITIONAL RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }

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

@media (max-width: 768px) {
    .trust-bar-grid {
        flex-wrap: wrap;
    }

    .trust-item {
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex: 1 1 45%;
        justify-content: center;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .floating-cta {
        bottom: 16px;
        right: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-intro-text h2 {
        font-size: 1.5rem;
    }

    .about-stat-box .stat-number {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .feature {
        padding: 20px 14px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-stat-box {
        padding: 18px 12px;
    }

    .about-stat-box .stat-number {
        font-size: 1.2rem;
    }

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

    .about-intro-grid {
        gap: 30px;
    }
}

/* ===========================
   FORTIFIED HOME SECTION (index)
   =========================== */

:root {
    --fortified-green: #016635;
    --fortified-green-dark: #014d27;
    --fortified-green-light: rgba(1, 102, 53, 0.12);
}

.fortified-home-section {
    background-color: var(--primary-black);
    padding: 90px 20px;
    border-top: 3px solid var(--fortified-green);
    border-bottom: 3px solid var(--fortified-green);
}

.fortified-home-section .section-label {
    color: var(--fortified-green);
    border-color: var(--fortified-green);
}

.fortified-home-section .section-title {
    color: var(--primary-white);
}

.fortified-home-section .lead {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.fortified-home-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: start;
}

.fortified-home-logo-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fortified-home-logo-intro img {
    width: 110px;
    flex-shrink: 0;
}

.fortified-home-logo-intro p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.fortified-home-pdf {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fortified-pdf-embed {
    width: 100%;
    height: 600px;
    border: 2px solid var(--fortified-green);
    border-radius: 8px;
    background: #fff;
}

.fortified-pdf-fallback {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fortified-green);
    text-decoration: underline;
}

.fortified-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.fortified-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--primary-white);
    font-size: 1rem;
    line-height: 1.5;
}

.fortified-benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--fortified-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.fortified-benefit-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.fortified-badge-card {
    background-color: var(--dark-gray);
    border: 2px solid var(--fortified-green);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.fortified-badge-card img {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
}

.fortified-badge-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================
   FORTIFIED PAGE
   =========================== */

.fortified-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
}

.fortified-logo-block {
    background-color: var(--off-white);
    border: 2px solid var(--fortified-green);
    border-radius: 12px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortified-logo-block img {
    max-width: 200px;
    width: 100%;
}

.fortified-insurance-callout {
    background-color: var(--fortified-green);
    color: #fff;
    padding: 70px 20px;
}

.fortified-insurance-callout .section-label {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.4);
}

.fortified-insurance-callout .section-title {
    color: #fff;
}

.fortified-insurance-callout .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.fortified-insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.fortified-insurance-card {
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 32px 28px;
}

.fortified-insurance-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.fortified-insurance-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.fortified-insurance-card--featured {
    background-color: #fff;
    border-color: #fff;
    grid-column: 1 / -1;
}

.fortified-insurance-card--featured h3 {
    color: var(--fortified-green);
    font-size: 1.2rem;
}

.fortified-insurance-card--featured p {
    color: #333;
}

.fortified-tax-credit-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--fortified-green);
    line-height: 1;
    margin-bottom: 12px;
}

.fortified-tax-credit-note {
    font-size: 0.85rem !important;
    color: #666 !important;
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    margin-top: 4px;
}

.fortified-tax-credit-link {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fortified-green);
    border: 1.5px solid var(--fortified-green);
    border-radius: 6px;
    padding: 8px 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.fortified-tax-credit-link span {
    font-weight: 400;
    font-size: 0.8rem;
    color: #888;
}

.fortified-tax-credit-link:hover {
    background-color: var(--fortified-green);
    color: #fff;
}

.fortified-tax-credit-link:hover span {
    color: rgba(255,255,255,0.75);
}

.fortified-tax-credit-link--light {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.fortified-tax-credit-link--light span {
    color: rgba(255,255,255,0.65);
}

.fortified-tax-credit-link--light:hover {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
}

.fortified-tax-credit-link--light:hover span {
    color: rgba(255,255,255,0.8);
}

.fortified-process-section {
    padding: 90px 20px;
    background-color: var(--off-white);
}

.fortified-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fortified-process-step {
    background: var(--primary-white);
    border-radius: 10px;
    padding: 36px 28px;
    border-top: 4px solid var(--fortified-green);
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.fortified-step-number {
    width: 52px;
    height: 52px;
    background-color: var(--fortified-green);
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fortified-process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 12px;
}

.fortified-process-step p {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.fortified-faq-section {
    padding: 90px 20px;
    background-color: var(--primary-white);
}

/* Responsive — FORTIFIED */
@media (max-width: 1024px) {
    .fortified-home-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fortified-home-pdf {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .fortified-pdf-embed {
        height: 500px;
    }

    .fortified-badge-card {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .fortified-logo-block {
        max-width: 300px;
        margin: 0 auto;
    }

    .fortified-process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .fortified-process-grid {
        grid-template-columns: 1fr;
    }

    .fortified-insurance-grid {
        grid-template-columns: 1fr;
    }

    .fortified-pdf-embed {
        height: 400px;
    }

    .fortified-home-logo-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .fortified-insurance-card--featured {
        grid-column: 1;
    }

    .fortified-promo-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/* ===========================
   FORTIFIED PROMO STRIP (residential)
   =========================== */

.fortified-promo-strip {
    background-color: var(--primary-black);
    padding: 60px 20px;
    border-top: 3px solid var(--fortified-green);
    border-bottom: 3px solid var(--fortified-green);
}

.fortified-promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fortified-promo-text {
    flex: 1;
}

.fortified-promo-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-white);
    margin: 12px 0 16px;
}

.fortified-promo-text p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 680px;
}

.fortified-promo-text strong {
    color: var(--primary-white);
}

.fortified-promo-strip .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}
