/**
 * Çarşamba Pilot Garage - Main Stylesheet
 * Primary Color: #F55050
 * Modern, Mobile-First, Optimized
 */

/* ===========================================
   CSS VARIABLES
   =========================================== */

:root {
    /* Modern Color Palette */
    --primary-color: #E74C3C;
    --primary-dark: #C0392B;
    --primary-light: #EC7063;
    --primary-lighter: #FADBD8;
    --primary-shadow: rgba(231, 76, 60, 0.15);

    --secondary-color: #1A202C;
    --secondary-light: #2D3748;
    --secondary-lighter: #4A5568;

    --accent-color: #3498DB;
    --accent-dark: #2980B9;

    --text-color: #2D3748;
    --text-secondary: #718096;
    --text-tertiary: #A0AEC0;
    --text-muted: #CBD5E0;

    --border-color: #E2E8F0;
    --border-light: #EDF2F7;
    --border-dark: #CBD5E0;

    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-lighter: #EDF2F7;
    --bg-dark: #1A202C;
    --bg-overlay: rgba(26, 32, 44, 0.85);

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Modern Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */

    /* Modern Spacing */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 5rem;     /* 80px */

    /* Modern Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;

    /* Modern Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ===========================================
   RESET & BASE
   =========================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.011em;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: clamp(20px, 2.5vw, 24px); }
h5 { font-size: clamp(18px, 2vw, 20px); }
h6 { font-size: clamp(16px, 1.5vw, 18px); }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===========================================
   UTILITIES
   =========================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.section-padding-sm {
    padding: var(--spacing-xl) 0;
}

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

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

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

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

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

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

/* ===========================================
   PAGE LOADER
   =========================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===========================================
   BUTTONS
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 12px 28px;
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--font-size-lg);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===========================================
   HEADER
   =========================================== */

.site-header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

/* Top Bar - NO TRANSITION */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
}

.site-header.scrolled .top-bar {
    display: none;
}

.site-header.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--bg-white);
    transition: var(--transition-fast);
}

.top-bar-item:hover {
    color: var(--primary-light);
}

.top-bar-item i {
    font-size: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--bg-white);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    padding: var(--spacing-sm) 0;
    background-color: var(--bg-white);
}

.site-header.scrolled .main-nav {
    padding: var(--spacing-xs) 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    position: relative;
    z-index: 1001;
}

.logo a {
    display: block;
    pointer-events: auto !important;
    cursor: pointer;
    touch-action: manipulation;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
    pointer-events: auto !important;
}

.logo:hover img {
    opacity: 0.8;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}

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

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

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

.nav-link i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--primary-lighter);
    color: var(--primary-color);
}

.nav-cta {
    margin-left: var(--spacing-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: calc(var(--z-sticky) + 1);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;  /* Logo'dan (1001) düşük */
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===========================================
   WHATSAPP FLOAT
   =========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: var(--bg-white);
}

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

/* ===========================================
   FLOATING ACTION BUTTONS
   =========================================== */

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: var(--z-fixed);
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
    transform: translateY(-2px) scale(0.95);
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    color: white;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: floatIn 0.5s ease;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #2980B9 0%, #21618C 100%);
    transform: translateY(-4px) scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: floatIn 0.5s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C3F 100%);
}

/* Google Maps Button */
.maps-btn {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: white;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: floatIn 0.5s ease;
}

.maps-btn i {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.maps-btn:hover {
    background: linear-gradient(135deg, #C5221F 0%, #A91B1B 100%);
}

.maps-btn:hover i {
    color: #FFD700;
}

/* Scroll Top Button */
.scroll-top-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: floatIn 0.5s ease;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

/* ===========================================
   WHATSAPP NAV BUTTON (Header)
   =========================================== */

.whatsapp-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin-left: 16px;
    text-decoration: none;
}

.whatsapp-nav-btn i {
    font-size: 18px;
}

.whatsapp-nav-btn:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C3F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-nav-btn:active {
    transform: translateY(0);
}

/* ===========================================
   ALERTS
   =========================================== */

.alert {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--bg-white);
    border-left: 4px solid;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: var(--z-tooltip);
    animation: slideInRight 0.3s ease;
    transition: opacity var(--transition-base);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-success {
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    border-color: var(--danger);
    color: var(--danger);
}

.alert i {
    font-size: 20px;
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 24px;
}

/* Footer About Column */
.footer-about {
    padding-right: var(--spacing-md);
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--spacing-md);
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 16px;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.3px;
}

/* Footer Quick Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: var(--spacing-xs);
}

.footer-menu a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-size: var(--font-size-sm);
}

.footer-menu a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-menu i {
    font-size: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contact-list li {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    line-height: 1.6;
}

.footer-contact-list i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer-contact-list a,
.footer-contact-list span {
    color: #94a3b8;
    font-size: var(--font-size-sm);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

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

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-bottom-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.footer-bottom-text a:hover {
    color: var(--primary-light);
}

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

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        transition: right var(--transition-base);
        z-index: calc(var(--z-sticky) + 1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding-left: 30px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--spacing-sm);
    }

    .nav-cta .btn {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    /* MOBİL LOGO FİX - Overlay ve mobil menünün üstünde kalmalı */
    .logo {
        z-index: 1030 !important;  /* Mobile menu (1021) üzerinde */
    }

    .nav-content {
        position: relative;
        z-index: 1001;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
        z-index: 999999 !important;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Force visibility on mobile for all floating buttons */
    .phone-btn,
    .whatsapp-btn,
    .maps-btn {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
    }

    /* Scroll to top button only shows when scrolled */
    .scroll-top-btn.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
    }

    .whatsapp-nav-btn {
        padding: 8px 16px;
        font-size: 13px;
        margin-left: 12px;
    }

    .whatsapp-nav-btn span {
        display: none;
    }

    .whatsapp-nav-btn i {
        font-size: 20px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 48px;
    }

    /* Mobil dokunmatik iyileştirmeleri - TÜM TIKLAMA SORUNLARINI ÇÖZER */
    a, button, .btn, input[type="submit"], .floating-btn, .service-card, .gallery-preview-card {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        cursor: pointer !important;
    }

    /* Footer linkleri için */
    footer a {
        display: inline-block !important;
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 8px !important;
    }

    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .section-padding {
        padding: var(--spacing-xl) 0;
    }

    .alert {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    /* MOBİL İÇİN FLOATING BUTONLAR - ZORLA GÖRÜNÜR */
    .floating-buttons {
        bottom: 20px !important;
        right: 8px !important;  /* Sağdan daha az boşluk - tam görünür olsun */
        z-index: 999999 !important;
        display: flex !important;
        position: fixed !important;
    }

    .floating-btn {
        width: 56px !important;
        height: 56px !important;
        font-size: 24px !important;
        display: flex !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .phone-btn,
    .whatsapp-btn,
    .maps-btn {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        display: flex !important;
        position: relative !important;
    }

    .scroll-top-btn.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* ===========================================
   MODERN PAGE HEADER & BREADCRUMB
   =========================================== */

.page-header {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-lighter) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

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

.breadcrumb-separator {
    color: var(--text-tertiary);
    font-size: var(--font-size-xs);
    user-select: none;
}

.breadcrumb-current {
    color: var(--text-color);
    font-weight: 600;
}

/* Modern Page Title */
.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* Page Subtitle/Description */
.page-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: var(--spacing-xl) 0;
    }

    .page-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .page-subtitle {
        font-size: var(--font-size-base);
    }

    .breadcrumb {
        font-size: var(--font-size-xs);
        padding: 0.375rem var(--spacing-sm);
    }
}

/* ===========================================
   PAGE CONTENT SECTIONS
   =========================================== */

.page-content-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--spacing-xl);
    align-items: start;
}

.main-content {
    min-width: 0;
}

.content-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.content-card:hover {
    box-shadow: var(--shadow-md);
}

.page-content {
    line-height: 1.8;
    color: var(--text-color);
}

.page-content h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
}

.page-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.page-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.page-content ul,
.page-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.page-content li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

.page-content a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--primary-lighter);
    transition: var(--transition-fast);
}

.page-content a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-color);
}

.page-content img {
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    max-width: 100%;
    height: auto;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.sidebar-widget {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-dark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-lighter);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: var(--font-size-sm);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: var(--font-size-sm);
}

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

.contact-item span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: var(--spacing-xs);
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    transition: var(--transition-fast);
    position: relative;
}

.quick-links a i {
    font-size: 0.625rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.quick-links a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-xs);
}

.quick-links a:hover i {
    transform: translateX(2px);
}

/* Responsive Page Content */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .page-content-section {
        padding: var(--spacing-2xl) 0;
    }

    .content-card {
        padding: var(--spacing-lg);
    }

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

/* ===========================================
   HOMEPAGE SECTIONS
   =========================================== */

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(245,80,80,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--bg-white);
    max-width: 700px;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--bg-white);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-description {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s both;
}

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

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--bg-white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--bg-white);
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition-base);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
}

/* Section Header */
.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.text-center .section-title::after {
    left: 50%;
}

.text-left .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 0;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 0%, var(--primary-lighter) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition-slow);
    transform: rotate(45deg);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.feature-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--bg-white);
    transition: var(--transition-base);
}

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

.feature-title {
    position: relative;
    z-index: 1;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--bg-white);
    opacity: 0;
    transition: var(--transition-base);
}

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

.service-content {
    padding: var(--spacing-md);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-title a {
    color: var(--secondary-color);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--text-lighter);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

/* Contact Form Widget */
.contact-form-widget {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.form-control {
    width: 100%;
    padding: 12px var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    background-color: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.form-control::placeholder {
    color: var(--text-lighter);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: var(--font-size-lg);
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive Homepage */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }
}
