/* ============================================
   GIRNE ÇEKİCİ - Main Stylesheet
   Responsive, SEO-Optimized, Fast
   ============================================ */

/* CSS Variables */
:root {
    --primary: #f5a623;
    --primary-dark: #e8951a;
    --primary-light: #ffc857;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --light: #f8f9fa;
    --light-2: #eef1f5;
    --border: #e0e0e0;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --danger: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-hook {
    width: 60px;
    height: 120px;
    margin: 0 auto 20px;
    animation: hookSwing 1.5s ease-in-out infinite;
    transform-origin: top center;
}

.hook-svg {
    width: 100%;
    height: 100%;
}

@keyframes hookSwing {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.loader-text {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    transition: var(--transition);
}

#header.scrolled .navbar {
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    color: var(--white);
    z-index: 101;
}

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

.logo-text {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.logo-text strong {
    font-weight: 800;
    color: var(--primary);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(245, 166, 35, 0.15);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 10px;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Animation Scene */
.hero-animation-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    pointer-events: none;
    overflow: hidden;
}

/* Road */
.road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #333;
    border-top: 3px solid #555;
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #f5a623 0px,
        #f5a623 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
    animation: roadMove 1s linear infinite;
}

@keyframes roadMove {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(-60px); }
}

/* Tow Truck Group Animation */
.tow-truck-group {
    position: absolute;
    bottom: 55px;
    left: 50%;
    display: flex;
    align-items: flex-end;
    gap: 0;
    animation: driveIn 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

@keyframes driveIn {
    0% {
        transform: translateX(calc(-50% - 100vw));
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    75% {
        transform: translateX(-50%);
    }
    88% {
        transform: translateX(-48%);
    }
    100% {
        transform: translateX(-50%);
        opacity: 1;
    }
}

.tow-truck {
    width: 220px;
    flex-shrink: 0;
}

.broken-car {
    width: 160px;
    flex-shrink: 0;
}

.chain-svg {
    width: 70px;
    height: 20px;
    flex-shrink: 0;
    margin-bottom: 38px;
    margin-left: -8px;
    margin-right: -8px;
}

.chain-line {
    animation: chainPull 0.5s ease-in-out infinite alternate;
}

@keyframes chainPull {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 13; }
}

/* Warning Light Flash */
.light-flash {
    animation: flashLight 0.6s ease-in-out infinite alternate;
}

@keyframes flashLight {
    0% { opacity: 0.3; fill: #ff6600; }
    100% { opacity: 1; fill: #ffdd00; }
}

/* Hazard Blink */
.hazard-blink {
    animation: hazardBlink 0.8s ease-in-out infinite;
}

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

/* Smoke Animation */
.smoke {
    animation: smokeRise 2s ease-out infinite;
}

.smoke.s1 { animation-delay: 0s; }
.smoke.s2 { animation-delay: 0.7s; }
.smoke.s3 { animation-delay: 1.4s; }

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    20% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translate(-10px, -40px) scale(2.5);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin-bottom: 220px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #25d366;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.hero h1 {
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.5s both;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title-main::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 16px auto;
    border-radius: 2px;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 2px;
}

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
    animation: fadeInDown 0.8s ease-out 0.7s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-header h2 strong {
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

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

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 166, 35, 0.15);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

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

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-illustration svg {
    width: 100%;
    max-width: 500px;
}

/* Floating icons animation */
.float-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

.fi1 { animation-delay: 0s; }
.fi2 { animation-delay: 0.5s; }
.fi3 { animation-delay: 1s; }
.fi4 { animation-delay: 1.5s; }

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--dark);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.8;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content h2 strong {
    color: var(--primary-dark);
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.about-features li svg {
    flex-shrink: 0;
}

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

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

.why-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(245, 166, 35, 0.15);
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition);
}

.why-card:hover .why-number {
    color: rgba(245, 166, 35, 0.3);
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(0,0,0,0.6);
    font-size: 1.05rem;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
    list-style: none;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cc-phone:hover { border-color: var(--primary); }
.cc-whatsapp:hover { border-color: var(--whatsapp); }

.cc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-phone .cc-icon { background: rgba(245, 166, 35, 0.1); color: var(--primary-dark); }
.cc-whatsapp .cc-icon { background: rgba(37, 211, 102, 0.1); color: var(--whatsapp-dark); }
.cc-location .cc-icon { background: rgba(231, 76, 60, 0.1); color: var(--danger); }
.cc-hours .cc-icon { background: rgba(15, 52, 96, 0.1); color: var(--dark-3); }

.cc-text h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cc-text p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.cc-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 4px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
}

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

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

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

.footer-brand > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-quick a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-contact-quick a:hover {
    color: var(--primary);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer ul a, .footer-area ul li {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-quick {
    font-style: normal;
}

.footer-seo-text {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 30px;
    padding-top: 24px;
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-seo-text strong {
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom p + p {
    margin-top: 5px;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: phonePulse 2s ease-in-out infinite;
}

.call-float:hover {
    transform: scale(1.1);
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(245, 166, 35, 0.6), 0 0 0 10px rgba(245, 166, 35, 0.1); }
}

/* ============================================
   SCROLL ANIMATIONS (reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
        text-align: center;
    }

    .experience-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }

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

    .contact-map {
        height: 300px;
    }

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

    .cta-content {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 220px;
    }

    .hero-animation-scene {
        height: 180px;
    }

    .tow-truck {
        width: 180px;
    }

    .broken-car {
        width: 120px;
    }

    .chain-svg {
        width: 50px;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        margin-bottom: 180px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-animation-scene {
        height: 150px;
    }

    .tow-truck {
        width: 140px;
    }

    .broken-car {
        width: 90px;
    }

    .chain-svg {
        width: 35px;
        margin-bottom: 22px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

    /* Show call button on mobile */
    .call-float {
        display: flex;
    }

    .whatsapp-float {
        bottom: 90px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-content {
        margin-bottom: 150px;
    }

    .hero-animation-scene {
        height: 120px;
    }

    .tow-truck {
        width: 100px;
    }

    .broken-car {
        width: 70px;
    }

    .chain-svg {
        width: 25px;
        margin-bottom: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .contact-card {
        padding: 18px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .tow-truck-group {
        transform: translateX(-50%);
        opacity: 1;
    }
}

/* Print */
@media print {
    .hero-animation-scene,
    .whatsapp-float,
    .call-float,
    #header {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        background: white;
        color: black;
    }

    .hero-title-main, .hero-title-sub {
        color: black;
    }

    .section {
        padding: 30px 0;
    }
}
