:root {
    --primary-color: #FACC15; /* Modern Yellow */
    --primary-hover: #EAB308;
    --bg-dark: #FFFFFF;
    --bg-darker: #F8FAFC;
    --surface: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #334155;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 3rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo span {
    font-weight: 300;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.plate {
    background: #fff;
    color: #000;
    border: 3px solid #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    box-shadow: inset 0 0 0 2px #000;
}

.call-btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.plate-mobile {
    background: #fff;
    color: #000;
    border: 3px solid #000;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.call-btn-mobile, .whatsapp-btn-mobile {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

.call-btn-mobile {
    background: var(--primary-color);
    color: #000 !important;
}

.whatsapp-btn-mobile {
    background: #25D366;
    color: #fff !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(250, 204, 21, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(250, 204, 21, 0.8); }
    100% { transform: scale(1); box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4); }
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.6);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* Image Animations "Çat Diye Düşen Efekt" (Sharp Drop Down) */
.hero-images {
    position: relative;
    height: 550px;
    perspective: 1000px;
}

.img-wrapper {
    position: absolute;
    width: 45%;
    height: 250px; /* Sabit yükseklik, object-fit ile dengeli »*/
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 3px solid rgba(250, 204, 21, 0.8);
    background: #fff;
}

.pos-1 { top: 0; right: 5%; z-index: 4; --target-rot: 5deg; transform: rotate(5deg); }
.pos-2 { top: 15%; left: 0; z-index: 3; --target-rot: -5deg; transform: rotate(-5deg); }
.pos-3 { bottom: 10%; right: 0; z-index: 2; --target-rot: -2deg; transform: rotate(-2deg); }
.pos-4 { bottom: 0; left: 15%; z-index: 1; --target-rot: 3deg; transform: rotate(3deg); }

/* Karmaşık Başlangıç Animasyonları */
.cat-drop {
    opacity: 0;
}

/* Photo 1 (Sağ Üst): Soldan hızla girip oturma (Fly In Left) */
.cat-drop.pos-1.animate {
    animation: flyInLeft 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
    animation-delay: 0.1s;
}

/* Photo 2 (Sol Üst): Yukarıdan çat diye düşme (Sharp Drop) */
.cat-drop.pos-2.animate {
    animation: sharpDrop 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
    animation-delay: 0.3s;
}

/* Photo 3 (Sağ Alt): Merkezden dışarı esneyerek büyüme (Zoom Bounce) */
.cat-drop.pos-3.animate {
    animation: zoomOutReveal 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
    animation-delay: 0.5s;
}

/* Photo 4 (Sol Alt): Aşağıdan yukarı zıplayarak gelme (Slide Up Bounce) */
.cat-drop.pos-4.animate {
    animation: slideUpBounce 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
    animation-delay: 0.7s;
}

@keyframes flyInLeft {
    0% { transform: translateX(-150vw) rotate(var(--target-rot, 5deg)); opacity: 0; }
    60% { transform: translateX(20px) rotate(var(--target-rot, 5deg)); opacity: 1; }
    100% { transform: translateX(0) rotate(var(--target-rot, 5deg)); opacity: 1; }
}

@keyframes sharpDrop {
    0% { transform: translateY(-150vh) rotate(var(--target-rot, -5deg)); opacity: 0; }
    60% { transform: translateY(20px) rotate(var(--target-rot, -5deg)); opacity: 1; }
    80% { transform: translateY(-10px) rotate(var(--target-rot, -5deg)); opacity: 1; }
    100% { transform: translateY(0) rotate(var(--target-rot, -5deg)); opacity: 1; }
}

@keyframes zoomOutReveal {
    0% { transform: scale(0) rotate(var(--target-rot, -2deg)); opacity: 0; }
    70% { transform: scale(1.1) rotate(var(--target-rot, -2deg)); opacity: 1; }
    100% { transform: scale(1) rotate(var(--target-rot, -2deg)); opacity: 1; }
}

@keyframes slideUpBounce {
    0% { transform: translateY(150vh) rotate(var(--target-rot, 3deg)); opacity: 0; }
    60% { transform: translateY(-20px) rotate(var(--target-rot, 3deg)); opacity: 1; }
    100% { transform: translateY(0) rotate(var(--target-rot, 3deg)); opacity: 1; }
}

/* About Section */
.about-content {
    max-width: 800px;
}

/* Services Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.loc-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s, background 0.3s;
}

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

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-main);
}

.loc-card:hover {
    transform: translateY(-5px);
    background: rgba(250, 204, 21, 0.05);
    border-color: rgba(250, 204, 21, 0.2);
}

.loc-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.loc-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Testimonials Section */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-dark {
    color: var(--bg-darker) !important;
}

.vertical-divider {
    height: 60px;
    width: 1px;
    background: var(--bg-darker);
    margin: 2rem auto;
    opacity: 0.3;
}

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

.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    color: #475569;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    border-top: 20px solid #ffffff;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #334155;
    font-weight: 500;
}

.testimonial-author {
    padding-left: 20px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--bg-darker);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(2, 6, 23, 0.7);
    font-weight: 500;
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.05);
}

/* Footer */
.taxi-strip {
    height: 14px;
    width: 100%;
    background: repeating-linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-color) 30px,
        #ffffff 30px,
        #ffffff 60px
    );
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

footer {
    background: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 0.5rem;
}

.logo-footer {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo-footer i {
    color: var(--primary-color);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reveal Animations */
.features-bar {
    background: var(--primary-color);
    padding: 1.5rem 0;
    color: #000;
}

.features-bar-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feat-item i {
    font-size: 1.4rem;
}

/* Stats Section */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.step-card {
    background: var(--surface);
    padding: 3rem 2rem 2rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #000;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(250, 204, 21, 0.4);
    border: 4px solid #fff;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* CTA Banner */
.btn-dark-action {
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-dark-action:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.fa-shake {
    animation: fa-shake 2s infinite ease-in-out;
}

@keyframes fa-shake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(250, 204, 21, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    background: rgba(250, 204, 21, 0.02);
    border-top: 1px solid transparent;
}

.faq-question.active + .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.03);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-images { height: 400px; margin-top: 2rem; }
    .img-wrapper { width: 45%; height: 160px; }
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding-top: 120px; }
}
