/* ============================================
   BEST TOP LOCK LOCKSMITH NYC
   Design System based on Logo Colors:
   - Navy Blue: #1a2744
   - Gold: #c9982e
   - Dark Gold: #a67c1e
   - Light Gold: #f0d78c
   - White: #ffffff
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #0f1a2e;
    --gold: #c9982e;
    --gold-hover: #daa832;
    --gold-dark: #a67c1e;
    --gold-light: #f0d78c;
    --gold-bg: #fdf8ec;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #f0f1f3;
    --gray-200: #e2e4e8;
    --gray-300: #c8cbd1;
    --gray-400: #9a9ea6;
    --gray-500: #6b7080;
    --gray-600: #4a4f5c;
    --gray-700: #333842;
    --text-primary: #1a2744;
    --text-secondary: #4a4f5c;
    --text-light: #6b7080;
    --shadow-sm: 0 1px 3px rgba(26,39,68,0.08);
    --shadow-md: 0 4px 12px rgba(26,39,68,0.1);
    --shadow-lg: 0 8px 30px rgba(26,39,68,0.12);
    --shadow-xl: 0 20px 60px rgba(26,39,68,0.15);
    --shadow-gold: 0 4px 20px rgba(201,152,46,0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

.staging-banner {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7d1f1f 0%, #c9982e 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.staging-banner strong {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.staging-banner span {
    font-size: 14px;
    font-weight: 600;
}

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

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

ul {
    list-style: none;
}

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

body.staging-mode .header.scrolled {
    top: 0;
}

.gold-text {
    color: var(--gold);
}

@media (max-width: 768px) {
    .staging-banner {
        gap: 6px;
        padding: 10px 14px;
    }

    .staging-banner strong,
    .staging-banner span {
        width: 100%;
    }

    .staging-banner span {
        font-size: 13px;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201,152,46,0.35);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--gold-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--navy-dark);
    color: var(--gray-300);
    font-size: 13px;
    padding: 8px 0;
}

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

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

.top-bar-left span,
.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a:hover {
    color: var(--gold);
}

.top-bar-divider {
    color: var(--gray-500);
    margin: 0 4px;
}

.top-bar i {
    color: var(--gold);
    font-size: 11px;
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    border-radius: var(--radius-sm);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.dropdown li a:hover {
    background: var(--gold-bg);
    color: var(--gold-dark);
}

.dropdown li a i {
    width: 18px;
    color: var(--gold);
    text-align: center;
    font-size: 13px;
}

/* Header CTA */
.header-cta .btn-phone {
    padding: 10px 20px;
    font-size: 14px;
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0d1520 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,152,46,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,152,46,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201,152,46,0.15);
    border: 1px solid rgba(201,152,46,0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.hero-stat i {
    font-size: 22px;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,152,46,0.12);
    border-radius: 50%;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.hero-stat span {
    font-size: 13px;
    color: var(--gray-400);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--gold);
    padding: 16px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item i {
    font-size: 16px;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold-bg);
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Services ---------- */
.services {
    padding: 90px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-bg) 0%, rgba(201,152,46,0.12) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: var(--gold-dark);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.service-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* ---------- Why Choose Us ---------- */
.why-us {
    padding: 90px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-feature-icon {
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 14px;
    color: var(--text-light);
}

.why-us-image {
    display: flex;
    justify-content: center;
}

.why-us-image-placeholder {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-us-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(201,152,46,0.2);
    border-radius: calc(var(--radius-xl) - 4px);
}

.why-us-logo {
    width: 65%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    right: -10px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- How It Works ---------- */
.how-it-works {
    padding: 90px 0;
    background: var(--navy);
}

.how-it-works .section-tag {
    background: rgba(201,152,46,0.15);
    color: var(--gold-light);
}

.how-it-works .section-title {
    color: var(--white);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    flex: 1;
    max-width: 300px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    color: rgba(201,152,46,0.08);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    font-size: 30px;
    color: var(--white);
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-connector {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
}

/* ---------- Service Areas ---------- */
.areas {
    padding: 90px 0;
    background: var(--off-white);
}

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

.area-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: block;
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.area-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-bg);
    border-radius: 50%;
    font-size: 22px;
    color: var(--gold-dark);
}

.area-card:hover .area-icon {
    background: var(--gold);
    color: var(--white);
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.area-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---------- Pricing ---------- */
.pricing {
    padding: 90px 0;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.pricing-card.highlighted:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-popular {
    background: var(--gold);
    color: var(--navy-dark);
    text-align: center;
    padding: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 28px 24px;
    text-align: center;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

.pricing-body {
    padding: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-200);
    font-size: 14px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    color: var(--text-secondary);
}

.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    padding: 16px 24px;
    background: var(--gold-bg);
    border-radius: var(--radius-md);
}

.pricing-note i {
    color: var(--gold);
    margin-right: 6px;
}

/* ---------- Reviews ---------- */
.reviews {
    padding: 90px 0;
    background: var(--off-white);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.review-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--navy);
}

.review-author span {
    font-size: 13px;
    color: var(--text-light);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.review-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.review-nav-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dots .dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ---------- Emergency CTA ---------- */
.emergency-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

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

.emergency-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.emergency-content h2 i {
    margin-right: 10px;
}

.emergency-content p {
    font-size: 16px;
    color: var(--navy);
    opacity: 0.85;
}

/* ---------- Blog Preview ---------- */
.blog-preview {
    padding: 90px 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.blog-img {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img-placeholder {
    font-size: 48px;
    color: rgba(201,152,46,0.3);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.blog-body {
    padding: 24px;
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-body h3 a:hover {
    color: var(--gold);
}

.blog-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.6;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    color: var(--gold);
    gap: 10px;
}

/* ---------- Contact ---------- */
.contact {
    padding: 90px 0;
    background: var(--off-white);
}

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

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-tag {
    display: inline-block;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-bg);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--navy);
}

.contact-detail a,
.contact-detail span {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-detail a:hover {
    color: var(--gold);
}

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

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    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(--gold);
    box-shadow: 0 0 0 3px rgba(201,152,46,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}

.form-note i {
    color: var(--gold);
    margin-right: 4px;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 90px 0;
}

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

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: var(--gold-bg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-dark);
    color: var(--gray-300);
    padding: 60px 0 0;
}

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

.footer-logo {
    height: 70px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-credit {
    color: var(--gray-400);
}

.footer-credit a {
    color: var(--gold-light);
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-500);
}

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

/* ---------- Mobile Sticky Bar ---------- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    gap: 10px;
}

.mobile-sticky-btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.estimate-btn {
    background: var(--navy);
    color: var(--white);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

/* ---------- Service Page Template ---------- */
.service-hero {
    position: relative;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 65%, #0d1520 100%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(201,152,46,0.12) 0%, transparent 72%);
    border-radius: 50%;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(201,152,46,0.08) 0%, transparent 74%);
    border-radius: 50%;
}

.service-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 360px;
    gap: 40px;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 13px;
    color: var(--gray-400);
}

.breadcrumbs a {
    color: var(--gray-300);
}

.breadcrumbs a:hover {
    color: var(--gold-light);
}

.breadcrumbs span:last-child {
    color: var(--gold-light);
}

.service-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.service-hero-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

.service-hero-point i {
    color: var(--gold);
    margin-top: 4px;
}

.service-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(201,152,46,0.22);
    box-shadow: var(--shadow-xl);
}

.service-hero-card h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-hero-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.quick-fact-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.quick-fact {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.quick-fact i {
    color: var(--gold);
    margin-top: 4px;
}

.service-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-content-section {
    padding: 90px 0;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.service-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 34px 0 14px;
    line-height: 1.3;
}

.service-content a {
    color: var(--gold-dark);
    font-weight: 700;
}

.service-content a:hover {
    color: var(--gold);
}

.content-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 24px;
}

.content-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-list li::before {
    content: '\f058';
    position: absolute;
    left: 0;
    top: 2px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
}

.service-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 20px;
}

.service-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.service-sidebar-card.alt {
    background: var(--gold-bg);
    border-color: rgba(201,152,46,0.25);
}

.service-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.sidebar-list,
.sidebar-links {
    display: grid;
    gap: 12px;
}

.sidebar-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sidebar-list li i {
    color: var(--gold);
    margin-top: 4px;
}

.sidebar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.sidebar-links a:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .service-hero-inner {
        grid-template-columns: 1fr;
    }

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

    .service-sidebar {
        position: static;
    }

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

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

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

    .pricing-card.highlighted {
        transform: none;
    }

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

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

    .review-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0 50px;
    }

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

    .service-hero-card h2 {
        font-size: 24px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .top-bar {
        display: none;
    }

    .logo-img {
        height: 48px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 16px;
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link.active::after {
        display: none;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 16px;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-inner {
        padding: 50px 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat {
        flex: 1 1 calc(50% - 10px);
    }

    .section-title {
        font-size: 28px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image {
        order: -1;
    }

    .steps-grid {
        flex-direction: column;
        gap: 10px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

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

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

    .review-card {
        min-width: 100%;
    }

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

    .emergency-content h2 {
        font-size: 24px;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .service-hero-card {
        padding: 24px 20px;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    .hero-title {
        font-size: 26px;
    }

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

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

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

    .trust-items {
        gap: 16px;
    }

    .trust-item {
        font-size: 12px;
    }
}
