/* MULTİTAŞ NAKLİYAT - Modern CSS Styles */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #6B2E8F;
    --secondary-color: #50C878;
    --accent-color: #FFD93D;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --purple: #6B2E8F;
    --yellow: #FFD93D;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ALERT BANNER === */
.alert-banner {
    padding: 1rem 0;
    position: relative;
    animation: slideDown 0.5s ease;
}

.alert-banner.success {
    background: #d4edda;
    border-bottom: 3px solid #28a745;
}

.alert-banner.error {
    background: #f8d7da;
    border-bottom: 3px solid #dc3545;
}

.alert-banner .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.alert-banner i {
    font-size: 1.5rem;
}

.alert-banner.success i {
    color: #28a745;
}

.alert-banner.error i {
    color: #dc3545;
}

.alert-banner span {
    flex: 1;
    color: #2C3E50;
}

.alert-banner a {
    color: #4A90E2;
    font-weight: bold;
}

.alert-banner .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0 0.5rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === HEADER & NAVIGATION === */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    list-style: none;
    flex-direction: row;
    align-items: center;
}

.nav-menu > li {
    display: inline-block;
    margin: 0;
}

/* Desktop'ta sadece normal menü linkleri */
.nav-menu > li:not(.mobile-only):not(.mobile-divider) {
    display: inline-block;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop'ta ikonları ve chevronları gizle */
.nav-menu a i {
    display: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Mobil menü overlay (default gizli) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 85%;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 10000;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B4FA8 100%);
    color: var(--white);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.mobile-logo i {
    font-size: 1.75rem;
    color: var(--yellow);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.mobile-menu-list a i:first-child {
    font-size: 1.25rem;
    width: 30px;
    color: var(--primary-color);
}

.mobile-menu-list a .fa-chevron-right {
    margin-left: auto;
    font-size: 0.875rem;
    color: #95a5a6;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: linear-gradient(90deg, rgba(107, 46, 143, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
}

.mobile-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 1.5rem;
}

.mobile-quote-btn,
.mobile-call-btn,
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.mobile-quote-btn {
    background: linear-gradient(90deg, rgba(255, 217, 61, 0.15) 0%, transparent 100%);
    color: #2C3E50;
}

.mobile-quote-btn i {
    color: var(--yellow) !important;
}

.badge-new {
    background: var(--yellow);
    color: #2C3E50;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 700;
    margin-left: auto;
}

.mobile-call-btn {
    background: linear-gradient(90deg, rgba(107, 46, 143, 0.15) 0%, transparent 100%);
    color: var(--primary-color);
}

.mobile-call-btn i {
    color: var(--primary-color) !important;
}

.phone-number {
    margin-left: auto;
    font-size: 0.875rem;
    font-weight: 700;
}

.mobile-whatsapp-btn {
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.15) 0%, transparent 100%);
    color: #25D366;
}

.mobile-whatsapp-btn i {
    color: #25D366 !important;
}

.online-badge {
    background: #25D366;
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    margin-left: auto;
}

.mobile-menu-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.mobile-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Facebook - Mavi */
.mobile-social a[aria-label="Facebook"] {
    background: #1877F2;
}

.mobile-social a[aria-label="Facebook"]:hover {
    background: #0d65d9;
}

/* Instagram - Gradient */
.mobile-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mobile-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #d87d2a 0%, #cd5a33 25%, #c31e3a 50%, #b31d5d 75%, #a10f7f 100%);
}

/* Twitter/X - Siyah */
.mobile-social a[aria-label="Twitter"] {
    background: #000000;
}

.mobile-social a[aria-label="Twitter"]:hover {
    background: #1a1a1a;
}

/* LinkedIn - Mavi */
.mobile-social a[aria-label="LinkedIn"] {
    background: #0077B5;
}

.mobile-social a[aria-label="LinkedIn"]:hover {
    background: #006399;
}

.mobile-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #7f8c8d;
    margin: 0;
}

/* Mobile toggle button (desktop'ta gizli) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: #FFD93D;
    color: #2C3E50;
    font-weight: 700;
}

.btn-primary:hover {
    background: #ffc107;
    color: #2C3E50;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: #25D366;
    color: var(--white);
}

.btn-success:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--purple) 0%, #8B3FB8 50%, var(--yellow) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234A90E2" opacity="0.1" width="1200" height="600"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* === STATS SECTION === */
.stats-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--purple) 0%, #8B3FB8 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(255, 217, 61, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(107, 46, 143, 0.4);
}

.stat-icon {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
}

.stat-plus {
    font-size: 2rem;
    color: var(--yellow);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--purple), var(--yellow));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 46, 143, 0.25);
    border-color: var(--purple);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* === WHY CHOOSE SECTION === */
.why-choose-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.why-item p {
    color: var(--text-light);
}

/* === QUICK QUOTE FORM === */
.quick-quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--purple) 0%, #8B3FB8 100%);
}

.quick-quote-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(107, 46, 143, 0.4);
    border: 3px solid var(--yellow);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quote-form-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-form-header h2 i {
    color: var(--purple);
}

.quote-form-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-quote-form .form-group {
    display: flex;
    flex-direction: column;
}

.quick-quote-form .form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-quote-form .form-group label i {
    color: var(--primary-color);
    width: 20px;
}

.quick-quote-form .form-group input,
.quick-quote-form .form-group select {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.quick-quote-form .form-group input:focus,
.quick-quote-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 46, 143, 0.1);
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.form-note {
    background: #FFF3CD;
    border: 2px solid #FFD93D;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-note i {
    color: #856404;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.form-note p {
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.form-note strong {
    color: #664d03;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    position: relative;
    border: 2px solid #f0f0f0;
    border-left: 5px solid var(--yellow);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 217, 61, 0.3);
    border-left-color: var(--purple);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD93D;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* === TRUST BADGES SECTION === */
.trust-badges-section {
    padding: 4rem 0;
    background: var(--white);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(107, 46, 143, 0.05), rgba(255, 217, 61, 0.05));
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.15);
}

.trust-badge i {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.trust-badge h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* === FAQ SECTION === */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--white);
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.2);
}

.faq-item.active {
    border-color: var(--yellow);
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--purple);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question span i:first-child {
    color: var(--yellow);
    font-size: 1.3rem;
}

.faq-question > i {
    font-size: 1.2rem;
    color: var(--purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question > i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
}

.faq-cta p:first-child {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.faq-cta p:nth-child(2) {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--purple) 0%, #8B3FB8 50%, var(--yellow) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === PAGE HEADER === */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* === SERVICE DETAIL === */
.services-detail-section {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-detail-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* === PROCESS SECTION === */
.process-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.process-step p {
    color: var(--text-light);
}

/* === ABOUT SECTION === */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === MISSION VISION === */
.mission-vision-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* === VALUES SECTION === */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--purple));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 217, 61, 0.3);
    border-color: var(--yellow);
}

.value-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
}

/* === TEAM SECTION === */
.team-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    padding: 1rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.team-member p {
    padding: 0 1rem 1.5rem;
    color: var(--text-light);
}

/* === ABOUT STATS === */
.about-stats-section {
    padding: 5rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-stat i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-stat h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: var(--text-light);
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info-side h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info-side > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-details .note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    gap: 1rem;
    transform: translateY(-2px);
}

/* Yol Tarifi Al butonu - Sarı arka plan */
.btn-link[href*="maps.google.com"] {
    background: var(--yellow);
    color: #2C3E50;
}

.btn-link[href*="maps.google.com"]:hover {
    background: #f1c40f;
    color: #2C3E50;
}

/* WhatsApp ile Yaz butonu - Yeşil arka plan */
.btn-link[href*="wa.me"] {
    background: #25D366;
    color: white;
}

.btn-link[href*="wa.me"]:hover {
    background: #128C7E;
    color: white;
}

/* === CONTACT FORM === */
.contact-form-wrapper {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group small {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* === MAP SECTION === */
.map-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* === QUICK CONTACT === */
.quick-contact-section {
    padding: 5rem 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* === FOOTER === */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 i {
    color: var(--yellow);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Facebook - Mavi */
.social-links a[aria-label="Facebook"] {
    background: #1877F2;
}

.social-links a[aria-label="Facebook"]:hover {
    background: #0d65d9;
}

/* Twitter/X - Siyah */
.social-links a[aria-label="Twitter"] {
    background: #000000;
}

.social-links a[aria-label="Twitter"]:hover {
    background: #1a1a1a;
}

/* Instagram - Gradient */
.social-links a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #d87d2a 0%, #cd5a33 25%, #c31e3a 50%, #b31d5d 75%, #a10f7f 100%);
}

/* LinkedIn - Mavi */
.social-links a[aria-label="LinkedIn"] {
    background: #0077B5;
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: #006399;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* === FLOAT BUTTONS === */
/* Telefon butonu (üstte - Desktop) */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 130px;
    right: 30px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #2C3E50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: phoneRing 2s ease-in-out infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.7);
}

/* WhatsApp butonu (altta - Desktop) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

/* Live Chat butonu (sol alt) */
.live-chat-float {
    position: fixed;
    width: 180px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    padding: 0 1.5rem;
    cursor: pointer;
}

.live-chat-float i {
    font-size: 1.5rem;
}

.live-chat-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Chat Badge (Bildirim) */
.chat-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover,
.call-float:hover,
.live-chat-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Back to Top Button with Progress Circle */
.back-to-top {
    position: relative;
}

.back-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.back-to-top .progress-ring-bg {
    opacity: 0.3;
}

.back-to-top i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.back-to-top:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.3) !important;
}

/* Pulse animasyonu WhatsApp için */
@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);
    }
}

/* Phone ring animasyonu */
@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* WhatsApp pulse animasyonu */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === CHAT MODAL === */
.chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.chat-modal.active {
    display: flex;
}

.chat-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

.chat-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.chat-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chat-modal-header i {
    font-size: 3.5rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.chat-modal-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.chat-modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.chat-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-modal-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-modal-btn i {
    font-size: 1.8rem;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--dark-color);
}

.btn-yellow:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.4);
}

.btn-green {
    background: #25D366;
    color: white;
}

.btn-green:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-purple {
    background: var(--purple);
    color: white;
}

.btn-purple:hover {
    background: #5A2677;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    /* Desktop menüyü gizle */
    .nav-menu {
        display: none;
    }

    /* Mobil menü toggle butonunu göster */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobilde header ayarları */
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 10001;
        transition: background 0.3s ease;
    }
    
    /* Mobil menü açıkken header görünümü */
    body:has(.mobile-menu-overlay.active) .header {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    /* Mobil menü açıkken hamburger menü beyaz */
    .mobile-menu-toggle.active span {
        background: var(--white);
    }
    
    /* Mobil menü overlay aktif */
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }

    /* Quick Quote Form Mobile */
    .quick-quote-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-header h2 {
        font-size: 1.8rem;
    }

    /* Float Buttons Mobile */
    .live-chat-float {
        width: 150px;
        height: 50px;
        font-size: 0.9rem;
        left: 15px;
        bottom: 20px;
    }

    /* Mobilde: Telefon üstte, WhatsApp altta */
    .call-float {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        right: 15px;
        bottom: 90px !important;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        right: 15px;
        bottom: 25px !important;
    }

    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 155px !important;
        right: 15px !important;
    }
    
    .back-to-top .progress-ring {
        width: 45px !important;
        height: 45px !important;
    }
    
    .back-to-top .progress-ring circle {
        r: 19;
        cx: 22.5;
        cy: 22.5;
        stroke-width: 2.5;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 20px;
    }

    .call-float {
        bottom: 20px;
    }

    .whatsapp-float {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-card,
    .service-card,
    .value-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-question span i:first-child {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-cta {
        padding: 1.5rem 1rem;
    }

    .faq-cta p:first-child {
        font-size: 1.1rem;
    }

    .faq-contact-buttons {
        flex-direction: column;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Trust Badges Mobile */
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-badge {
        padding: 1rem;
    }

    .trust-badge i {
        font-size: 2rem;
    }

    .trust-badge h4 {
        font-size: 0.95rem;
    }
}

/* === CUSTOMER AVATARS === */
.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Customer Photos */
.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.male-avatar {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.female-avatar {
    background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.customer-photo:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.customer-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
}

/* Avatar Colors */
.avatar-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.avatar-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.avatar-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.avatar-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

/* Hover Effects */
.customer-avatar:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Service Placeholders */
.service-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 15px;
}

.service-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.service-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
}

.service-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    z-index: 1;
    position: relative;
}

/* Service Type Colors */
.home-moving {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.office-moving {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.intercity-moving {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.packaging-service {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.support-service {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.about-company {
    background: linear-gradient(135deg, #6B2E8F 0%, #50C878 100%);
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.company-stats div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
    position: relative;
}

/* Service Icon Colors */
.icon-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.icon-time {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.icon-support {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.icon-package {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}

.icon-office {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.icon-travel {
    background: linear-gradient(135deg, #6B2E8F 0%, #50C878 100%) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .customer-photo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-placeholder {
        height: 250px;
    }
    
    .service-placeholder i {
        font-size: 3rem;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
