/*
Theme Name: Cantur Transport Premium
Theme URI: https://canturglobal.com
Author: Aksel
Author URI: https://canturglobal.com
Description: Modern Premium taşımacılık teması - Cantur Global için hazırlanmıştır
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cantur
*/

/*
Theme Name: Cantur Transport Premium
Version: 3.0
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-blue: #0071BC;
    --secondary-blue: #005a94;
    --dark-gray: #1a1a1a;
    --medium-gray: #4A4A4A;
    --light-gray: #f8f9fa;
    --white: #FFFFFF;
    
    /* New Colors */
    --success-green: #10B981;
    --whatsapp-green: #25D366;
    --warning-orange: #F59E0B;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-red: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0071BC 0%, #005a94 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4FF 0%, #0071BC 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --gradient-orange: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    --gradient-pink: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    --gradient-cyan: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    --gradient-sunset: linear-gradient(135deg, #F59E0B 0%, #EC4899 50%, #8B5CF6 100%);
    --gradient-ocean: linear-gradient(135deg, #06B6D4 0%, #0071BC 50%, #8B5CF6 100%);
    --gradient-fire: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 8px 32px rgba(0, 113, 188, 0.25);
    --shadow-green: 0 8px 32px rgba(16, 185, 129, 0.3);
    --shadow-orange: 0 8px 32px rgba(245, 158, 11, 0.3);
    --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.3);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animated Background Pattern */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 113, 188, 0.03) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.08;
}

.shape-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: float 6s ease-in-out infinite;
}

.shape-square {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-secondary);
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid;
    border-bottom-color: var(--primary-blue);
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-blob-1 {
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    animation: morph 10s ease-in-out infinite, float 6s ease-in-out infinite;
}

.shape-blob-2 {
    width: 250px;
    height: 250px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 113, 188, 0.04) 100%);
    animation: morph 12s ease-in-out infinite, float 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Particle Dots */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Gradient Lines */
.gradient-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.gradient-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
    opacity: 0.2;
    animation: lineMove 4s linear infinite;
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: 32px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 40px;
    border-radius: 32px 32px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 40px;
}

.quick-quote-form input,
.quick-quote-form select,
.quick-quote-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    transition: var(--transition-fast);
    background: var(--light-gray);
    margin-bottom: 20px;
}

.quick-quote-form input:focus,
.quick-quote-form select:focus,
.quick-quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 113, 188, 0.1);
}

.quick-quote-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.quick-quote-form label i {
    color: var(--primary-blue);
    margin-right: 8px;
    width: 16px;
}

.submit-whatsapp {
    width: 100%;
    padding: 18px;
    background: var(--gradient-whatsapp);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.submit-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.submit-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.submit-whatsapp i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.submit-whatsapp span {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.header-top {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    opacity: 0.95;
}

.contact-info a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.header-main {
    padding: 12px 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    transition: var(--transition);
}

.logo {
    flex-shrink: 0;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    text-transform: uppercase;
    white-space: nowrap;
}

nav ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.1) 0%, rgba(0, 90, 148, 0.05) 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 35%;
    right: 35%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover::before {
    opacity: 1;
}

nav ul li a:hover::after,
nav ul li.current_page_item a::after,
nav ul li.current-menu-item a::after {
    transform: scaleX(1);
}

nav ul li a:hover,
nav ul li.current_page_item a,
nav ul li.current-menu-item a {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Menu item icons */
nav ul li a i {
    font-size: 13px;
    opacity: 0.75;
    transition: all 0.3s ease;
}

nav ul li a:hover i,
nav ul li.current_page_item a i,
nav ul li.current-menu-item a i {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 50, 100, 0.45) 0%, rgba(0, 71, 148, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s ease infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.15);
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

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

.btn {
    display: inline-block;
    padding: 18px 48px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 113, 188, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    position: relative;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 113, 188, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 500px;
    height: 500px;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.1) 0%, rgba(0, 90, 148, 0.05) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-colored);
}

.service-icon i {
    font-size: 48px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* Fleet Section */
.fleet-section {
    padding: 120px 0;
    background: var(--white);
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.fleet-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.fleet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
    z-index: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.fleet-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 113, 188, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.fleet-item:hover::before {
    opacity: 1;
}

.fleet-item:hover::after {
    opacity: 1;
    animation: pulse 2s ease infinite;
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 113, 188, 0.2);
}

.fleet-item:hover img {
    transform: scale(1.2) rotate(2deg);
}

.fleet-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--white);
    padding: 32px;
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.fleet-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fleet-info p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 113, 188, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    font-size: 16px;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 12px;
    background: var(--gradient-primary);
    color: var(--white);
}

.about-text .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.about-image:hover img {
    transform: translate(-8px, -8px);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    margin-bottom: 24px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--light-gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 113, 188, 0.1);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info-box {
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.info-text p {
    font-size: 15px;
    color: var(--medium-gray);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    right: 32px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.sticky-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.sticky-btn:hover::before {
    width: 200px;
    height: 200px;
}

.sticky-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sticky-btn.phone {
    background: var(--gradient-primary);
}

.sticky-btn.location {
    background: var(--gradient-dark);
}

.sticky-btn:active {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-content[style] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 576px) {
    .footer-content[style] { grid-template-columns: 1fr !important; }
}

.footer-section h3 {
    margin-bottom: 28px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.85;
    font-size: 15px;
}

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

.footer-section ul li {
    margin-bottom: 14px;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-section ul li:hover {
    opacity: 1;
    transform: translateX(6px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section ul li i {
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom p {
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .services-grid,
    .fleet-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .slide-content p {
        font-size: 18px;
    }
    
    .btn {
        padding: 16px 36px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .fleet-gallery {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image::before {
        top: -12px;
        right: -12px;
    }

    .header-top .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .sticky-buttons {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card,
    .contact-info-box {
        padding: 32px 24px;
    }
    
    .services-section,
    .fleet-section,
    .about-section,
    .contact-section {
        padding: 80px 0;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* ===== V3 FIXES ===== */

/* Service card image hover */
.service-card:hover img { transform: scale(1.08) !important; }
.service-card a { text-decoration: none; color: inherit; }

/* Gallery hover */
.gallery-item:hover .gallery-hover-overlay,
.gallery-item:hover .gallery-overlay { opacity: 1 !important; }
.gallery-item:hover img { transform: scale(1.08) !important; }
.gallery-item { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl) !important; }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; top:0;left:0;right:0;bottom:0; background: rgba(0,0,0,0.5); z-index: 998; backdrop-filter: blur(4px); }
.mobile-overlay.active { display: block; }

/* Hamburger animation */
.hamburger-line { width: 28px; height: 3px; background: var(--dark-gray); border-radius: 3px; transition: all 0.3s ease; display: block; }
.mobile-menu-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Sticky contact bar */
.sticky-contact-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; z-index: 9999; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.sticky-contact-bar.visible { transform: translateY(0); }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 20px; color: white; text-decoration: none; font-weight: 700; font-size: 16px; transition: all 0.3s ease; }
.sticky-btn i { font-size: 22px; }
.sticky-btn-phone { background: linear-gradient(135deg, #0071BC 0%, #0091EA 100%); }
.sticky-btn-phone:hover { background: linear-gradient(135deg, #005fa0 0%, #007bd4 100%); }
.sticky-btn-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.sticky-btn-whatsapp:hover { background: linear-gradient(135deg, #1fbd5a 0%, #0f7a6e 100%); }

@media (min-width: 769px) {
    .sticky-contact-bar { bottom: 24px; left: auto; right: 24px; width: auto; max-width: 420px; border-radius: 60px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
    .sticky-btn { padding: 16px 28px; font-size: 15px; }
}

/* ===== MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
    /* Sticky bar mobil */
    .sticky-contact-bar { box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
    .sticky-btn { padding: 16px 12px; font-size: 14px; }
    footer { padding-bottom: 70px !important; }
    
    /* Mobile nav - slide from right */
    .mobile-menu-toggle { display: flex !important; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
    nav ul {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 85% !important;
        max-width: 360px !important;
        height: 100vh !important;
        background: #fff !important;
        flex-direction: column !important;
        padding: 100px 32px 32px !important;
        box-shadow: -8px 0 32px rgba(0,0,0,0.15) !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        gap: 0 !important;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    nav ul.active {
        transform: translateX(0) !important;
    }
    nav ul li { padding: 0 !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
    nav ul li a { display: block !important; padding: 18px 0 !important; font-size: 17px !important; border-radius: 0 !important; }
    nav ul li a::before, nav ul li a::after { display: none !important; }
    nav ul li a:hover { transform: none !important; }
    nav ul li:last-child > a {
        background: var(--gradient-primary) !important;
        color: white !important;
        border-radius: 12px !important;
        text-align: center !important;
        margin-top: 16px !important;
        padding: 16px !important;
    }
    
    /* Page headers */
    .page-header h1 { font-size: 36px !important; }
    
    /* About section */
    .about-content { flex-direction: column !important; }
    .about-text, .about-image { width: 100% !important; }
    
    /* Service detail grid */
    .service-detail-grid { grid-template-columns: 1fr !important; }
    
    /* Quote form */
    .quote-form-wrapper { grid-template-columns: 1fr !important; gap: 40px !important; }
    
    /* Feature boxes grid */
    .feature-box { padding: 30px 20px !important; }
    
    /* Footer CTA buttons */
    .footer-cta-bar .container > div { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .footer-cta-bar { padding: 24px 0 !important; }
    .footer-cta-bar a { padding: 14px 12px !important; border-radius: 14px !important; }
    .footer-cta-bar a > div:first-child { width: 36px !important; height: 36px !important; }
    .footer-cta-bar a > div:last-child > div:first-child { font-size: 11px !important; }
    .footer-cta-bar a > div:last-child > div:last-child { font-size: 14px !important; }
}

@media (max-width: 480px) {
    .service-card { padding: 30px 20px !important; }
    .services-grid { grid-template-columns: 1fr !important; }
    .page-header h1 { font-size: 28px !important; }
    .section-title { font-size: 26px !important; }
}

/* ===== ANIMATED BACKGROUND SHAPES ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}
.floating-shapes .shape-1 {
    width: 400px; height: 400px;
    background: var(--primary-blue);
    top: 10%;
    left: -5%;
    animation: floatShape1 25s ease-in-out infinite;
}
.floating-shapes .shape-2 {
    width: 300px; height: 300px;
    background: var(--accent-cyan);
    top: 60%;
    right: -3%;
    animation: floatShape2 20s ease-in-out infinite;
}
.floating-shapes .shape-3 {
    width: 200px; height: 200px;
    background: var(--accent-purple);
    top: 30%;
    right: 20%;
    animation: floatShape3 30s ease-in-out infinite;
}
.floating-shapes .shape-4 {
    width: 150px; height: 150px;
    background: var(--success-green);
    bottom: 15%;
    left: 10%;
    animation: floatShape4 22s ease-in-out infinite;
}
.floating-shapes .shape-5 {
    width: 250px; height: 250px;
    background: var(--warning-orange);
    top: 5%;
    right: 40%;
    animation: floatShape5 28s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, 40px) rotate(90deg); }
    50% { transform: translate(30px, 80px) rotate(180deg); }
    75% { transform: translate(-30px, 40px) rotate(270deg); }
}
@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -60px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.9); }
}
@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-80px, 50px) rotate(180deg); }
}
@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.2); }
    50% { transform: translate(80px, 20px) scale(0.8); }
    75% { transform: translate(40px, 50px) scale(1.1); }
}
@keyframes floatShape5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { transform: translate(50px, 30px) rotate(90deg); border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { transform: translate(20px, 60px) rotate(180deg); border-radius: 50% 50% 30% 70% / 40% 60% 70% 30%; }
    75% { transform: translate(-30px, 30px) rotate(270deg); border-radius: 30% 70% 50% 50% / 60% 40% 30% 70%; }
}

@media (max-width: 768px) {
    .floating-shapes .shape { opacity: 0.025; }
    .floating-shapes .shape-3, .floating-shapes .shape-5 { display: none; }
}

/* ===== MENU CTA BUTTON ===== */
nav ul li.menu-cta a {
    background: linear-gradient(135deg, #10B981 0%, #0E7490 100%) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em;
    animation: ctaPulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    text-transform: uppercase;
}
nav ul li.menu-cta a::before,
nav ul li.menu-cta a::after { display: none !important; }

nav ul li.menu-cta a:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5) !important;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35); }
    50% { box-shadow: 0 4px 28px rgba(16, 185, 129, 0.6), 0 0 0 8px rgba(16, 185, 129, 0.08); }
}

@media (max-width: 768px) {
    nav ul li.menu-cta { order: -1; }
    nav ul li.menu-cta a {
        background: linear-gradient(135deg, #10B981 0%, #0E7490 100%) !important;
        color: white !important;
        border-radius: 12px !important;
        text-align: center !important;
        margin-bottom: 16px !important;
        padding: 18px !important;
        animation: ctaPulse 2.5s ease-in-out infinite;
    }
}

/* ===== MENU CTA BUTTON ===== */
nav ul li.menu-cta a {
    background: linear-gradient(135deg, #10B981 0%, #0E7490 100%) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-weight: 800 !important;
    animation: ctaPulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    text-transform: uppercase;
    font-size: 13px !important;
}
nav ul li.menu-cta a::before,
nav ul li.menu-cta a::after { display: none !important; }
nav ul li.menu-cta a:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5) !important;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35); }
    50% { box-shadow: 0 4px 28px rgba(16, 185, 129, 0.6), 0 0 0 8px rgba(16, 185, 129, 0.08); }
}

/* Slider altı 4lü bar - mobilde 2x2 */
@media (max-width: 768px) {
    .feature-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .feature-bar-grid .stat-item { gap: 10px !important; }
    .feature-bar-grid .stat-item i { font-size: 22px !important; }
    .feature-bar-grid .reveal-scale { padding: 20px 16px !important; }
}

/* ===== MOBİL DÜZELTMELERİ ===== */
@media (max-width: 768px) {
    /* Anasayfa galeri - mobilde 2 sütun */
    .fleet-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* Slider butonları - küçült, tek satır */
    .slide-buttons {
        gap: 10px !important;
        margin-top: 8px !important;
        flex-wrap: nowrap !important;
    }
    .slide-buttons .btn {
        padding: 12px 20px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
    .slide-content h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    .slide-content p {
        font-size: 14px !important;
    }
    
    /* Hakkımızda - Neden Cantur stats */
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 30px !important;
    }
    .about-stats-grid .stat-card {
        padding: 30px 20px !important;
    }
    .about-stats-grid .stat-card div:first-child {
        font-size: 48px !important;
    }
    
    /* Hakkımızda - Neden Biz kartları */
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 30px !important;
    }
    .why-us-grid .feature-card {
        padding: 24px !important;
    }
    .why-us-grid .feature-card h3 {
        font-size: 20px !important;
    }
    .why-us-grid .feature-card .fa-bus,
    .why-us-grid .feature-card .fa-hand-holding-heart {
        font-size: 28px !important;
    }
    .why-us-grid .feature-card > div:first-child {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
}

/* Menü ikonları */
nav ul li a i, #mainNav ul li a i { margin-right: 5px; font-size: 13px; opacity: 0.7; }
.footer-section ul li a i { margin-right: 6px; width: 16px; text-align: center; opacity: 0.6; }

