/* =========================================
   Delaware Locksmith Pro - Main Stylesheet
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-dark: #0d1b2a;
    --secondary-dark: #1a2a3a;
    --accent-orange: #f0a500;
    --accent-orange-hover: #d4920a;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e0e0;
    --text-dark: #222222;
    --text-gray: #666666;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
    --border-radius: 6px;
}

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

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

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

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

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

ul { list-style: none; }

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

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.84rem;
    border-bottom: 2px solid var(--accent-orange);
}

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

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0.9;
}

.top-bar-left a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.top-bar-left i {
    color: var(--accent-orange);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right span {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    margin-right: 4px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

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

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.nav-menu > li > a {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

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

.nav-menu > li > a.active {
    border-bottom: 2px solid var(--accent-orange);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    border-top: 3px solid var(--accent-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

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

.dropdown li a:hover {
    background: var(--light-gray);
    color: var(--accent-orange);
    padding-left: 26px;
}

.dropdown li a i {
    color: var(--accent-orange);
    width: 18px;
}

/* Header CTA Button */
.header-cta {
    background: var(--accent-orange);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(240,165,0,0.35);
}

.header-cta:hover {
    background: var(--accent-orange-hover) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(240,165,0,0.45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

/* =========================================
   PAGE HERO BANNER (for inner pages)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 60%, #1e3a5f 100%);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    position: relative;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--accent-orange);
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb i { font-size: 0.75rem; }

/* =========================================
   HOMEPAGE HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1628 50%, #162640 100%);
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0a500' fill-opacity='0.04'%3E%3Cpath d='M50 50m-20 0a20 20 0 1 1 40 0a20 20 0 1 1-40 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: heroBg 20s linear infinite;
}

@keyframes heroBg {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,165,0,0.15);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-list {
    margin-bottom: 32px;
}

.hero-list li {
    color: rgba(255,255,255,0.88);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.hero-list li i {
    color: var(--accent-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240,165,0,0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 7px 22px rgba(240,165,0,0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Quote Form Box */
.hero-form {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 12px 12px 0 0;
}

.hero-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-form h3 span { color: var(--accent-orange); }

.hero-form p.form-sub {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 22px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(240,165,0,0.12);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit-btn {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,165,0,0.35);
}

/* =========================================
   SECTION STYLES (Common)
   ========================================= */
section { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
    transform: translateY(-50%);
}

.section-label::before { right: calc(100% + 10px); }
.section-label::after { left: calc(100% + 10px); }

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 14px;
}

.section-title h2 span { color: var(--accent-orange); }

.section-title p {
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

.section-title-white h2 { color: var(--white); }
.section-title-white p { color: rgba(255,255,255,0.75); }
.section-title-white .section-label { color: var(--accent-orange); }

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* =========================================
   ABOUT SNIPPET SECTION
   ========================================= */
.about-snippet {
    background: var(--light-gray);
}

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

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

.about-snippet-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.about-snippet-img .img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-heading);
}

.about-snippet-img .img-badge strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-snippet-img .img-badge span {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-feature-item i {
    color: var(--accent-orange);
    width: 22px;
    flex-shrink: 0;
}

/* =========================================
   SERVICES GRID SECTION
   ========================================= */
.services-section {
    background: var(--primary-dark);
}

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

.service-card {
    background: var(--secondary-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: var(--accent-orange);
}

.service-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.service-card-img .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13,27,42,0.85) 100%);
}

.service-card-body {
    padding: 22px 20px;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 14px;
    transition: var(--transition);
}

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

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card-body p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-link {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card-link:hover { gap: 10px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent-orange);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-orange), #ffcc44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.87rem;
    line-height: 1.7;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), #1e3a5f);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =========================================
   EMERGENCY CTA STRIP
   ========================================= */
.emergency-strip {
    background: var(--accent-orange);
    padding: 30px 0;
}

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

.emergency-strip-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.emergency-strip-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.btn-dark {
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    background: var(--white);
}

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

.review-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.review-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 5rem;
    color: var(--accent-orange);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.stars {
    color: #ffc107;
    margin-bottom: 14px;
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
}

.review-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #ffcc44);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange), #d4920a);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--accent-orange);
    padding: 14px 36px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* =========================================
   SERVICE DETAIL PAGE
   ========================================= */
.service-content-section {
    padding: 80px 0;
}

.service-content-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.service-main-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 18px;
    margin-top: 36px;
    line-height: 1.3;
}

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

.service-main-content p {
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: 0.97rem;
}

.service-main-content a.inline-link {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: underline;
}

.service-main-content a.inline-link:hover {
    color: var(--accent-orange-hover);
}

.service-list {
    margin: 20px 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.service-list li i {
    color: var(--accent-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Service Page Image */
.service-page-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 24px 0;
}

.benefit-item {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px 18px;
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 3px 12px rgba(240,165,0,0.15);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--primary-dark);
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

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

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

.faq-item.active .faq-question i { transform: rotate(180deg); }

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Sidebar */
.service-sidebar {}

.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    overflow: hidden;
}

.sidebar-widget-header {
    background: var(--primary-dark);
    padding: 18px 22px;
}

.sidebar-widget-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget-header h3 i { color: var(--accent-orange); }

.sidebar-widget-body { padding: 22px; }

.service-nav-list li {
    border-bottom: 1px solid var(--light-gray);
}

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

.service-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-nav-list li a:hover,
.service-nav-list li a.current {
    color: var(--accent-orange);
    padding-left: 6px;
}

.service-nav-list li a i {
    color: var(--accent-orange);
    width: 20px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-item i {
    color: var(--accent-orange);
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.contact-info-item span {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-info-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.sidebar-cta-btn {
    display: block;
    background: var(--accent-orange);
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 14px;
    transition: var(--transition);
}

.sidebar-cta-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-story {
    background: var(--white);
}

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

.about-story-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 100%);
    padding: 30px 24px 24px;
}

.about-img-overlay-text p {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-story-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.85;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(240,165,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--light-gray);
}

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

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-card-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-dark), #1e3a5f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-orange);
    position: relative;
    overflow: hidden;
}

.team-card-body {
    padding: 22px 18px;
}

.team-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-card-body span {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.team-card-body p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section {
    background: var(--light-gray);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

.contact-form-box {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-box h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form-box p {
    color: var(--text-gray);
    margin-bottom: 28px;
    font-size: 0.93rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    background: var(--white);
    border-radius: 10px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-left: 3px solid var(--accent-orange);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #ffcc44);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-body h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.contact-card-body p,
.contact-card-body a {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-card-body a:hover { color: var(--accent-orange); }

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 24px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-section {
    background: var(--light-gray);
}

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

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

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

.blog-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-card-meta {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px 22px;
}

.blog-date {
    color: var(--text-gray);
    font-size: 0.82rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i { color: var(--accent-orange); }

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-card-body h3 { color: var(--accent-orange); }

.blog-card-body p {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.blog-read-more {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.blog-read-more:hover { gap: 10px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--primary-dark);
    padding: 70px 0 0;
    color: rgba(255,255,255,0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.68);
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a i {
    color: var(--accent-orange);
    font-size: 0.75rem;
}

.footer-links li a:hover {
    color: var(--accent-orange);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--accent-orange);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact-item a { color: rgba(255,255,255,0.68); }
.footer-contact-item a:hover { color: var(--accent-orange); }
.footer-contact-item span { color: rgba(255,255,255,0.68); }

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 0.87rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.68);
}

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

.hours-list li span.day { font-weight: 600; color: rgba(255,255,255,0.85); }
.hours-list li span.time { color: var(--accent-orange); }

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.footer-bottom a { color: var(--accent-orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240,165,0,0.4);
    border: none;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-4px);
}

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

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* =========================================
   TRUST BADGES / QUICK INFO
   ========================================= */
.trust-bar {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-right: 1px solid var(--medium-gray);
}

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

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-orange), #ffcc44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.trust-text span {
    font-size: 0.82rem;
    color: var(--text-gray);
}

/* =========================================
   SECTION BG VARIATIONS
   ========================================= */
.bg-dark { background: var(--primary-dark); }
.bg-light { background: var(--light-gray); }
.bg-white { background: var(--white); }
.bg-orange { background: var(--accent-orange); }

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center { text-align: center; }
.text-orange { color: var(--accent-orange); }
.fw-700 { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* =========================================
   SUCCESS/ERROR MESSAGES
   ========================================= */
.alert {
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 14px;
    display: none;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

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

/* Large Tablets */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 380px; gap: 36px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-content-inner { grid-template-columns: 1fr 300px; gap: 36px; }
    .about-story-inner { grid-template-columns: 1fr; }
    .about-snippet-inner { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.3rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets */
@media (max-width: 768px) {
    .top-bar-left { flex-direction: column; gap: 6px; }
    .top-bar-inner { justify-content: center; text-align: center; }

    .hamburger { display: flex; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        gap: 2px;
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
        right: 0;
    }

    .nav-menu > li { width: 100%; }

    .nav-menu > li > a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px;
        border-bottom: 1px solid var(--light-gray);
        font-size: 0.95rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--accent-orange);
        margin-left: 16px;
        display: none;
        min-width: unset;
    }

    .nav-menu > li.open .dropdown { display: block; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-form { max-width: 500px; margin: 0 auto; }
    .hero-content h1 { font-size: 2rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:nth-child(2) { border-right: none; }

    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; }

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

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

    .emergency-strip-inner { flex-direction: column; text-align: center; }

    .page-hero h1 { font-size: 1.8rem; }
    section { padding: 60px 0; }

    .section-title h2 { font-size: 1.7rem; }
    .cta-section h2 { font-size: 1.9rem; }

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

/* Mobile */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero { padding: 50px 0; min-height: auto; }
    .top-bar { padding: 8px 0; }
    .top-bar-left { gap: 8px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
    .hero-btns { flex-direction: column; }
    .section-title h2 { font-size: 1.5rem; }
    .trust-grid { grid-template-columns: 1fr; }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-overlay.active { display: block; }

/* Mobile menu close button */
.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .nav-close { display: block; }
}
