/*
Theme Name: Emerald Shield Insurance
Theme URI: https://emeraldshield.net
Author: Emerald Shield Insurance Agency Inc.
Author URI: https://emeraldshield.net
Description: A modern, professional WordPress theme for Emerald Shield Insurance Agency — a full-service agency specializing in commercial, business, and life insurance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emerald-shield
Tags: insurance, business, corporate, one-column, custom-menu, featured-images
*/

/* ===== CSS VARIABLES ===== */
:root {
    --emerald: #2E7D32;
    --emerald-dark: #1B5E20;
    --emerald-light: #4CAF50;
    --emerald-pale: #E8F5E9;
    --charcoal: #1a1a2e;
    --dark-gray: #2d2d44;
    --medium-gray: #555;
    --light-gray: #f4f6f8;
    --white: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #555;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: var(--emerald);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--emerald-dark);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}
.btn-outline-dark:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.top-bar a:hover { color: var(--emerald-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar i { margin-right: 6px; color: var(--emerald-light); }

/* ===== HEADER / NAV ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon { width: 48px; height: 48px; }
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--charcoal);
}
.logo-text span { color: var(--emerald); }
.logo-text small {
    font-size: 0.6rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 2px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a,
.nav-links .menu-item a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    position: relative;
    transition: var(--transition);
}
.nav-links a::after,
.nav-links .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links .menu-item a:hover { color: var(--emerald); }
.nav-links a:hover::after,
.nav-links .menu-item a:hover::after { width: 100%; }
.nav-links .current-menu-item a { color: var(--emerald); }
.nav-links .current-menu-item a::after { width: 100%; }

/* WordPress menu reset */
.nav-links ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(46,125,50,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(76,175,80,0.1) 0%, transparent 50%);
}
.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}
.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.page-header .breadcrumb {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    position: relative;
}
.page-header .breadcrumb a { color: var(--emerald-light); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(46,125,50,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(76,175,80,0.1) 0%, transparent 50%);
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-bg-shapes .shape {
    position: absolute;
    border: 1px solid rgba(46,125,50,0.15);
    border-radius: 50%;
}
.hero-bg-shapes .shape:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-bg-shapes .shape:nth-child(2) { width: 300px; height: 300px; bottom: -50px; left: -50px; }
.hero-bg-shapes .shape:nth-child(3) { width: 200px; height: 200px; top: 30%; left: 60%; }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,125,50,0.15);
    border: 1px solid rgba(46,125,50,0.3);
    border-radius: 50px;
    padding: 8px 18px;
    color: var(--emerald-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--emerald-light), #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald-light);
}
.hero-stat p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}
.hero-image-col {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-shield { width: 380px; height: 380px; position: relative; }
.hero-shield::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(46,125,50,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}
.shield-svg { width: 100%; height: 100%; }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}
.trust-item i { font-size: 1.4rem; color: var(--emerald); }

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,125,50,0.15);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--emerald-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--emerald); }
.service-icon i {
    font-size: 1.6rem;
    color: var(--emerald);
    transition: var(--transition);
}
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.service-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--emerald);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== SERVICE DETAIL (individual service sections on Services page) ===== */
.service-detail {
    padding: 80px 0;
}
.service-detail:nth-child(even) {
    background: var(--light-gray);
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}
.service-detail-icon-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--emerald-pale) 0%, #C8E6C9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.service-detail-icon-box::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(46,125,50,0.1);
    top: -30px; right: -30px;
}
.service-detail-icon-box i {
    font-size: 5rem;
    color: var(--emerald);
    opacity: 0.4;
}
.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.service-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.service-feature-item i { color: var(--emerald); font-size: 1rem; }

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image { position: relative; border-radius: 20px; overflow: visible; }
.about-image-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--emerald-pale) 0%, #C8E6C9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-image-box::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(46,125,50,0.1);
    top: -30px; right: -30px;
}
.about-image-box i { font-size: 6rem; color: var(--emerald); opacity: 0.3; }
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--emerald);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-badge h3 { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge p { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }
.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.about-feature i { color: var(--emerald); font-size: 1rem; }

/* ===== TEAM ===== */
.team-section { padding: 80px 0; background: var(--light-gray); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-header .section-subtitle { margin: 0 auto; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--emerald-pale), #C8E6C9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar i { font-size: 4rem; color: var(--emerald); opacity: 0.4; }
.team-info { padding: 24px; }
.team-info h4 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.team-info p { font-size: 0.85rem; color: var(--emerald); font-weight: 600; margin-bottom: 12px; }
.team-info .team-bio { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== VALUES ===== */
.values-section { padding: 80px 0; background: var(--white); }
.values-header { text-align: center; margin-bottom: 60px; }
.values-header .section-subtitle { margin: 0 auto; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    background: var(--light-gray);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--emerald-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.value-icon i { font-size: 1.4rem; color: var(--emerald); }
.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.value-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    color: var(--white);
}
.why-us .section-label { color: var(--emerald-light); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-us-header { text-align: center; margin-bottom: 60px; }
.why-us-header .section-subtitle { margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(46,125,50,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.why-icon i { font-size: 1.4rem; color: var(--emerald-light); }
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 50%, var(--emerald-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::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.05'%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");
}
.cta-banner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
}
.cta-banner .btn {
    position: relative;
    background: var(--white);
    color: var(--emerald-dark);
    font-weight: 700;
}
.cta-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}
.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.contact-info > p { color: var(--text-secondary); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--emerald-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon i { color: var(--emerald); font-size: 1.1rem; }
.contact-detail h5 { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); margin-bottom: 2px; }
.contact-detail p { color: var(--text-secondary); font-size: 0.95rem; }
.contact-detail a { color: var(--emerald); font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--emerald-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    transition: var(--transition);
}
.contact-social a:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FORMS ===== */
.contact-form-box {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px;
}
.contact-form-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.contact-form-box > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== QUOTE FORM FULL PAGE ===== */
.quote-page { padding: 80px 0; background: var(--light-gray); }
.quote-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}
.quote-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.quote-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--emerald-light); padding-left: 4px; }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--charcoal);
    border-bottom: 1px solid #eee;
}
.mobile-nav a:hover { color: var(--emerald); }
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}
.mobile-overlay.active { display: block; }
.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--emerald-dark); transform: translateY(-2px); }

/* ===== MAP ===== */
.map-section { width: 100%; height: 350px; background: #e0e0e0; }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-image-col { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .hero { min-height: 80vh; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .service-features { grid-template-columns: 1fr; }
}
