/* ===================================
   MERCAN YOL YARDIM - MAIN STYLES
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #64748b;
    --danger: #dc2626;
    --danger-dark: #b91c1c;
    --success: #16a34a;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* Text */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Borders */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    
    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 40px -10px rgba(30, 64, 175, 0.4);
    --shadow-danger: 0 10px 40px -10px rgba(220, 38, 38, 0.4);
    --shadow-whatsapp: 0 10px 40px -10px rgba(37, 211, 102, 0.4);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    color: var(--text-dark);
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(30, 64, 175, 0.08);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(30, 64, 175, 0.5);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(220, 38, 38, 0.5);
}

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

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(37, 211, 102, 0.5);
}

.btn-call {
    background: var(--danger);
    color: var(--text-white);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-call:hover {
    background: var(--danger-dark);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.pulse-btn {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

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

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    max-width: 600px;
    padding-top: 40px;
}

/* Hero Visual - Right Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.5);
}

.hero-main-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    border-radius: 24px;
}

.hero-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: glowRotate 10s linear infinite;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-card .floating-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
    color: white;
}

.hero-floating-card .floating-icon.success {
    background: linear-gradient(135deg, var(--success) 0%, #15803d 100%);
}

.hero-floating-card .floating-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.hero-floating-card .floating-icon.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-floating-card .floating-icon svg {
    width: 22px;
    height: 22px;
}

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

.hero-floating-card .floating-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero-floating-card .floating-text {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.3;
}

/* Card Positions */
.card-response {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-customers {
    bottom: 25%;
    right: -30px;
    animation-delay: 1s;
}

.card-service {
    top: 30%;
    left: -40px;
    animation-delay: 0.5s;
}

.card-experience {
    bottom: 5%;
    left: -20px;
    animation-delay: 1.5s;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-description strong {
    color: var(--text-white);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-cta .btn {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-phone {
    margin-top: 16px;
}

.hero-phone a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.hero-phone a:hover {
    color: var(--whatsapp);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ===================================
   TRUST BAR
   =================================== */
.trust-bar {
    background: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    opacity: 1 !important;
    visibility: visible !important;
}

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

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--text-white);
    flex-shrink: 0;
}

.trust-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 12px;
}

/* Tow Truck Illustration Section */
.tow-truck-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    border-radius: var(--radius-xl);
    align-items: center;
    overflow: hidden;
    position: relative;
}

.tow-truck-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.tow-truck-content {
    position: relative;
    z-index: 2;
}

.tow-truck-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tow-truck-content .text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tow-truck-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Tow Truck Illustration */
.tow-truck-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tow-truck-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* SVG Animations */
.truck-body {
    animation: truckBounce 2s ease-in-out infinite;
}

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

.warning-light {
    animation: blink 0.8s ease-in-out infinite;
}

.warning-light-alt {
    animation: blink 0.8s ease-in-out infinite 0.4s;
}

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

.speed-lines line {
    animation: speedMove 1.5s ease-in-out infinite;
}

@keyframes speedMove {
    0% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(-15px); opacity: 0.3; }
    100% { transform: translateX(0); opacity: 0.6; }
}

.sun {
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Illustration Badges */
.illustration-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-top {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 15%;
    left: 5%;
    animation-delay: 1.5s;
}

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

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Services Showcase - Legacy */
.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    align-items: center;
}

.showcase-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.showcase-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 64, 175, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.showcase-feature svg {
    color: var(--success);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--text-white);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   WHY US SECTION
   =================================== */
.why-us {
    padding: var(--section-padding) 0;
}

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

.why-us-content .section-badge {
    margin-bottom: 16px;
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-us-content .section-description {
    text-align: left;
    margin: 0 0 24px;
}

.why-us-list {
    margin-bottom: 32px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-weight: 500;
    color: var(--text-dark);
}

.why-us-list svg {
    color: var(--success);
    flex-shrink: 0;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
    color: var(--text-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-danger);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    line-height: 1.3;
}

/* ===================================
   SERVICE AREAS
   =================================== */
.service-areas {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.area-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

.area-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.area-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(30, 64, 175, 0.02) 100%);
}

.area-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
    color: var(--primary);
}

.area-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.area-card p {
    color: var(--text-gray);
}

.area-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--text-white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    padding-top: 60px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-brand .logo-text {
    color: var(--text-white);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-light);
}

.footer-contact a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

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

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--danger);
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-cta:hover {
    background: var(--danger-dark);
}

/* ===================================
   STICKY FAB BUTTONS
   =================================== */

/* Phone FAB - Right Side */
.fab-phone-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* WhatsApp FAB - Left Side */
.fab-whatsapp-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.fab-phone {
    background: linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
    animation: fab-pulse 2s infinite;
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    animation: fab-pulse-green 2s infinite;
}

.fab:hover {
    transform: scale(1.1);
}

/* Expanded FAB with text */
.fab-expanded {
    width: auto;
    border-radius: 30px;
    padding: 0 20px;
    gap: 10px;
}

.fab-expanded .fab-text {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
}

@keyframes fab-pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 50%, var(--primary-dark) 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.page-header-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

/* ===================================
   SERVICES DETAIL PAGE
   =================================== */
.services-detail {
    padding: var(--section-padding) 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: var(--radius-xl);
    color: var(--primary);
    margin-bottom: 24px;
}

.service-detail-icon.emergency {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: var(--danger);
}

.service-detail-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.service-features h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
}

.service-features ul li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.service-features ul li strong {
    color: var(--text-dark);
}

.service-cta {
    margin-top: 24px;
}

.emergency-cta .btn {
    font-size: 1.1rem;
}

.service-detail-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-section {
    padding: var(--section-padding) 0;
}

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

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--text-gray);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.about-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: var(--section-padding) 0;
}

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

.team-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.team-content .section-badge {
    margin-bottom: 16px;
}

.team-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.team-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.team-contact {
    margin-top: 24px;
}

.about-stats {
    margin-top: 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

.contact-card.highlight {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    border-color: var(--danger);
}

.contact-card.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(37, 211, 102, 0.02) 100%);
    border-color: var(--whatsapp);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card.highlight .contact-card-icon {
    color: var(--danger);
}

.contact-card.whatsapp .contact-card-icon {
    color: var(--whatsapp);
}

.contact-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-card .badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--danger);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-top: 8px;
}

.working-hours h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hours-grid {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .highlight {
    color: var(--success);
    font-weight: 700;
}

.hours-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
}

.contact-map {
    position: relative;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* Contact Areas */
.contact-areas {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-areas .section-header {
    margin-bottom: 40px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    font-weight: 500;
    transition: var(--transition-base);
}

.area-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.area-item.featured {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.area-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.area-item.featured .area-dot {
    background: var(--text-white);
}

