/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1200px 800px at 20% 20%, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%),
                linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #ec4899 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-brand {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
    animation: float 3s ease-in-out infinite;
}

.loading-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,0.25));
    animation: float 3s ease-in-out infinite;
}

/* Body scroll kilidi (loading sırasında) */
.no-scroll {
    overflow: hidden;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Yeni progress yol ve kamyon animasyonu */
.loading-progress {
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.loading-road {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.loading-road::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0) 24px, rgba(255,255,255,0.6) 24px, rgba(255,255,255,0.6) 32px);
    mix-blend-mode: screen;
}

.loading-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 999px;
    animation: progressFill 2.2s ease-in-out infinite;
}

.loading-truck {
    position: absolute;
    top: -26px;
    left: 0;
    transform: translateX(-12px);
    font-size: 1.6rem;
    color: #fff;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
    animation: truckMove 2.2s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    80%, 100% { width: 100%; }
}

@keyframes truckMove {
    0% { left: 0; }
    80%, 100% { left: 100%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.topbar {
    background: #111827;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.topbar a { color: #e5e7eb; text-decoration: none; }
.topbar a:hover { color: #ffffff; }
.topbar .sep { opacity: 0.3; margin: 0 8px; }
.topbar i { color: #22c55e; margin-right: 6px; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2563eb;
}

.nav-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1) rotate(5deg);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(-45deg, #0ea5e9, #6366f1, #a855f7, #ec4899, #f59e0b);
    background-size: 500% 500%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at 20% 30%, rgba(255,255,255,0.15), transparent 70%),
                radial-gradient(500px 350px at 80% 70%, rgba(255,255,255,0.12), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65), rgba(255,255,255,0.15));
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    animation: blobFloat 20s ease-in-out infinite;
    will-change: transform, opacity;
    opacity: 0.7;
}

.particle:nth-child(1) { width: 180px; height: 180px; left: 6%; top: 10%; animation-delay: 0s; }

.particle:nth-child(2) { width: 140px; height: 140px; left: 18%; top: 60%; animation-delay: 2s; }

.particle:nth-child(3) { width: 220px; height: 220px; left: 35%; top: 20%; animation-delay: 4s; }

.particle:nth-child(4) { width: 160px; height: 160px; left: 50%; top: 70%; animation-delay: 1s; }

.particle:nth-child(5) { width: 120px; height: 120px; left: 58%; top: 30%; animation-delay: 3s; }

.particle:nth-child(6) { width: 180px; height: 180px; left: 70%; top: 15%; animation-delay: 5s; }

.particle:nth-child(7) { width: 130px; height: 130px; left: 75%; top: 65%; animation-delay: 6s; }

.particle:nth-child(8) { width: 200px; height: 200px; left: 82%; top: 35%; animation-delay: 7s; }

.particle:nth-child(9) { width: 150px; height: 150px; left: 90%; top: 10%; animation-delay: 8s; }

.particle:nth-child(10) { width: 140px; height: 140px; left: 45%; top: 85%; animation-delay: 9s; }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff, #fbbf24, #ffffff, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.title-sub {
    display: block;
    font-size: 0.7em;
    opacity: 0.9;
    margin-top: 0.2em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #05e7f7;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    color: #4b5563;
}

@keyframes titleShine {
    0% { 
        background-position: 0% 50%; 
        filter: brightness(1) saturate(1);
    }
    25% { 
        background-position: 25% 50%; 
        filter: brightness(1.1) saturate(1.2);
    }
    50% { 
        background-position: 100% 50%; 
        filter: brightness(1.2) saturate(1.3);
    }
    75% { 
        background-position: 75% 50%; 
        filter: brightness(1.1) saturate(1.2);
    }
    100% { 
        background-position: 0% 50%; 
        filter: brightness(1) saturate(1);
    }
}

.hero-contact {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-button:hover {
    transform: perspective(600px) translateY(-6px) translateZ(8px) rotateX(2deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.button-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-button:hover .button-arrow {
    opacity: 1;
    transform: translateX(0);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.whatsapp-button .button-icon {
    background: rgba(37, 211, 102, 0.2);
}

.phone-button .button-icon {
    background: rgba(59, 130, 246, 0.2);
}

.button-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.button-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.button-number {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.whatsapp-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-icon-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.hero-icon {
    width: 100%;
    height: 100%;
    background-image: url('photos/icooon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: float 3s ease-in-out infinite;
    filter: brightness(0) invert(1) contrast(1.1);
    will-change: transform;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    color: white;
    animation: floatIcon 4s ease-in-out infinite;
}

.truck-icon {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.wrench-icon {
    bottom: 30%;
    left: 5%;
    animation-delay: 1.5s;
}

.shield-icon {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Services Section */
.advantages {
    background: linear-gradient(180deg, #f6f7fb, #eef2ff);
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1f2937;
}

.adv-item { display: flex; align-items: center; justify-content: center; gap: 10px; }
.adv-item i { color: #6366f1; }

.cta-strip {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #ecfdf5;
    padding: 1.2rem 0;
    margin-top: 2rem;
}

.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-text { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.cta-text i { font-size: 1.4rem; }
.cta-button { background: #064e3b; color: #ecfdf5; padding: 10px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.cta-button:hover { background: #065f46; }
.services {
    padding: 6rem 0;
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.7s both;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card.primary {
    background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border: 1px solid transparent;
}

.service-card.primary .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card.primary .service-number {
    color: rgba(255, 255, 255, 0.2);
}

.service-card.primary .service-content h3,
.service-card.primary .service-content p,
.service-card.primary .feature-item {
    color: white;
}


.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-number {
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(148, 163, 184, 0.4);
    line-height: 1;
    z-index: 1;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1f2937;
}

.service-card.primary .service-content h3 {
    color: white;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.service-card.primary .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
}

.service-card.primary .feature-item {
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-card:hover .service-icon::before {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(102,126,234,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00e1ff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #4400ff;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #6b7280;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.about-icon {
    font-size: 12rem;
    color: #667eea;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.badge-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-item:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.badge-item:nth-child(2) {
    bottom: 30%;
    left: 5%;
    animation-delay: 1.5s;
}

.badge-item:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.badge-item i {
    color: #667eea;
    font-size: 1rem;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(102,126,234,0.03)" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}


.gallery-item {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item.featured {
    grid-column: span 2;
    background: linear-gradient(145deg, #667eea, #764ba2);
    color: white;
}

.gallery-item.featured .gallery-image {
    height: 300px;
}

.gallery-item.featured .gallery-overlay {
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    left: 100%;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.9) 35%, rgba(0, 0, 0, 0.9) 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    min-height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    color: white;
    margin-bottom: 1rem;
}

.gallery-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Video Section */
.video-section {
    max-width: 900px;
    margin: 4rem auto 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.video-container {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 45.25%; /* 56.25 -- 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper.portrait-video {
    padding-bottom: 40.25%; /* 16:9 Landscape Aspect Ratio */
    max-width: 600px;
    margin: 0 auto;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.video-content {
    text-align: center;
    margin-top: 2rem;
}

.video-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.video-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(102,126,234,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* İkon iç hizalama ve görsel kaymayı önleme */
.contact-icon i,
.contact-icon img {
    display: block;
    line-height: 1;
}

/* Adres kartında döndürmeyi kaldır (yamuk görünümü engelle) */
.contact-item:nth-child(3):hover .contact-icon {
    transform: scale(1.1);
}

/* Harita işaretçisi küçük dikey kaymayı düzelt */
.contact-icon .fa-map-marker-alt {
    transform: translateY(1px);
}

/* Adres ikonunu daha geniş göstermek için boyutu artır */
.contact-item:nth-child(3) .contact-icon {
    width: 84px;
    height: 84px;
}

.contact-item:nth-child(3) .contact-icon i {
    font-size: 2.1rem;
}

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

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-item:hover .contact-icon::before {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h3 {
    color: #667eea;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.contact-details a:hover::after {
    width: 100%;
}

.contact-details a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.contact-details p {
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details p {
    color: #4b5563;
}

/* Transport Form */
.transport-form {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.transport-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
}

.transport-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.transport-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.transport-form p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #f9fafb, #ffffff);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 6px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-phone:hover {
    color: #f59e0b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .topbar {
        font-size: 0.85rem;
    }

    .topbar-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.4rem 0;
    }

    .topbar .sep {
        display: none;
    }

    .topbar-right {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1rem;
        gap: 8px;
    }

    .nav-logo-img {
        width: 60px;
        height: 60px;
    }

    .nav-logo span {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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

    .loading-logo {
        width: 150px;
        height: 150px;
    }

    .loading-text {
        font-size: 1.1rem;
    }

    .loading-progress {
        width: 250px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.4rem;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-icon-container {
        width: 280px;
        height: 280px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-button {
        width: 100%;
        padding: 15px 20px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .whatsapp-logo {
        width: 20px;
        height: 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .hero-icon {
        width: 100%;
        height: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services,
    .gallery,
    .about {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-number {
        font-size: 4rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transport-form {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }

    .gallery-image {
        height: 240px;
    }

    .gallery-item:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .gallery-overlay {
        padding: 1rem 0.9rem 0.9rem;
        transform: translateY(0);
        background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.9) 100%);
    }

    .gallery-overlay h3 { font-size: 1rem; }

    .gallery-overlay p { font-size: 0.8rem; }

    .video-section {
        padding: 2rem 0;
    }

    .video-content h3 {
        font-size: 1.5rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-visual {
        width: 300px;
        height: 300px;
    }

    .about-icon {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .topbar {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }

    .topbar-left {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .loading-logo {
        width: 120px;
        height: 120px;
    }

    .loading-text {
        font-size: 0.95rem;
    }

    .loading-progress {
        width: 200px;
    }

    .nav-logo-img {
        width: 50px;
        height: 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.6rem;
    }

    .stat-item {
        padding: 0.6rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-icon-container {
        width: 220px;
        height: 220px;
    }

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

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .services,
    .gallery,
    .about {
        padding: 3rem 0;
    }

    .service-card,
    .contact-item {
        padding: 1.5rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .gallery-image {
        height: 220px;
    }

    .about-visual {
        width: 250px;
        height: 250px;
    }

    .about-icon {
        font-size: 6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
