/* ==========================================================================
   D&G YOL YARDIM - Modern Animated One-Page CSS Design System
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0b0d10;
    --bg-card: rgba(22, 26, 33, 0.75);
    --bg-card-hover: rgba(30, 36, 46, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(230, 0, 0, 0.35);
    
    /* Brand Accents (Matching Red & Shield Logo) */
    --primary-amber: #e60000;
    --primary-orange: #ff3333;
    --accent-green: #00e676;
    --accent-red: #ff0000;
    --accent-blue: #00b4d8;
    
    /* Text Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #ffffff;

    /* Fonts & Radii */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(230, 0, 0, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for mobile floating bar */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

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

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

/* Typography Utilities */
.sub-heading {
    display: inline-block;
    color: var(--primary-amber);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text-main);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #ff3333 60%, var(--primary-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-call-pulse {
    background: linear-gradient(135deg, #e60000, #ff3333);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(230, 0, 0, 0.45);
    position: relative;
}

.btn-call-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 0, 0, 0.6);
}

.btn-hero-call {
    background: linear-gradient(135deg, #e60000 0%, #ff2222 100%);
    color: #ffffff;
    padding: 16px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(230, 0, 0, 0.5);
    animation: pulse-glow 2s infinite;
}

.btn-hero-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(230, 0, 0, 0.7);
}

.btn-hero-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 16px 30px;
    backdrop-filter: blur(10px);
}

.btn-hero-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text .small {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.btn-text .big {
    font-size: 1.1rem;
    font-weight: 800;
}

.btn-full-accent {
    width: 100%;
    background: linear-gradient(135deg, #e60000, #ff3333);
    color: #ffffff;
    font-size: 1.05rem;
    padding: 16px;
    border-radius: var(--radius-sm);
}

.btn-full-accent:hover {
    filter: brightness(1.1);
}

/* Pulse Keyframes */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(230, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
    }
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Top Emergency Bar */
.top-emergency-bar {
    background: #11141a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    padding: 8px 0;
}

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

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.pulse-dot.green {
    background-color: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    animation: beacon 1.5s infinite alternate;
}

@keyframes beacon {
    from { opacity: 0.4; }
    to { opacity: 1; transform: scale(1.2); }
}

.highlight {
    color: var(--primary-amber);
    font-weight: 700;
}

.quick-call-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-amber);
    font-weight: 700;
}

/* Navbar Logo Image */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 16, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    transition: var(--transition);
}

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

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

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-amber);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0 90px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 0, 0, 0.12);
    border: 1px solid rgba(230, 0, 0, 0.35);
    color: #ff3333;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.badge-beacon {
    width: 8px;
    height: 8px;
    background: #ff3333;
    border-radius: 50%;
    animation: beacon 1.2s infinite alternate;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-visual {
    position: relative;
}

.glow-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.glow-box:hover .hero-img {
    transform: scale(1.03);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 20, 28, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(230, 0, 0, 0.4);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-green);
}

.live-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Detailed Invoice & Pricing Styles */
.invoice-breakdown-box {
    background: rgba(14, 18, 25, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 30px;
}

.invoice-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-amber);
    margin-bottom: 16px;
}

.invoice-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.inv-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.inv-row strong {
    color: var(--text-main);
}

.inv-row.highlight-row {
    border-bottom: none;
    padding-top: 10px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.inv-total {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-amber);
}

.invoice-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--accent-green);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

.margin-top-20 {
    margin-top: 20px;
}

/* Calculator Section */
.calc-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0e1218 100%);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.calc-field label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.calc-select {
    width: 100%;
    background: rgba(10, 13, 18, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.calc-select:focus {
    border-color: var(--primary-amber);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.25);
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-slider {
    flex: 1;
    accent-color: var(--primary-amber);
    height: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.range-val {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-amber);
    font-size: 1.1rem;
    min-width: 65px;
}

.calc-result-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(230, 0, 0, 0.06);
    border: 1px dashed rgba(230, 0, 0, 0.4);
    padding: 24px 30px;
    border-radius: var(--radius-md);
    gap: 20px;
}

.res-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.res-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary-amber);
    line-height: 1;
    margin: 4px 0;
}

.res-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-whatsapp-calc {
    background: #25d366;
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-calc:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.1);
    border: 1px solid rgba(230, 0, 0, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    margin-bottom: 24px;
}

.card-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 8px;
    opacity: 0.9;
}

.service-link {
    color: var(--primary-amber);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition);
}

.service-link:hover {
    letter-spacing: 0.5px;
    color: #fff;
}

/* Why Us & Counter Section */
.why-us-section {
    padding: 100px 0;
    background: #090b0e;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feat-icon {
    font-size: 2rem;
    line-height: 1;
}

.feat-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feat-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.counters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.counter-box {
    background: rgba(10, 13, 18, 0.6);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-amber);
}

.counter-unit {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.counter-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.rev-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-amber), var(--primary-orange));
    color: #ffffff;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.rev-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 100px 0;
    background: #0c0f14;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 1.4rem;
    color: var(--primary-amber);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--border-glow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.3s ease-in-out;
}

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

/* CTA Banner Section */
.cta-banner-section {
    padding: 40px 0 80px 0;
}

.cta-banner-box {
    background: linear-gradient(135deg, #220808 0%, #0d0f12 100%);
    border: 2px solid var(--primary-amber);
    padding: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 0 50px rgba(230, 0, 0, 0.25);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
}

.btn-cta-main {
    background: linear-gradient(135deg, var(--primary-amber), var(--primary-orange));
    color: #ffffff;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 25px rgba(230, 0, 0, 0.45);
}

.btn-cta-sub {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.4);
    font-weight: 800;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
}

/* Footer */
.footer {
    background: #060709;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-amber);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-contact-info p {
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.footer-links h4, .footer-seo h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-amber);
}

.tag-cloud span {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Floating Fixed Action Bar */
.floating-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    padding: 10px 16px;
    gap: 12px;
}

@media (min-width: 992px) {
    .floating-mobile-bar {
        display: none;
    }
}

.float-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
}

.float-call {
    background: linear-gradient(135deg, var(--primary-amber), var(--primary-orange));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.45);
}

.float-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 35px auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}
