/* ============================================
   Maps Driving Directions - Global Stylesheet
   Domain: mapsdriving-directions.online
   Theme: Bing Maps Inspired Light Teal
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary Palette */
    --primary: #008373;
    /* Bing Maps Teal */
    --primary-dark: #00665a;
    --primary-light: #00a896;
    --primary-glow: rgba(0, 131, 115, 0.2);

    /* Secondary Palette */
    --secondary: #2b3b55;
    --secondary-light: #eff2f5;

    /* Accent */
    --accent: #f0b429;
    --accent-light: #f7d070;
    --accent-glow: rgba(240, 180, 41, 0.25);

    /* Backgrounds */
    --bg-dark: #ffffff;
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-glass: #ffffff;

    /* Text */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;

    /* Borders */
    --border-subtle: #e2e8f0;
    --border-glow: #cbd5e0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(0, 131, 115, 0.15);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 72px;
    --section-padding: 80px 0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions - Disabled */
    --transition-fast: 0s;
    --transition-base: 0s;
    --transition-slow: 0s;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Ambient Background Elements ---------- */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: none;
}

.ambient-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.ambient-bg .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    left: -5%;
}

.ambient-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1e3a5f 0%, transparent 70%);
    bottom: -5%;
    right: -5%;
}

.ambient-bg .orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.site-brand .brand-highlight {
    color: var(--primary);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-list li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary);
    background: rgba(0, 131, 115, 0.08);
}

.nav-list li a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 168, 132, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(30, 58, 95, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 168, 132, 0.12);
    border: 1px solid rgba(0, 168, 132, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-section h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 168, 132, 0.45);
    color: var(--text-white);
}

.btn-secondary {
    background: #f8f9fa;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* ---------- Section Common ---------- */
.content-section {
    position: relative;
    padding: var(--section-padding);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #000000;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ---------- How-To Section ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Features Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(0, 168, 132, 0.1);
    border: 1px solid rgba(0, 168, 132, 0.15);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Why Bing Section ---------- */
.why-bing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-bing-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.3rem);
    margin-bottom: 20px;
}

.why-bing-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.advantage-list {
    margin-top: 24px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(0, 168, 132, 0.12);
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-top: 2px;
}

.advantage-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-bing-visual {
    position: relative;
}

.map-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.map-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.map-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.map-dot.red {
    background: #ff5f57;
}

.map-dot.yellow {
    background: #ffbd2e;
}

.map-dot.green {
    background: #28ca42;
}

.map-preview-body {
    background: linear-gradient(135deg, #0d2137, #132e4a, #0d3b3a);
    border-radius: var(--radius-md);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-preview-body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(0, 168, 132, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 132, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-route-icon {
    font-size: 3rem;
    z-index: 1;
}

.map-preview-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding: 12px;
    background: rgba(0, 168, 132, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 168, 132, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ---------- Article Layout ---------- */
.article-section {
    padding-top: calc(var(--header-height) + 60px);
}

.article-layout {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.article-body {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
}

.article-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #000000;
}

.article-title .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #000000;
}

.article-lead {
    font-size: 1.12rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.article-body p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    letter-spacing: -0.02em;
}

.article-body h2:first-of-type {
    margin-top: 32px;
}

.article-body h3 {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--primary-light);
}

.article-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.article-image-link {
    display: block;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.article-image-link:hover {
    transform: translateY(-2px);
}

.article-body a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(0, 212, 164, 0.3);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.article-body a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* Article Ordered Steps */
.article-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 24px 0 28px;
}

.article-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 18px 20px 18px 64px;
    margin-bottom: 12px;
    background: rgba(0, 168, 132, 0.04);
    border: 1px solid rgba(0, 168, 132, 0.08);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    transition: all var(--transition-fast);
}

.article-steps li:hover {
    background: rgba(0, 168, 132, 0.07);
    border-color: rgba(0, 168, 132, 0.15);
}

.article-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 16px;
    top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    box-shadow: 0 0 12px var(--primary-glow);
}

/* ---------- FAQ Section ---------- */
.faq-section {
    background: linear-gradient(180deg, transparent, rgba(0, 168, 132, 0.03), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item.active {
    border-color: rgba(0, 168, 132, 0.3);
    box-shadow: 0 0 20px rgba(0, 168, 132, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(0, 131, 115, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, rgba(0, 168, 132, 0.12), rgba(0, 138, 108, 0.05));
    border: 1px solid rgba(0, 168, 132, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 168, 132, 0.08) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5%, 5%);
    }
}

.cta-card h2 {
    position: relative;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.cta-card p {
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-card .btn {
    position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-subtle);
    background: #f8f9fa;
}

.footer-main {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .site-brand {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(0, 168, 132, 0.15);
    border-color: rgba(0, 168, 132, 0.3);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ---------- Scroll Animations - Disabled ---------- */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .why-bing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --section-padding: 56px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100vh;
        background: #ffffff;
        border-left: 1px solid var(--border-subtle);
        padding: 90px 32px 40px;
        transition: right var(--transition-base);
        z-index: 1050;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .nav-list li a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .hero-section {
        padding: 120px 0 70px;
    }

    .article-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .article-body {
        padding: 40px 24px;
    }

    .article-steps li {
        padding-left: 56px;
    }

    .article-steps li::before {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        left: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .site-brand {
        font-size: 1rem;
    }

    .article-title {
        font-size: 28px;
    }

    .article-body {
        padding: 32px 20px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Mobile Nav Overlay ---------- */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-overlay.show {
    display: block;
    opacity: 1;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(0, 131, 115, 0.2);
    color: var(--text-primary);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ---------- Contact Form Styles ---------- */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: #f8f9fa;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 132, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-email-card {
    background: rgba(0, 168, 132, 0.05);
    border: 1px solid rgba(0, 168, 132, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.contact-email-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px;
}