/* ============================================
   AirCargo911 - Premium Emergency Cargo Website
   Award-Winning Design | $50k Agency Quality
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    /* Emergency Color Palette */
    --emergency-red: #DC2626;
    --emergency-red-dark: #B91C1C;
    --urgent-orange: #F97316;
    --urgent-orange-dark: #EA580C;
    --critical-yellow: #FBBF24;
    --navy-blue: #1E3A8A;
    --navy-blue-dark: #1E40AF;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: 1rem;
}

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

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

/* === CONTAINER === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-emergency {
    background: var(--emergency-red);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: pulse-btn 2s infinite;
}

.btn-emergency:hover {
    background: var(--emergency-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.375rem 2.75rem;
    font-size: 1.15rem;
}

.btn-block {
    width: 100%;
}

.btn-activate {
    background: var(--navy-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-activate:hover {
    background: var(--navy-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Alternative button styles for contact options */
.btn-whatsapp-alt,
.btn-call-alt,
.btn-email-alt {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 0.375rem;
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp-alt {
    background: #25D366;
    color: var(--white);
}

.btn-call-alt {
    background: var(--emergency-red);
    color: var(--white);
}

.btn-email-alt {
    background: var(--gray-700);
    color: var(--white);
}

/* === ANIMATIONS === */
@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-2xl);
    font-weight: 700;
    font-size: 0.95rem;
    animation: pulse-btn 2s infinite, float 3s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.whatsapp-float i {
    font-size: 1.75rem;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.05);
    box-shadow: 0 30px 60px -15px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
}

/* === EMERGENCY ALERT BANNER === */
.emergency-banner {
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: slideDown 0.5s ease;
}

.emergency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.emergency-banner-content i {
    animation: pulse 1.5s infinite;
}

.emergency-banner-content strong {
    color: var(--critical-yellow);
}

@media (max-width: 768px) {
    .emergency-banner {
        font-size: 0.75rem;
    }
    
    .emergency-banner-content {
        gap: 0.5rem;
    }
}

/* === NAVIGATION === */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emergency-red);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--emergency-red);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-dropdown .nav-link i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-normal);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 240px;
    max-height: 500px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem 0;
    list-style: none;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    border: 1px solid var(--gray-200);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-header {
    padding: 0.5rem 1.25rem;
    color: var(--emergency-red);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.5rem 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem 0.65rem 2rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.dropdown-menu a::before {
    content: '→';
    position: absolute;
    left: 1.25rem;
    opacity: 0;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--gray-50) 0%, transparent 100%);
    color: var(--emergency-red);
}

.dropdown-menu a:hover::before {
    opacity: 1;
    left: 1rem;
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition-normal);
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 81px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 81px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        border: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
    }

    .dropdown-menu a:hover {
        padding-left: 2rem;
    }

    .dropdown-menu a:hover::before {
        left: 1rem;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(220, 38, 38, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.highlight-911 {
    color: var(--critical-yellow);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Response Timer */
.response-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.timer-icon {
    font-size: 3rem;
    color: var(--critical-yellow);
    animation: pulse 1.5s infinite;
}

.timer-content {
    text-align: left;
}

.timer-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.timer-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--critical-yellow);
}

.timer-unit {
    font-size: 1rem;
    font-weight: 700;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--critical-yellow);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .response-timer {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
    
    .timer-content {
        text-align: center;
    }
}

/* === QUOTE FORM SECTION === */
.quote-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.emergency-pulse {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 15px;
    height: 15px;
    background: var(--critical-yellow);
    border-radius: 50%;
    animation: pulse-btn 2s infinite;
}

.form-header h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.response-guarantee {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.response-guarantee i {
    color: var(--critical-yellow);
    animation: pulse 1.5s infinite;
}

/* Form Styles */
.emergency-form {
    padding: 2.5rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--emergency-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emergency-red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Submit Options */
.form-submit-options {
    margin-top: 2rem;
}

.alternative-contact {
    margin-top: 2rem;
    text-align: center;
}

.or-divider {
    display: block;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1rem;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 120px);
    height: 1px;
    background: var(--gray-300);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Status */
.live-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .emergency-form {
        padding: 1.5rem 1rem;
    }
    
    .form-header {
        padding: 2rem 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
}

/* === SECTION STYLES === */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* === WHY US SECTION === */
.why-us {
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--emergency-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.emergency {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--emergency-red);
}

.feature-icon.critical {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    color: var(--urgent-orange);
}

.feature-icon.deployment {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 64, 175, 0.1));
    color: var(--navy-blue);
}

.feature-icon.global {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    color: #10B981;
}

.feature-icon.coordinator {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.1));
    color: #9333EA;
}

.feature-icon.tracking {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(220, 38, 38, 0.1));
    color: var(--urgent-orange-dark);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

.feature-card p strong {
    color: var(--emergency-red);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* === STATS SECTION === */
.stats-section {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-dark));
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--critical-yellow);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 900;
    color: var(--critical-yellow);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* === SERVICES SECTION === */
.services {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

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

.service-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

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

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

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-badge.critical {
    background: var(--emergency-red);
    color: var(--white);
}

.service-badge.urgent {
    background: var(--urgent-orange);
    color: var(--white);
}

.service-badge.priority {
    background: var(--critical-yellow);
    color: var(--gray-900);
}

.service-badge.humanitarian {
    background: #10B981;
    color: var(--white);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    border-radius: 0.75rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-features li i {
    color: #10B981;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--emergency-red), var(--urgent-orange));
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-number {
    order: 3;
}

.timeline-item:nth-child(even) .timeline-icon {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-number {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
    align-self: center;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 0 0 10px var(--white), 0 0 0 12px var(--gray-200);
    z-index: 1;
}

.timeline-content {
    align-self: center;
}

.timeline-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.timeline-content > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.timeline-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--gray-700);
}

.timeline-connector {
    display: none;
}

.timeline-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: 1rem;
}

.timeline-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.timeline-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item:nth-child(even) .timeline-number,
    .timeline-item:nth-child(even) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-content {
        order: initial;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-number {
        font-size: 3rem;
        order: 1;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        order: 1;
        grid-row: 1 / 3;
    }
    
    .timeline-content {
        order: 2;
    }
    
    .timeline-buttons {
        flex-direction: column;
    }
    
    .timeline-buttons .btn {
        width: 100%;
    }
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--critical-yellow);
    font-size: 1rem;
}

.testimonial-badge {
    background: linear-gradient(135deg, var(--emergency-red), var(--urgent-orange));
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === FINAL CTA SECTION === */
.final-cta {
    background: linear-gradient(135deg, var(--navy-blue), var(--emergency-red));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-emergency-icon {
    font-size: 4rem;
    color: var(--critical-yellow);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

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

.mini-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--critical-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mini-stat span {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-contact-info {
    margin-top: 2rem;
}

.emergency-number {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.emergency-number i {
    color: var(--critical-yellow);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .cta-stats-mini {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .emergency-number {
        font-size: 1.125rem;
        padding: 0.875rem 1.5rem;
    }
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

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

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-emergency {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(220, 38, 38, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--emergency-red);
}

.footer-emergency i {
    color: var(--emergency-red);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.footer-emergency strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.footer-emergency a {
    color: var(--critical-yellow);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    transition: var(--transition-normal);
}

.footer-col ul li a:hover {
    color: var(--emergency-red);
    padding-left: 5px;
}

.contact-methods li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-methods i {
    color: var(--emergency-red);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--emergency-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    font-size: 0.9rem;
}

.footer-bottom-content a {
    color: var(--gray-400);
}

.footer-bottom-content a:hover {
    color: var(--emergency-red);
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--critical-yellow);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1280px) {
    :root {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* === BLOG HERO === */
.blog-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
    padding: 8rem 0 4rem;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L50,10 L100,5 L150,15 L200,8 L250,12 L300,6 L350,14 L400,9 L450,11 L500,7 L550,13 L600,10 L650,8 L700,12 L750,9 L800,14 L850,7 L900,11 L950,8 L1000,13 L1050,9 L1100,12 L1150,7 L1200,10 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x bottom;
    background-size: 1200px 120px;
    opacity: 0.1;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-hero p {
    color: var(--gray-100);
    font-size: 1.25rem;
}

/* === BLOG SECTION === */
.blog-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* === BLOG CARDS === */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-category {
    background: var(--emergency-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--gray-900);
    transition: color var(--transition-fast);
}

.blog-card h2 a:hover {
    color: var(--emergency-red);
}

.blog-excerpt {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--emergency-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.blog-read-more:hover {
    gap: 1rem;
}

/* === BLOG POST PAGE === */
.blog-post {
    padding: 6rem 0 4rem;
    margin-top: 120px;
    background: var(--white);
}

.blog-post-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.back-to-blog:hover {
    background: var(--gray-100);
    color: var(--emergency-red);
    gap: 0.75rem;
}

.blog-post-header .blog-category {
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === BLOG CONTENT === */
.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-left: 4px solid var(--emergency-red);
    border-radius: 4px;
}

.blog-post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--navy-blue);
}

.blog-post-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--navy-blue-dark);
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content a {
    color: var(--emergency-red);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition-fast);
}

.blog-post-content a:hover {
    text-decoration-color: var(--emergency-red);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
}

.blog-post-content strong {
    font-weight: 700;
    color: var(--gray-900);
}

.blog-post-content blockquote {
    border-left: 4px solid var(--urgent-orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-700);
}

/* === BLOG CTA === */
.blog-cta {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
    color: var(--white);
}

.blog-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--gray-200);
    margin-bottom: 2rem;
}

/* === BLOG NAVIGATION === */
.blog-navigation {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-navigation .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.blog-navigation .nav-link:hover {
    background: var(--emergency-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--emergency-red) 0%, var(--urgent-orange) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* === RESPONSIVE BLOG STYLES === */
@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 3rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post {
        padding: 4rem 0 2rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content .lead {
        font-size: 1.15rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-navigation {
        flex-direction: column;
    }
    
    .blog-navigation .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .blog-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   LOCATION PAGES STYLES
   ============================================ */

.location-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #dc2626 100%);
    padding: 10rem 0 6rem;
    margin-top: 120px;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 58, 138, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.location-hero-content {
    position: relative;
    z-index: 2;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-badge i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.location-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.location-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0 4rem;
    flex-wrap: wrap;
}

.location-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.location-stats .stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.location-stats .stat i {
    font-size: 2.5rem;
    color: var(--critical-yellow);
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.location-stats .stat span {
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
}

.location-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.location-services .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.location-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emergency-red) 0%, var(--urgent-orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.location-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
    border-color: var(--emergency-red);
}

.location-services .service-card:hover::before {
    transform: scaleX(1);
}

.location-services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--emergency-red) 0%, var(--urgent-orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.location-services .service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.location-services .service-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.location-services .service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: var(--gray-700);
    font-weight: 500;
}

.service-features i {
    color: var(--emergency-red);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.coverage-area {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.coverage-column {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.coverage-column:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.coverage-column h3 {
    color: var(--navy-blue);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.coverage-column h3 i {
    color: var(--emergency-red);
    font-size: 1.2rem;
}

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

.coverage-column li {
    padding: 0.65rem 0 0.65rem 1.75rem;
    position: relative;
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.coverage-column li:hover {
    color: var(--emergency-red);
    padding-left: 2rem;
}

.coverage-column li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--emergency-red);
    font-weight: bold;
    font-size: 1.1rem;
}

.why-johannesburg {
    padding: 5rem 0;
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    padding-top: 4rem;
}

.why-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 60px;
    height: 60px;
    background: var(--emergency-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.why-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.location-cta-section {
    background: linear-gradient(135deg, var(--emergency-red) 0%, var(--urgent-orange) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.location-cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.location-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: var(--white);
    color: var(--emergency-red);
}

.btn-secondary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .location-hero {
        padding: 8rem 0 4rem;
    }

    .location-stats {
        gap: 1.5rem;
    }

    .location-stats .stat i {
        font-size: 1.5rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }
}
