/* ================================================================
   BEYLİKDÜZÜ KORSAN TAKSİ - DARK / GOLD THEME (PREMIUM)
   ================================================================ */

/* CSS Variables */
:root {
    /* Colors */
    --clr-bg-base: #0B0F19;      /* Deep Dark Blue/Black */
    --clr-bg-alt: #131A2A;       /* Slightly lighter dark */
    --clr-bg-glass: rgba(19, 26, 42, 0.6);
    
    --clr-gold: #D4AF37;         /* Premium Gold */
    --clr-gold-light: #F3E5AB;
    --clr-gold-glow: rgba(212, 175, 55, 0.3);
    
    --clr-white: #FFFFFF;
    --clr-gray-light: #B0B8C8;
    --clr-gray-dark: #6C7280;

    /* Typograpy */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    
    /* Layout */
    --max-width: 1200px;
    --section-padding: 5rem 1rem;
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--clr-bg-base);
    color: var(--clr-gray-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--clr-white);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.text-gold {
    color: var(--clr-gold);
}

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

.section-padding {
    padding: var(--section-padding);
}

/* ================================================================
   COMPONENTS
   ================================================================ */

/* Custom Buttons */
.btn-primary, .btn-secondary, .btn-call, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold) 0%, #aa8516 100%);
    color: var(--clr-bg-base);
    box-shadow: 0 4px 15px var(--clr-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--clr-gold-glow);
    color: var(--clr-bg-base);
}

.btn-secondary {
    background: rgba(37, 211, 102, 0.1); /* Whatsapp color base */
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-3px);
}

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.site-header.scrolled {
    background: var(--clr-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-glass);
    padding: 0.5rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--clr-white);
}

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

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--clr-gray-light);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-gold);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: visible; /* Changed from hidden for overlap widget */
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    width: 80vw;
    max-width: 600px;
    height: 80vw;
    max-height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.orb-1 { top: -100px; left: -100px; }
.orb-2 { bottom: 100px; right: -100px; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, var(--clr-bg-base) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-gray-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-floating-widget {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--max-width);
    background: rgba(11, 15, 25, 0.85); /* Deep dark with opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
    border-radius: 20px;
    padding: 1.5rem 2rem;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.floating-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    color: var(--clr-white);
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

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

.pulse-wa {
    animation: pulse 2s infinite;
    animation-delay: 1s;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
@keyframes pulse-wa-anim {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pulse-wa { animation: pulse-wa-anim 2s infinite; animation-delay: 1s; }

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-title-wrapper {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--clr-gold);
    margin: 0 auto 1rem auto;
    border-radius: 3px;
}

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
}

.service-card {
    background: var(--clr-bg-alt);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--clr-gold);
    color: var(--clr-bg-base);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.95rem;
    color: var(--clr-gray-light);
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.stat-box .stat-icon {
    font-size: 2.5rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--clr-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 1.5rem;
}

.about-image-wrapper {
    position: relative;
    /* Placeholder for generated image */
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: var(--border-gold);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    overflow: hidden;
}

.about-image-glass {
    background: var(--clr-bg-glass);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: var(--border-glass);
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-text {
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-size: 1.1rem;
}

/* ================================================================
   REGIONS SECTION
   ================================================================ */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.region-card {
    background: var(--clr-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.region-card:hover {
    background: var(--clr-bg-base);
    border-color: var(--clr-gold);
    transform: translateY(-5px);
}

.region-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.region-info p {
    color: var(--clr-gray-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.region-link {
    color: var(--clr-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.region-link:hover {
    gap: 0.8rem;
}

/* ================================================================
   CONTACT CTA SECTION
   ================================================================ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--clr-bg-alt);
    border-radius: 30px;
    padding: 4rem;
    border: var(--border-glass);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-text {
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-item i {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.detail-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-gray-light);
}

.detail-item strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--clr-bg-base);
    padding: 3rem;
    border-radius: 24px;
    border: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-title {
    margin-bottom: 2rem;
    color: var(--clr-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--clr-white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    background: var(--clr-gold);
    color: var(--clr-bg-base);
    padding: 1.2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: var(--clr-white);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: #06090e;
    padding-top: 5rem;
    border-top: var(--border-gold);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    padding: 0 1.5rem 4rem 1.5rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-base);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.footer-links ul {
    display: grid;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.seo-text {
    font-size: 0.85rem;
    color: #555;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    background: #030508;
    color: var(--clr-gray-dark);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ================================================================
   RESPONSIVE DESIGN (All Screen Sizes)
   ================================================================ */

@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-floating-widget {
        bottom: -120px;
    }
    .services-section {
        padding-top: 8rem; /* Space for overlap */
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .floating-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-stat-item {
        justify-content: center;
    }
    .hero-floating-widget {
        position: relative;
        bottom: auto;
        transform: none;
        left: auto;
        width: 100%;
        margin-top: 3rem;
    }
    .services-section {
        padding-top: 5rem;
    }
    .nav-list {
        display: none; /* Implemented in JS for mobile menu */
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--clr-bg-alt);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: var(--border-gold);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .btn-call {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        border-radius: 20px;
        align-items: flex-start;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
