:root {
    --primary-gold: #c8aa4a;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --text-light: #f0f0f0;
    --text-gray: #a0a0a0;
    --accent-orange: #ff6b35;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    line-height: 1.6;
}

.container {
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 0;
}

.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

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

/* Dil Butonu Stili */
.lang-switch {
    background: rgba(200, 170, 74, 0.15);
    border: 1px solid rgba(200, 170, 74, 0.4);
    border-radius: 30px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 12px;
    color: var(--primary-gold);
}

.lang-switch:hover {
    background: rgba(200, 170, 74, 0.3);
    border-color: var(--primary-gold);
}

.lang-switch i {
    font-size: 14px;
}

.nav-favicon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200, 170, 74, 0.4);
    transition: var(--transition);
}

.nav-favicon:hover {
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.highlight-gold {
    color: var(--primary-gold);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.75) 0%, rgba(10, 10, 10, 0.7) 100%),
    url('/images/backround.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 170, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: -0.5px;
    text-align: center;
}

.hero-desc {
    color: rgba(240, 240, 240, 0.9);
    font-size: 18px;
    max-width: 620px;
    line-height: 1.75;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.hero-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-phone-btn,
.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    white-space: nowrap;
}

.hero-phone-btn {
    background: linear-gradient(135deg, rgba(200, 170, 74, 0.15) 0%, rgba(200, 170, 74, 0.08) 100%);
    border: 1px solid rgba(200, 170, 74, 0.35);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(200, 170, 74, 0.15);
}

.hero-phone-btn:hover {
    background: linear-gradient(135deg, rgba(200, 170, 74, 0.25) 0%, rgba(200, 170, 74, 0.15) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.hero-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.hero-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.features h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 170, 74, 0.05) 100%);
    border: 1px solid rgba(200, 170, 74, 0.2);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(200, 170, 74, 0.15) 0%, rgba(200, 170, 74, 0.05) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 56px;
    height: 56px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-gold);
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== 10 MINUTES SECTION ==================== */
.minutes-section {
    background: var(--dark-bg);
    padding: 60px 20px;
}

.minutes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 50px;
    align-items: center;
}

.minutes-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c8aa4a 100%);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(200, 170, 74, 0.3);
    flex-shrink: 0;
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--darker-bg);
    line-height: 1;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--darker-bg);
    letter-spacing: 1px;
}

.minutes-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.minutes-subtitle {
    font-size: 16px;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.minutes-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.price-guarantee {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-guarantee p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== CARS SECTION ==================== */
.cars-section {
    background: rgba(200, 170, 74, 0.05);
    padding: 50px 20px;
    border-top: 1px solid rgba(200, 170, 74, 0.2);
    border-bottom: 1px solid rgba(200, 170, 74, 0.2);
}

.cars-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 170, 74, 0.2);
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.car-card:hover {
    background: rgba(200, 170, 74, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.car-image {
    font-size: 100px;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--dark-bg);
    padding: 80px 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 170, 74, 0.05) 100%);
    border: 1px solid rgba(200, 170, 74, 0.2);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(200, 170, 74, 0.15) 0%, rgba(200, 170, 74, 0.05) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-15px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-gold);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.reviews h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 170, 74, 0.05) 100%);
    border: 1px solid rgba(200, 170, 74, 0.2);
    padding: 36px 32px;
    border-radius: 16px;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

.stars {
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 15px;
}

.review-author img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.review-date {
    color: var(--text-gray);
    font-size: 13px;
    display: block;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(200, 170, 74, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.review-cta {
    text-align: center;
    margin-top: 36px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 170, 74, 0.25);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.google-review-btn:hover {
    background: rgba(200, 170, 74, 0.15);
    border-color: var(--primary-gold);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 80px 20px;
    background: var(--darker-bg);
    border-top: 1px solid rgba(200, 170, 74, 0.1);
}

.faq h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(200, 170, 74, 0.04) 100%);
    border: 1px solid rgba(200, 170, 74, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
    user-select: none;
}

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

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-gold);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

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

.faq-answer {
    padding: 16px 24px 22px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.85;
    border-top: 1px solid rgba(200, 170, 74, 0.12);
}

.faq-answer strong {
    color: var(--text-light);
    font-weight: 600;
}

/* ==================== AREAS SECTION ==================== */
.areas {
    padding: 60px 20px;
}

.map-container {
    max-width: 900px;
    margin: 30px auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-container iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c8aa4a 100%);
    color: var(--darker-bg);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 170, 74, 0.3);
}

.areas h2 {
    font-size: 40px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 900;
}

.areas-intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-gray);
    font-size: 15px;
}

.area-list {
    max-width: 1000px;
    margin: 0 auto;
}

.area-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.area-row a {
    color: var(--text-light);
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(200, 170, 74, 0.1);
}

.area-row a:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
}

.areas .faq-answer {
    text-align: center;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(200, 170, 74, 0.2);
    padding: 32px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-content p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
}

.by-kamil {
    font-size: 11px;
    color: #666;
    font-weight: 400;
    margin-top: 4px;
}

.footer-seo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
}

.footer-seo span {
    color: rgba(200, 170, 74, 0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--primary-gold);
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ==================== STICKY MOBILE NAV ==================== */
.sticky-mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(7, 9, 18, 0.98);
    border-top: 1px solid rgba(200, 170, 74, 0.15);
    z-index: 99998;
    backdrop-filter: blur(10px);
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-light);
    flex: 1;
    font-size: 13px;
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.sticky-btn.call {
    background: linear-gradient(135deg, rgba(200, 170, 74, 0.15) 0%, rgba(200, 170, 74, 0.08) 100%);
    border: 1px solid rgba(200, 170, 74, 0.3);
}

/* ==================== MARQUEE ==================== */
.marquee {
    overflow: hidden;
    background: var(--primary-gold);
    padding: 13px 0;
    width: 100%;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--darker-bg);
    white-space: nowrap;
}
.msep {
    color: rgba(10, 10, 10, 0.32);
    font-size: 1rem;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 44px; }
    .feature-grid, .services-grid, .cars-grid { grid-template-columns: repeat(2, 1fr); }
    .minutes-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .minutes-badge { margin: 0 auto; }
    .minutes-content h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-top: 1px solid rgba(200, 170, 74, 0.2);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex !important; }
    .sticky-mobile-nav { display: flex; }
    .nav-favicon { margin-left: auto; margin-right: 12px; }
    
    .hero { padding: 30px 16px 50px; background-attachment: scroll; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .hero-phone-btn, .hero-whatsapp-btn { width: 100%; max-width: 320px; }
    
    .features { padding: 50px 16px; }
    .features h2 { font-size: 24px; margin-bottom: 30px; }
    .feature-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .minutes-section { padding: 40px 16px; }
    .minutes-content h2 { font-size: 22px; }
    
    .cars-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .car-image { font-size: 48px; }
    
    .services { padding: 50px 16px; }
    .services h2 { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .reviews { padding: 50px 16px; }
    .reviews h2 { font-size: 24px; }
    .review-card { padding: 24px 20px; }

    .faq { padding: 50px 16px; }
    .faq h2 { font-size: 24px; margin-bottom: 30px; }
    .faq-question { font-size: 15px; padding: 16px 18px; }
    .faq-answer { padding: 14px 18px 18px; font-size: 14px; }

    .areas { padding: 40px 16px; }
    .areas h2 { font-size: 24px; }
    .area-row a { padding: 8px 14px; font-size: 13px; }
    
    footer { padding: 24px 16px; }
    .footer-content { flex-direction: column; gap: 16px; }
    .footer-left { align-items: center; text-align: center; }
    .footer-seo { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-phone-btn, .hero-whatsapp-btn { font-size: 13px; padding: 10px 14px; }
    .car-image { font-size: 40px; }
    .marquee-item { font-size: 0.75rem; padding: 0 20px; }
}
/* ==================== GECE/GUNDUZ GECIS ==================== */
body {
    transition: background-color 1s ease, color 1s ease;
}

body.day-mode {
    --dark-bg: #fff8e1;
    --darker-bg: #ffecb3;
    --text-light: #3e2000;
    --text-gray: #7a4f00;
    --accent-orange: #e65100;
    --primary-gold: #a05500;
}

body.day-mode .navbar {
    background: linear-gradient(135deg, #e65100 0%, #ff8f00 100%);
    box-shadow: 0 4px 20px rgba(230, 81, 0, 0.25);
    transition: background 1s ease, box-shadow 1s ease;
}

body.day-mode .logo-main {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 1s ease;
}

body.day-mode .logo-sub {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transition: color 1s ease;
}

body.day-mode .nav-links a {
    color: #fff;
    transition: color 1s ease;
}

body.day-mode .nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

body.day-mode .hamburger span {
    background-color: #fff;
    transition: background-color 1s ease;
}

body.day-mode .hero {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.82) 0%, rgba(255, 236, 179, 0.78) 100%),
        url("/images/backround.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background 1s ease;
}

body.day-mode .hero-desc {
    color: rgba(62, 32, 0, 0.85);
    transition: color 1s ease;
}

body.day-mode .hero-phone-btn {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.12) 0%, rgba(230, 81, 0, 0.06) 100%);
    border-color: rgba(230, 81, 0, 0.4);
    color: #3e2000;
    transition: background 1s ease, border-color 1s ease, color 1s ease;
}

body.day-mode .feature-card,
body.day-mode .service-card {
    background: linear-gradient(135deg, rgba(255, 243, 205, 0.9) 0%, rgba(255, 236, 179, 0.6) 100%);
    border-color: rgba(230, 81, 0, 0.2);
    transition: background 1s ease, border-color 1s ease;
}

body.day-mode .marquee {
    background: #ff8f00;
    transition: background 1s ease;
}

body.day-mode .marquee-item {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: color 1s ease;
}

body.day-mode .faq-item {
    background: #fff3cd;
    border-color: #ffe082;
    transition: background 1s ease, border-color 1s ease;
}

body.day-mode .faq-question {
    color: #3e2000;
    transition: color 1s ease;
}

body.day-mode footer {
    background: #ffecb3;
    border-top-color: #ffe082;
    transition: background 1s ease, border-color 1s ease;
}

body.day-mode .sticky-bottom-nav {
    background: rgba(255, 248, 225, 0.98);
    border-top-color: #ffe082;
    transition: background 1s ease, border-color 1s ease;
}

body.day-mode .sticky-bottom-nav a {
    color: #7a4f00;
    transition: color 1s ease;
}

body.day-mode .sticky-bottom-nav a:hover,
body.day-mode .sticky-bottom-nav a.active {
    color: #e65100;
}

.sun-mode-icon {
    font-size: 16px;
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
