/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Global Text Overflow Fix for Russian Language */
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, div, label, button {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal overflow */
.container, .section, .card, .box {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1400px; /* Back to original width */
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    background: #4299e1;
    border-color: #4299e1;
}

/* Header Styles */
.header {
    background: #1a365d;
    color: white;
    padding: 25px 0; /* Daha fazla padding */
    position: relative;
    z-index: 999;
}

/* Navigation Styles */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-info i {
    color: #4299e1;
    flex-shrink: 0;
}

.working-hours i {
    color: rgba(255, 255, 255, 0.7) !important;
}

.email-info i {
    color: #4299e1 !important;
}

.email-info {
    font-size: 1.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Phone Section - Large Style */
.phone-section {
    display: flex;
    align-items: center;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.phone-number:hover {
    color: #4299e1;
}

/* Header Right Info */
.header-right-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* 24/7 Support Badge */
.support-badge {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.support-badge i {
    color: white !important;
    animation: headset-ring 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(72, 187, 120, 0.5);
    }
}

@keyframes headset-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Social Contact Links */
.social-contact-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-contact-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.social-contact-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

.social-contact-btn.telegram {
    background: #0088cc;
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
}

.social-contact-btn.telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.5);
}

.social-contact-btn i {
    color: white !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Daha fazla gap */
    min-height: 60px; /* Minimum yükseklik */
}

.nav-brand {
    flex: 0 0 300px; /* Sabit genişlik logo için */
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.9;
}

.nav-brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.nav-brand img {
    height: 70px; /* Biraz küçülttük ama hala büyük */
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 25px; /* Daha fazla gap */
    flex: 1; /* Kalan alanı kullan */
    justify-content: flex-end;
    min-height: 60px; /* Minimum yükseklik */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px; /* Daha fazla gap */
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0; /* Daha fazla padding */
    position: relative;
    font-size: 1rem; /* Biraz büyüttük */
    white-space: nowrap; /* Yazıların kırılmasını engelle */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px; /* Prevent too long menu items */
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #4299e1;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4299e1;
}

.search-container-header {
    position: relative;
    min-width: 280px; /* Biraz küçülttük */
}

.search-box-header {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 42px; /* Sabit yükseklik */
}

.search-box-header:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4299e1;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.search-box-header input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.search-box-header input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn-header {
    background: #4299e1;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-header:hover {
    background: #3182ce;
}

.btn-quote {
    background: #f59e0b;
    color: white;
    padding: 10px 20px; /* Daha fazla padding */
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s;
    white-space: nowrap;
    height: 42px; /* Sabit yükseklik */
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px; /* Prevent overflow */
}

.btn-quote:hover {
    background: #d97706;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}



/* Hero Section */
.hero {
    position: relative;
    height: 60vh; /* Reduced from 70vh */
    min-height: 400px; /* Reduced from 500px */
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #4299e1 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px; /* Reduced from 600px */
}

.hero-content h1 {
    font-size: 2.8rem; /* Reduced from 3.5rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px; /* Reduced margin */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: 1.1rem; /* Reduced from 1.2rem */
    margin-bottom: 25px; /* Reduced margin */
    opacity: 0.9;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 16px; /* Reduced gap */
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px; /* Reduced padding */
    border: none;
    border-radius: 5px;
    font-size: 0.95rem; /* Reduced font size */
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #4299e1;
    color: white;
}

.btn-primary:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a365d;
}

/* Admin Gallery Section - Dual Gallery */
.admin-gallery {
    padding: 60px 0;
    background: white;
    position: relative;
}

.dual-gallery-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gallery-main {
    height: 400px;
}

.gallery-secondary {
    height: 400px;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

.gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-arrows:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: white;
}

.company-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.company-text h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.company-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Services Section */
.services {
    padding: 60px 0; /* Reduced from 80px */
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px; /* Reduced from 60px */
    position: relative;
}

.section-subtitle {
    color: #4299e1;
    font-size: 0.85rem; /* Reduced font size */
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.section-header h2 {
    font-size: 2.2rem; /* Reduced from 2.5rem */
    color: #1a365d;
    margin-bottom: 16px; /* Reduced margin */
    font-weight: 700;
}

.section-header p {
    font-size: 1rem; /* Reduced from 1.1rem */
    color: #666;
    max-width: 500px; /* Reduced from 600px */
    margin: 0 auto 16px;
}

.full-catalog-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.full-catalog-link:hover {
    color: #3182ce;
    transform: translateX(5px);
}

/* Services Gallery */
.services-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Reduced from 280px */
    gap: 16px; /* Reduced gap */
    margin-top: 30px;
}

.service-card {
    position: relative;
    border-radius: 8px; /* Reduced border radius */
    overflow: hidden;
    height: 180px; /* Reduced from 200px */
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px); /* Reduced from -5px */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Reduced shadow */
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05); /* Reduced from 1.1 */
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 54, 93, 0.9));
    color: white;
    padding: 25px 16px 16px; /* Reduced padding */
    transform: translateY(8px); /* Reduced from 10px */
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay h3 {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

/* Reliability Section */
.reliability {
    padding: 60px 0; /* Reduced from 80px */
    background: #f7fafc;
}

.reliability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* Reduced from 60px */
    align-items: center;
}

.reliability-text h2 {
    font-size: 2.2rem; /* Reduced from 2.5rem */
    color: #1a365d;
    margin-bottom: 16px; /* Reduced margin */
    font-weight: 700;
    line-height: 1.2;
}

.reliability-text p {
    font-size: 1rem; /* Reduced from 1.1rem */
    color: #666;
    margin-bottom: 30px; /* Reduced margin */
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reduced gap */
}

.feature-item {
    display: flex;
    gap: 16px; /* Reduced gap */
    align-items: flex-start;
}

.feature-icon {
    background: #4299e1;
    color: white;
    width: 45px; /* Reduced from 50px */
    height: 45px;
    border-radius: 8px; /* Reduced border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem; /* Reduced font size */
    flex-shrink: 0;
}

.feature-content h4 {
    color: #1a365d;
    font-size: 1.1rem; /* Reduced from 1.2rem */
    margin-bottom: 6px; /* Reduced margin */
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem; /* Reduced font size */
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.reliability-image {
    position: relative;
    height: 350px; /* Reduced from 400px */
    background: linear-gradient(135deg, #1a365d, #4299e1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.partner-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px; /* Reduced padding */
    border-radius: 8px; /* Reduced border radius */
    text-align: center;
    max-width: 260px; /* Reduced from 300px */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.partner-badge h4 {
    color: #1a365d;
    font-size: 1.2rem; /* Reduced from 1.3rem */
    margin-bottom: 8px;
    font-weight: 600;
}

.partner-badge p {
    color: #666;
    font-size: 0.9rem; /* Reduced from 0.95rem */
    margin: 0;
}

/* Footer Styles */
.footer {
    background: #1a365d;
    color: white;
    padding: 40px 0 0 0; /* Reduced padding, bottom removed */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduced from 250px */
    gap: 30px; /* Reduced gap */
    margin-bottom: 25px;
}

.footer-section h3 {
    font-size: 1rem; /* Reduced font size */
    font-weight: 600;
    margin-bottom: 16px; /* Reduced margin */
    color: #4299e1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px; /* Reduced margin */
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.footer-section ul li a:hover {
    color: white;
}

/* Locations List */
.locations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.location-item i {
    color: #4299e1;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.location-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-item strong {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.location-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 12px; /* Reduced gap */
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* Reduced from 40px */
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4299e1;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
    display: flex;
    align-items: center;
}

.footer-credit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.ulvenax-link {
    color: #4299e1;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.ulvenax-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.ulvenax-link strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Prevent text overflow on mobile */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure buttons don't overflow */
    .btn, .btn-quote, .btn-primary, .btn-secondary {
        white-space: normal !important;
        text-align: center;
        min-height: 42px;
        padding: 10px 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-top {
        padding-bottom: 10px;
        margin-bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-info {
        font-size: 0.85rem;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info span {
        display: block;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }
    
    /* Phone Section Mobile */
    .phone-section {
        width: 100%;
        gap: 6px;
    }
    
    .phone-number {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .working-hours {
        font-size: 0.75rem;
    }
    
    /* Header Right Info Mobile */
    .header-right-info {
        width: 100%;
        gap: 12px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .email-info {
        font-size: 0.8rem;
    }
    
    .social-contact-links {
        gap: 8px;
    }
    
    .social-contact-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        min-height: 50px;
        position: relative;
    }
    
    .nav-brand {
        flex: 0 0 auto;
        order: 1;
    }
    
    .nav-brand img {
        height: 45px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .header-search {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #1a365d;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        order: 2;
    }
    
    .header-search.mobile-active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .search-container-header {
        width: 100%;
        max-width: 300px;
        order: -1;
    }
    
    .btn-quote {
        width: 200px;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-gallery {
        grid-template-columns: 1fr;
    }
    
    .reliability-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .reliability-text h2 {
        font-size: 1.8rem;
    }
    
    .gallery-container {
        height: 250px;
    }
    
    .dual-gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-main,
    .gallery-secondary {
        height: 250px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-credit p {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .dual-gallery-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-main,
    .gallery-secondary {
        height: 200px;
    }
    
    .gallery-arrows {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* ============================================
   ADVANCED SEARCH DROPDOWN
   ============================================ */

.search-box-header {
    position: relative;
}

.search-results-dropdown {
    position: fixed;
    top: 140px; /* Header yüksekliği kadar */
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 90vw;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    max-height: 500px;
    overflow-y: auto;
    z-index: 10000;
}

.search-loading,
.search-no-results,
.search-error {
    padding: 30px;
    text-align: center;
    color: #6b7280;
}

.search-loading i {
    font-size: 24px;
    color: #3b82f6;
    margin-bottom: 10px;
}

.search-no-results i,
.search-error i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    color: #9ca3af;
}

.search-results-list {
    padding: 8px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #1f2937;
    transition: background 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
}

.search-result-sku {
    font-family: 'Courier New', monospace;
}

.search-result-price {
    color: #3b82f6;
    font-weight: 600;
}

.search-results-footer {
    padding: 12px 16px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.view-all-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.view-all-results:hover {
    color: #2563eb;
}

.view-all-results i {
    font-size: 0.85rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .search-results-dropdown {
        position: fixed;
        left: 10px;
        right: 10px;
        top: auto;
        max-height: 70vh;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-name {
        font-size: 0.9rem;
    }
    
    .search-result-meta {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
