:root {
    --charcoal: #2c3e50;
    --white: #ffffff;
    --beige: #f5f1e8;
    --emerald:rgba(108, 55, 155, 0.87);
    --gold: #d4af37;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}



h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--light-gray);
}

.section-beige {
    background-color: var(--beige);
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--emerald);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-gold {
    background-color: var(--gold);
}

.btn-gold:hover {
    background-color: #c19b2a;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--emerald);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--emerald);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--emerald);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    color: var(--white);
    overflow: hidden;
}

.hero-redesign .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-redesign .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 104, 96, 0.92) 0%, rgba(44, 62, 80, 0.78) 50%, rgba(167, 46, 204, 0.15) 100%);
}

.hero-redesign .hero-shine {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(74, 40, 100, 0.2), transparent);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
}



.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    opacity: 0.95;
    max-width: 560px;
    line-height: 1.65;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-trust i {
    color: var(--emerald);
    font-size: 1rem;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.35);
}

.btn-hero:hover {
    box-shadow: 0 12px 32px rgba(46, 204, 113, 0.45);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-cta {
    flex: 0 0 380px;
    position: relative;
}

.hero-cta-inner {
    background: rgba(255, 255, 255, 0.98);
    padding: 42px 36px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: var(--charcoal);
    border-left: 4px solid var(--gold);
    position: relative;
}

.hero-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.hero-cta h3 {
    color: var(--charcoal);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.hero-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: var(--dark-gray);
    opacity: 1;
}

.phone-number {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 1.25rem;
    display: block;
    letter-spacing: 0.5px;
}

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

.btn-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}

.free-estimate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: var(--charcoal);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

/* Hero V2 - Unique centered layout */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    color: var(--white);
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(53, 28, 63, 0.75) 0%, rgba(94, 36, 91, 0.92) 100%);
}

.hero-v2-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(136, 33, 140, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-v2-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    border-right: 2px solid rgba(212, 175, 55, 0.35);
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.hero-v2-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-v2-main {
    flex: 1;
    max-width: 600px;
}

.hero-v2-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-v2-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-v2-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-v2-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    opacity: 0.7;
}

.hero-v2-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 1.5rem;
}

.hero-v2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-v2-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-v2-badges i {
    color: var(--emerald);
}

.hero-v2-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.btn-hero-v2 {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--emerald);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
}

.btn-hero-v2:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 204, 113, 0.5);
}

.hero-v2-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.hero-v2-phone i {
    font-size: 1rem;
}

.hero-v2-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    color: var(--white);
}

.hero-v2-cta {
    flex-shrink: 0;
}

.hero-v2-cta-card {
    width: 320px;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.hero-v2-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.hero-v2-cta-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-v2-cta-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hero-v2-cta-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-gold-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.btn-gold-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.45);
    color: var(--charcoal);
}

/* Hero V3 - Centered, bold, single-CTA */
.hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.hero-v3-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-v3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(108, 55, 155, 0.87) 0%, rgba(107, 78, 139, 0.94) 60%, rgba(134, 45, 150, 0.97) 100%);
}

.hero-v3-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-v3-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.hero-v3-inner {
    padding: 48px 40px 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
}

.hero-v3-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.25rem;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 100px;
}

.hero-v3-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-v3-line1 {
    display: block;
    margin-bottom: 0.15em;
}

.hero-v3-line2 {
    display: block;
}

.hero-v3-title em {
    font-style: normal;
    color: rgba(108, 55, 155, 0.87);
    position: relative;
}

.hero-v3-title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-v3-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-v3-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-v3-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-v3-pills i {
    color: var(--emerald);
}

.hero-v3-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-v3-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: var(--emerald);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.hero-v3-btn-primary:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(46, 204, 113, 0.5);
    color: var(--white);
}

.hero-v3-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.hero-v3-btn-phone:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    color: var(--white);
}

.hero-v3-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.hero-v3-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-v3-scroll-hint i {
    font-size: 0.7rem;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Why Choose Us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 3rem;
}

.service-content {
    padding: 25px;
}

/* Services Section - One image + list layout */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.services-image {
    flex: 0 0 42%;
    position: relative;
    min-height: 520px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.7), transparent);
    pointer-events: none;
}

.services-content {
    flex: 1;
    padding: 48px 48px 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 0.75rem;
}

.services-section .services-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.services-section .services-content h2::after {
    left: 0;
    transform: none;
}

.services-intro {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition);
    align-items: flex-start;
}

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

.service-item:hover {
    padding-left: 8px;
}

.service-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.service-item-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--charcoal);
}

.service-item-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.55;
}

/* Service Areas */
.service-areas-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.service-areas-img {
    flex: 1;
    height: 400px;
    background-color: var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
}

.service-areas-content {
    flex: 1;
}

.areas-list {
    columns: 2;
    column-gap: 40px;
    margin-top: 20px;
}

.areas-list li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.areas-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:hover {
    background-color: var(--medium-gray);
}

.faq-answer {
    padding: 0 20px;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

/* Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 10px;
    color: var(--emerald);
    width: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-v2 {
    position: relative;
    background: linear-gradient(180deg, #1a252f 0%, var(--charcoal) 20%);
    padding: 0 0 0;
}

.footer-top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.footer-cta-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--charcoal);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px 40px;
    margin-bottom: 0;
    padding: 56px 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-about {
    max-width: 340px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--emerald);
}

.footer-col p {
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--emerald);
    padding-left: 4px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: var(--transition);
}

.footer-contact-item:last-of-type {
    border-bottom: none;
}

.footer-contact-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(46, 204, 113, 0.2);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-item:hover i {
    background: var(--emerald);
    color: var(--white);
}

.footer-bottom {
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-v2 .copyright {
    text-align: center;
    padding: 0;
    border: none;
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
        max-width: 100%;
    }

    .hero h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-cta {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .hero-v2-container {
        flex-direction: column;
        gap: 50px;
    }

    .hero-v2-main {
        text-align: center;
        max-width: 100%;
    }

    .hero-v2-title {
        font-size: 2.6rem;
    }

    .hero-v2-highlight::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }

    .hero-v2-badges {
        justify-content: center;
    }

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

    .hero-v2-cta {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-v2-cta-card {
        width: 100%;
    }

    .hero-v3-inner {
        padding: 40px 28px 48px;
    }

    .hero-v3-actions {
        flex-direction: column;
    }

    .hero-v3-btn-primary,
    .hero-v3-btn-phone {
        width: 100%;
        justify-content: center;
    }

    .service-areas-container {
        flex-direction: column;
    }

    .service-areas-img {
        width: 100%;
        height: 300px;
    }

    .services-wrap {
        flex-direction: column;
    }

    .services-image {
        flex: none;
        min-height: 320px;
    }

    .services-content {
        padding: 40px 32px;
    }
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0 0 25px 0;
    }

    .hero {
        padding: 140px 0 80px;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-v2 {
        padding: 140px 0 80px;
    }

    .hero-v2-title {
        font-size: 2.2rem;
    }

    .hero-v2-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-v2-actions {
        flex-direction: column;
    }

    .hero-v2-phone {
        width: 100%;
        justify-content: center;
    }

    .hero-v3 {
        padding: 120px 16px 70px;
    }

    .hero-v3-inner {
        padding: 32px 20px 40px;
        border-radius: 20px;
    }

    .hero-v3-tag {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .hero-v3-scroll-hint {
        bottom: 20px;
        font-size: 0.7rem;
    }

    .footer-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

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

    .footer-container {
        padding: 40px 16px 32px;
        gap: 36px;
    }

    .footer-about {
        max-width: 100%;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .areas-list {
        columns: 1;
    }

    .services-image {
        min-height: 280px;
    }

    .services-content {
        padding: 32px 24px;
    }

    .service-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .service-item-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

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

    .hero-cta-inner {
        padding: 32px 24px;
    }

    .hero-v2-title {
        font-size: 1.85rem;
    }

    .hero-v2-cta-card {
        padding: 28px 24px;
    }

    .hero-v3-inner {
        padding: 28px 16px 36px;
    }

    .hero-v3-title {
        font-size: 1.95rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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



.equip-image-box {
    height: 250px;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    background: #e6f2ff;
}

.equip-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




.map-embed-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-embed-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}




