/* ==========================================================================
   G TOWING SERVICE - PREMIUM DARK EMERGENCY DESIGN SYSTEM
   Targeted for Speed, Conversion, & Local SEO (Islamabad & Rawalpindi)
   ========================================================================== */

:root {
    --bg-main: #0B0E17;
    --bg-card: #131A29;
    --bg-card-hover: #1A2438;
    --bg-elevated: #1C273D;
    
    --accent-orange: #FF6B00;
    --accent-orange-glow: rgba(255, 107, 0, 0.4);
    --accent-yellow: #FFB700;
    --accent-red: #E63946;
    --whatsapp-green: #25D366;
    
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 107, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --font-heading: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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;
}

/* Typography & Badges */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--text-light);
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-full);
    color: var(--accent-yellow);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

.btn-call-primary {
    background: linear-gradient(135deg, #FF7700 0%, #E65C00 100%);
    color: #FFF;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-call-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 119, 0, 0.6);
}

.btn-emergency-pulse {
    background: linear-gradient(135deg, #FF6B00 0%, #FF3D00 100%);
    color: #FFF;
    padding: 18px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.8);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.btn-emergency-pulse:hover {
    transform: scale(1.03);
}

.btn-whatsapp-hero {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: var(--whatsapp-green);
    padding: 18px 28px;
}

.btn-whatsapp-hero:hover {
    background: var(--whatsapp-green);
    color: #000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

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

.btn-subtext {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

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

/* Header & Top Bar */
.top-bar {
    background: #06080F;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--whatsapp-green);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.top-contacts {
    display: flex;
    gap: 20px;
}

.top-phone, .top-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    transition: var(--transition);
}

.top-phone:hover { color: var(--accent-yellow); }
.top-whatsapp:hover { color: var(--whatsapp-green); }

/* Site Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(237, 90, 30, 0.4));
    transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.04);
}

.logo-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--accent-yellow);
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 4px 0;
    position: relative;
    white-space: nowrap;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.maps-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.maps-badge:hover {
    border-color: #EA4335;
    color: #FFF;
    background: rgba(234, 67, 53, 0.1);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0 100px 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 183, 0, 0.1);
    border: 1px solid rgba(255, 183, 0, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    padding: 18px;
    background: rgba(19, 26, 41, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

.stat-unit {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 4px;
}

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

.guarantee-pills {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

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

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

.hero-live-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(11, 14, 23, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--whatsapp-green);
    animation: blink 1.2s infinite;
}

.live-info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.live-info strong {
    color: var(--text-light);
}

.live-info span {
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: 90px 0;
    background: #0E1320;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: var(--bg-card-hover);
}

.service-image-box {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image-box img {
    transform: scale(1.08);
}

.service-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11, 14, 23, 0.85);
    backdrop-filter: blur(6px);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid var(--border-color);
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
}

.service-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.service-cta {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}

.service-cta:hover {
    color: var(--accent-orange);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1C273D 0%, #111827 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

}

.cta-banner-tag {
    color: var(--accent-yellow);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.cta-banner h2 {
    font-size: 1.8rem;
    margin: 8px 0;
}

.cta-banner p {
    color: var(--text-muted);
}

.btn-call-cta {
    background: var(--accent-orange);
    color: #FFF;
    padding: 16px 30px;
    white-space: nowrap;
}

.btn-call-cta:hover {
    background: #E65C00;
    box-shadow: 0 6px 20px var(--accent-orange-glow);
}

/* Calculator Section */
.calculator-section {
    padding: 90px 0;
    background: var(--bg-main);
}

.calculator-box {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.calc-form {
    margin-top: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-control {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px var(--accent-orange-glow);
}

.calc-result-box {
    background: rgba(28, 39, 61, 0.7);
    border: 1px solid var(--border-color);
    padding: 24px 30px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.result-details {
    display: flex;
    gap: 40px;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.res-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.res-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-light);
}

.highlight-res {
    color: var(--accent-yellow);
}

.btn-whatsapp-calc {
    background: var(--whatsapp-green);
    color: #000;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 800;
    display: inline-block;
    transition: var(--transition);
}

.btn-whatsapp-calc:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Coverage Section */
.coverage-section {
    padding: 90px 0;
    background: #0B0E17;
}

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

.coverage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
}

.city-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.city-pin {
    font-size: 1.5rem;
}

.city-header h3 {
    font-size: 1.4rem;
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list strong {
    color: var(--text-light);
}

.maps-integration-card {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1) 0%, rgba(19, 26, 41, 0.8) 100%);
    border: 1px solid rgba(234, 67, 53, 0.3);
    border-radius: var(--radius-md);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.maps-card-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.maps-card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.maps-card-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-gmaps-link {
    background: #EA4335;
    color: #FFF;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-gmaps-link:hover {
    background: #D33426;
    box-shadow: 0 4px 18px rgba(234, 67, 53, 0.4);
}

/* Gallery Section */
.gallery-section {
    padding: 90px 0;
    background: #0E1320;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-orange);
    color: #FFF;
    border-color: var(--accent-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 14, 23, 0.95) 0%, transparent 70%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-cat {
    color: var(--accent-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 1.05rem;
    margin: 4px 0 10px 0;
}

.view-btn {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFF;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #FFF;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Reviews Section */
.reviews-section {
    padding: 90px 0;
    background: var(--bg-main);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--radius-md);
}

.stars {
    color: var(--accent-yellow);
    margin-bottom: 12px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    flex-direction: column;
}

.reviewer strong {
    font-size: 0.95rem;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: #0E1320;
}

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

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

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

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

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.15) 0%, var(--bg-main) 70%);
    border-top: 1px solid var(--border-highlight);
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.final-cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-call-large {
    background: var(--accent-orange);
    color: #FFF;
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 6px 30px var(--accent-orange-glow);
}

.btn-call-large:hover {
    background: #E65C00;
}

.btn-wa-large {
    background: var(--whatsapp-green);
    color: #000;
    font-size: 1.1rem;
    padding: 18px 36px;
}

.btn-wa-large:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* Footer */
.site-footer {
    background: #06080F;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

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

.footer-maps-link {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

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

.footer-col ul li a:hover {
    color: var(--accent-orange);
}

.phone-display {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.hours-display, .location-display {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-bottom {
    background: #030408;
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Sticky Floating Call Bar */
.floating-call-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 14, 23, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-highlight);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.float-phone {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E65C00 100%);
    color: #FFF;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.float-wa {
    background: var(--whatsapp-green);
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta-banner, .maps-integration-card {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .calc-result-box {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

@media (max-width: 1180px) {
    .maps-badge {
        display: none;
    }
    .main-nav ul {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.84rem;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #0B0E17;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .mobile-toggle {
        display: flex;
    }

    .top-contacts {
        display: none;
    }

    .hero-title {
        font-size: 2.1rem;
    }

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