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


.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
    }
}

.packaged-items-carousel {
    padding: 50px 0;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.carousel-slide {
    min-width: 300px;
    height: 400px;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-prev, .carousel-next {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Lazy Loading */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0;
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    background: #333; /* Default background as fallback */
    color: white; /* Default text color */
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20C55A 0%, #0F7B6C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.2em;
}

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 1100;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    background: #20c55a;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 60px;
        height: 60px;
    }
    .whatsapp-float i { font-size: 30px; }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form Info */
.form-info {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.form-info p {
    margin: 0;
    color: #1976d2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-info i {
    color: #2196f3;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Mobil menü için kritik düzeltmeler */

/* Header z-index düzeltmesi - Enhanced for Android */
.header {
    background:
        radial-gradient(1000px 600px at 20% 10%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #f8fbff 0%, #eef4ff 40%, #e6f0ff 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Fix for older Android browsers */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    /* Better Android compatibility */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent touch issues */
    touch-action: pan-x pan-y;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

/* Desktop layout */
@media (min-width: 769px) {
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
        align-items: center;
    }
    
    .desktop-nav {
        justify-self: center;
    }
}

/* Logo ve Navigation Stilleri */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.logo span {
    white-space: nowrap;
}

/* Ensure logo image scales nicely inside header */
.logo img,
.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

/* Make the logo look better on white header */
.logo-image {
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent; /* let the updated logo sit naturally */
    box-shadow: none;
}

@media (max-width: 768px) {
    .logo img,
    .logo-image {
        height: 34px; /* slightly smaller on mobile */
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.desktop-nav-item {
    margin: 0;
}

.desktop-nav-link {
    color: #0b0f19;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav-link:hover {
    color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.08);
}

.desktop-nav-link.active {
    color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.12);
    font-weight: 600;
}

.desktop-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
}

/* CTA butonunun mobilde gizlenmesi */
.header-cta {
    display: block;
}

/* Mobile Menu Toggle - Universal Compatibility */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    min-width: 48px;
    min-height: 48px;
    pointer-events: auto;
    /* Enhanced touch target for all devices */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    /* Prevent zoom on double tap */
    touch-action: manipulation;
    /* Better touch feedback */
    transition: background-color 0.2s ease;
    border-radius: 4px;
    /* Force visibility and interaction */
    visibility: visible;
    opacity: 1;
    /* Better compatibility for older devices */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent text selection issues */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:active {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0b0f19;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    /* Better visibility on Android */
    border-radius: 2px;
    /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Hardware acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Mobile Navigation - Universal Compatibility */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35); /* dim backdrop */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9999;
    padding: 0; /* drawer will have its own padding */
    overflow: hidden; /* drawer scrolls independently */
    -webkit-overflow-scrolling: touch;
    /* Universal compatibility */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent touch events from bubbling */
    touch-action: pan-y;
    /* Better scrolling on all devices */
    overscroll-behavior: contain;
    /* Initial state */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Better rendering on older devices */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-nav.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Close Button - Universal Compatibility */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* Enhanced touch target */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    /* Force visibility and interaction */
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    /* Better compatibility for older devices */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent text selection issues */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-nav-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-nav-close:active {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.mobile-nav-close:hover {
    color: #667eea;
}

/* Mobile Nav List */
.mobile-nav-list {
    position: fixed; /* act as the drawer */
    top: 0;
    right: 0;
    height: 100%;
    width: min(60vw, 260px);
    margin: 0;
    padding: 64px 10px 14px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background:
        radial-gradient(800px 480px at 80% 10%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(135deg, #f8fbff 0%, #eef4ff 40%, #e6f0ff 100%);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-nav.active .mobile-nav-list {
    transform: translateX(0);
}

.mobile-nav-item {
    width: 100%;
    margin: 10px 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0b0f19;
    text-decoration: none;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* Enhanced touch target for Android */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    /* Better touch feedback */
    position: relative;
    overflow: hidden;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(30, 58, 138, 0.12);
    color: #1e3a8a;
    border-color: rgba(30, 58, 138, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.mobile-nav-link:active {
    transform: translateY(-1px) scale(0.98);
    background: #5a6fd8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Mobile logo adjustments */
    .logo {
        font-size: 1.3rem !important;
        flex-shrink: 1;
        min-width: 0;
        max-width: 70%;
    }
    
    .logo i {
        font-size: 1.8rem !important;
        margin-right: 0.4rem !important;
        flex-shrink: 0;
    }
    
    .logo span {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Mobile header layout */
    .header-content {
        gap: 0.5rem !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        display: -webkit-flex;
        display: -ms-flexbox;
        /* Force visibility and interaction */
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        /* Better touch handling */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        touch-action: manipulation !important;
        /* Prevent issues on older devices */
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    /* Additional Android fixes */
    .mobile-menu-toggle {
        /* Ensure proper touch handling */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        /* Prevent double-tap zoom */
        touch-action: manipulation;
        /* Better touch feedback */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Fix for Android WebView issues */
    .mobile-nav {
        /* Prevent scroll issues on Android */
        -webkit-overflow-scrolling: touch;
        /* Better rendering */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    /* Active toggle animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        -webkit-transform: translateY(9px) rotate(45deg);
        -moz-transform: translateY(9px) rotate(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
        -o-transform: translateY(9px) rotate(45deg);
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        -webkit-transform: translateY(-9px) rotate(-45deg);
        -moz-transform: translateY(-9px) rotate(-45deg);
        -ms-transform: translateY(-9px) rotate(-45deg);
        -o-transform: translateY(-9px) rotate(-45deg);
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Body scroll when menu is open - Enhanced for Android */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
        position: fixed;
        width: 100%;
        /* Better Android compatibility */
        -webkit-overflow-scrolling: touch;
        /* Prevent scroll issues */
        overscroll-behavior: none;
        /* Prevent zoom on double tap */
        touch-action: none;
    }
    
    /* Additional Android WebView fixes */
    body.menu-open * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* Hero Section */
.hero {
    background:
        radial-gradient(1000px 600px at 20% 10%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%), /* soft white glow */
        linear-gradient(135deg, #000814 0%, #0a1a2f 45%, #1e3a8a 75%, #0b1220 100%); /* black to deep blue */
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 5%;
    padding-right: 5%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    min-width: 300px;
    text-align: left;
    margin-right: 40px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #f8fafc; /* light text on dark gradient */
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e2e8f0; /* soft light gray for readability on dark */
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Slightly reduce hero image size on large screens for better balance */
@media (min-width: 1024px) {
    .hero-img {
        max-width: 80%;
    }
}

.hero-phone-center {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
}

.hero-phone-center a {
    text-decoration: none;
    color: #e6edf7; /* light text for dark pill */
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 24px;
    background: rgba(2, 6, 23, 0.55); /* subtle dark/navy glass */
    border-radius: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.5px;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-phone-center a:hover {
    color: #ffffff;
    background: rgba(2, 6, 23, 0.72); /* slightly stronger on hover */
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 30px 50px;
        gap: 30px;
    }

    .hero-content {
        margin-right: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 50px;
        min-height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-buttons {
        gap: 1rem;
    }

    .hero-image {
        margin-bottom: 1rem;
        min-width: 100%;
    }

    .hero-phone-center {
        font-size: 0.95rem;
        margin-top: 20px;
        padding: 15px 0;
    }

    .hero-phone-center a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Statistics */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Company Story */
.company-story {
    padding: 80px 0;
}

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

.story-text h2 {
    margin-bottom: 2rem;
    color: #333;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    background: #f8f9fa;
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.mv-card h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

/* Values */
.values {
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Team */
.team {
    background: #f8f9fa;
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member p {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.member-social a:hover {
    background: #764ba2;
}

/* Certificates */
.certificates {
    padding: 80px 0;
}

.certificates h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cert-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.cert-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.cert-item p {
    color: #666;
}

/* Services Detail */
.services-list {
    padding: 80px 0;
}

.service-detail .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
}

.service-detail .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Paketlenmiş Eşya Carousel */
.packaged-items-carousel {
    padding: 40px 0;
    background: #f8f9fa;
}

.packaged-items-carousel h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-slide.active {
    display: block;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-prev,
.carousel-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-detail {
    margin-bottom: 4rem;
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.service-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-features i {
    color: #667eea;
    margin-right: 0.5rem;
    width: 20px;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Packaging Images Grid */
.packaging-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.packaging-images-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.packaging-images-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Process */
.process {
    background: #f8f9fa;
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.pricing-features i {
    color: #667eea;
    margin-right: 0.5rem;
    width: 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    color: #333;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Phone input specific styling */
.form-group input[type="tel"] {
    font-family: monospace;
}

.form-group input[type="tel"]:valid {
    border-color: #28a745;
}

/* Removed character counter styling since it's no longer used */

.contact-info h2 {
    margin-bottom: 2rem;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    margin: 0;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Ensure the item can receive pointer events */
    pointer-events: auto;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s ease;
    /* Ensure the question can receive pointer events */
    pointer-events: auto;
    /* Ensure proper touch handling */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Forum Messages Section */
.forum-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.forum-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.forum-messages {
    max-width: 800px;
    margin: 0 auto;
}

.forum-message {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.forum-message {
    padding: 1rem;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.message-header {
    flex-direction: column;
    gap: 0.5rem;
}

.message-author {
    font-weight: 600;
    color: #667eea;
}

.message-date {
    color: #666;
    font-size: 0.9rem;
}

.message-content p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #764ba2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.contact-info .contact-item {
    margin-bottom: 1rem;
}

.contact-info .contact-item i {
    color: #667eea;
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    /* Add spacing so the image doesn't sit immediately under the text on mobile */
    .hero-image { margin-top: 20px; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .story-content,
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Packaging Images Grid - Mobile */
    .packaging-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packaging-images-grid img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    /* Extra small logo for very small screens */
    .logo {
        font-size: 1.1rem !important;
    }
    
    .logo i {
        font-size: 1.5rem !important;
        margin-right: 0.3rem !important;
    }
    
    .logo span {
        font-size: 1.1rem !important;
        line-height: 1.1 !important;
    }
    
    /* Enhanced mobile menu for small screens */
    .mobile-menu-toggle {
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 0.75rem !important;
    }
    
    .mobile-nav {
        padding: 15px !important;
    }
    
    .mobile-nav-link {
        padding: 1.25rem 1.5rem !important;
        font-size: 1.2rem !important;
        min-height: 50px !important;
    }
    
    /* Packaging Images Grid - Small Screens */
    .packaging-images-grid {
        grid-template-columns: 1fr;
    }
    
    .packaging-images-grid img {
        height: 180px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    /* Ultra small logo for tiny screens */
    .logo {
        font-size: 1rem !important;
    }
    
    .logo i {
        font-size: 1.3rem !important;
        margin-right: 0.25rem !important;
    }
    
    .logo span {
        font-size: 1rem !important;
        line-height: 1 !important;
    }
    
    .mobile-menu-toggle {
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 0.5rem !important;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.25rem !important;
        font-size: 1.1rem !important;
        min-height: 45px !important;
    }
}

/* Legacy browser support */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .mobile-menu-toggle {
        -webkit-appearance: none !important;
        appearance: none !important;
        -webkit-border-radius: 0 !important;
        border-radius: 4px !important;
    }
}

/* Old Android WebView fixes */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        /* Force hardware acceleration for old devices */
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        /* Prevent rendering issues */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        /* Better touch handling */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        /* Prevent zoom on double tap */
        touch-action: manipulation !important;
    }
    
    .mobile-nav-close {
        /* Force hardware acceleration for old devices */
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        /* Prevent rendering issues */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        /* Better touch handling */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        /* Prevent zoom on double tap */
        touch-action: manipulation !important;
    }
}


/* Removed page-specific navy overrides to align hero with image and global buttons */

