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

:root {
    /* Colors */
    --primary-color: #0066CC;
    --secondary-color: #00A8E8;
    --accent-color: #FF6B35;
    --dark-blue: #003366;
    --light-blue: #E6F3FF;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Legal Pages Styles - Specific to legal pages only */

.legal-page .content-section {
    padding: 80px 0;
    background: var(--white);
}

.legal-page .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page .content-text {
    line-height: 1.8;
    color: #333;
}

.legal-page .content-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
}

.legal-page .content-text h2:first-child {
    margin-top: 0;
}

.legal-page .content-text h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.legal-page .content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.legal-page .content-text ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-page .content-text ul li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.05rem;
}

.legal-page .content-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.legal-page .content-text ul li:last-child {
    border-bottom: none;
}

.legal-page .content-text strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.legal-page .content-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-page .content-text a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer'ı koru - Yasal sayfaların CSS'i footer'ı etkilemesin */
.footer a {
    color: var(--white) !important;
    text-decoration: none !important;
    opacity: 0.9 !important;
}

.footer a:hover {
    color: var(--white) !important;
    opacity: 1 !important;
}

/* Sitemap Specific Styles */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sitemap-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.sitemap-list li:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
    border-radius: 5px;
}

.sitemap-list li:last-child {
    border-bottom: none;
}

.sitemap-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.sitemap-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page .contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.legal-page .contact-info p {
    margin: 8px 0;
    font-size: 1.05rem;
}

.legal-page .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-page .contact-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Site Haritası İletişim Bilgileri Kutusu - Çok Spesifik */
.legal-page .content-text .contact-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 30px !important;
    border-radius: 12px !important;
    margin: 30px 0 !important;
    border-left: 5px solid var(--accent-color) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    display: block !important;
    color: #333 !important;
    opacity: 1 !important;
}

.legal-page .content-text .contact-info-box p {
    margin: 8px 0 !important;
    font-size: 1.05rem !important;
    display: block !important;
    color: #333 !important;
    opacity: 1 !important;
}

.legal-page .content-text .contact-info-box strong {
    color: var(--dark-blue) !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

.legal-page .content-text .contact-info-box a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.legal-page .content-text .contact-info-box a:hover {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    
    .legal-page .content-section {
        padding: 60px 0;
    }
    
    .legal-page .content-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-page .content-text h3 {
        font-size: 1.2rem;
    }
    
    .legal-page .content-text p {
        font-size: 1rem;
    }
    
    .legal-page .content-text ul li {
        font-size: 1rem;
    }
    
    .legal-page .contact-info {
        padding: 20px;
        margin: 20px 0;
    }
    
    .legal-page .content-text .contact-info-box {
        padding: 20px !important;
        margin: 20px 0 !important;
    }
}

/* Ana Sayfa Referans CTA */
.references-cta {
    text-align: center;
    margin-top: 3rem;
}

.references-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.references-cta .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;
}

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

.references-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.references-cta .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.references-cta .btn:hover i {
    transform: translateX(5px);
}

/* Referans Tablosu Stilleri */
.references-table-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.references-table-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.references-table-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.references-table-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.references-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 800px;
}

.references-table thead {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.references-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.references-table th:first-child {
    border-top-left-radius: 12px;
    text-align: center;
    width: 60px;
}

.references-table th:last-child {
    border-top-right-radius: 12px;
}

.references-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.references-table tbody tr:hover {
    background-color: #f8f9fa;
}

.references-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.references-table tbody tr:nth-child(even):hover {
    background-color: #f0f0f0;
}

.references-table td {
    padding: 15px;
    vertical-align: middle;
    border: none;
}

.references-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: #ff6b35;
    background: #fff5f2;
    width: 60px;
}

.references-table td:nth-child(2) {
    font-weight: 500;
    color: #2c3e50;
    min-width: 200px;
}

.references-table td:nth-child(3) {
    text-align: center;
    vertical-align: middle;
    background: #e8f4fd;
    color: #1565c0;
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 12px;
    margin: 0;
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    line-height: 1;
}

.references-table td:nth-child(4) {
    text-align: center;
    font-weight: 600;
    color: #27ae60;
}

.references-table td:nth-child(5),
.references-table td:nth-child(6) {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .references-table-section {
        padding: 60px 0;
    }
    
    .references-table-section h2 {
        font-size: 2rem;
    }
    
    .references-table-section p {
        font-size: 1rem;
    }
    
    .references-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .references-table th,
    .references-table td {
        padding: 10px 8px;
    }
    
    .references-table th {
        font-size: 0.8rem;
    }
    
    .references-table td:nth-child(3) {
        font-size: 0.7rem;
        padding: 6px 8px;
        min-width: 60px;
        vertical-align: middle;
    }
}
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%) !important;
    transition: transform 0.3s ease-in-out !important;
}

/* Debug için header'ı daha belirgin yapalım */
.header {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10001 !important;
    transition: transform 0.3s ease-in-out !important;
}

/* Top Bar - İletişim Bilgileri */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

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

.contact-info-bar {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.info-item:hover {
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255,255,255,0.1);
    padding: 0.25rem;
    border-radius: 5px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background-color: transparent;
    border: none;
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

.lang-btn.active {
    background-color: var(--secondary-color);
}

.lang-btn img {
    display: block;
}

/* Middle Bar - Referans Logoları */
.middle-bar {
    background-color: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    overflow: hidden;
    position: relative;
    z-index: -1;
}


/* Sol Sabit Sosyal Medya Iconları */
.fixed-social-media {
    position: fixed;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.fixed-social-media .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 0 25px 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    margin-left: -5px;
}

.fixed-social-media .social-icon:hover {
    margin-left: 0;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.fixed-social-media .social-icon.phone {
    background: #e74c3c;
}

.fixed-social-media .social-icon.whatsapp {
    background: #25d366;
}

.fixed-social-media .social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.fixed-social-media .social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.fixed-social-media .social-icon.trendyol {
    background: #ff6600;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.fixed-social-media .social-icon.n11 {
    background: #f5f5f5;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    position: relative;
}

.fixed-social-media .social-icon.n11::before {
    content: "🐞";
    position: absolute;
    font-size: 14px;
}

.fixed-social-media .social-icon.n11 .n11-text {
    display: none;
}

.trendyol-text {
    font-size: 11px;
    font-weight: 700;
}

/* Header Referansları */
.header-references {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.header-references .references-track {
    display: flex;
    animation: scrollReferences 10s linear infinite;
    gap: 1rem;
    align-items: center;
}

.header-references .reference-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.header-references .reference-item:hover {
    opacity: 1;
}

.header-references .reference-logo {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Referans Logoları Animasyonu */
@keyframes scrollReferences {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Eski middle-bar stilleri kaldırıldı */

.social-media a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-media a i {
    color: var(--white);
    z-index: 2;
    position: relative;
}


/* Facebook */
.social-media a[aria-label*="Facebook"] {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.social-media a[aria-label*="Facebook"]:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.social-media a[aria-label*="Instagram"] {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
}

.social-media a[aria-label*="Instagram"]:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

/* LinkedIn */
.social-media a[aria-label*="LinkedIn"] {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
}

.social-media a[aria-label*="LinkedIn"]:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

/* YouTube */
.social-media a[aria-label*="YouTube"] {
    background: linear-gradient(135deg, #FF0000, #FF4444);
}

.social-media a[aria-label*="YouTube"]:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Eski customer-service stilleri kaldırıldı */

.cs-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cs-content h4 {
    font-size: 0.9rem;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.cs-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.cs-phone:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.cs-phone i {
    font-size: 0.9rem;
}

/* Main Navigation */
.navbar {
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,248,255,0.8));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,102,204,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Desktop Menü */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    flex: 1;
    justify-content: center;
}

/* Desktop Logo */
.desktop-logo {
    display: block;
    flex: 0 0 auto;
    margin-right: 2rem;
}

.desktop-logo .logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Mobil elementleri desktop'ta gizle */
.mobile-logo,
.mobile-lang-switcher,
.hamburger,
.mobile-menu-contact,
.mobile-menu,
.mobile-nav-menu {
    display: none;
}

.desktop-menu > li {
    position: relative;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

.desktop-menu > li > a::after {
    display: none;
}

.desktop-menu > li > a:hover {
    background: linear-gradient(135deg, rgba(0,102,204,0.15), rgba(0,168,232,0.1));
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
    border-color: rgba(0,102,204,0.3);
}

.desktop-menu > li > a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
    border-color: rgba(255,255,255,0.3);
}

.desktop-menu a i:first-child {
    font-size: 1rem;
    transition: var(--transition);
}

.desktop-menu a:hover i:first-child,
.desktop-menu a.active i:first-child {
    transform: scale(1.1);
}

.desktop-menu a i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.desktop-menu .has-dropdown:hover > a i.fa-chevron-down,
.desktop-menu .has-megamenu:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 0.8rem 0;
    min-width: 220px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.08);
}

.desktop-menu .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    border-radius: 10px;
    margin: 0 0.5rem;
    background: transparent;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(0,102,204,0.15), rgba(0,168,232,0.1));
    color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.2);
}

.dropdown-menu a i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.dropdown-menu a:hover i {
    transform: scale(1.1);
}

/* Mega Menu */
.megamenu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 2rem;
    min-width: 650px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    border: 1px solid rgba(0,0,0,0.08);
}

.desktop-menu .has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.megamenu-content {
    display: flex;
    gap: 1.5rem;
}

.megamenu-item {
    flex: 1;
}

.megamenu-item a {
    display: block;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.05);
}

.megamenu-item a::after {
    display: none;
}

.megamenu-item a:hover {
    background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,168,232,0.05));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,102,204,0.2);
    border-color: rgba(0,102,204,0.3);
}

.megamenu-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.megamenu-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.megamenu-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
    font-weight: 600;
    text-align: center;
}

.megamenu-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 240px;
        padding-top: 0;
        overflow: hidden;
    }
    
    @media (max-width: 768px) {
        .hero {
            margin-top: 0;
            padding-top: 0;
            height: calc(100vh - 70px);
        }
    }

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

/* Desktop için video'yu menünün altında başlat */
@media (min-width: 769px) {
    .hero-video {
        top: 0;
        height: 100vh;
    }
}

@media (max-width: 768px) {
    .hero-video {
        z-index: -10;
    }
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-overlay {
        z-index: -5;
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,152,0,0.3);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: #ff9800;
    color: var(--white);
    border: 2px solid #ff9800;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255,152,0,0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
    border-color: var(--primary-color);
}

/* Button Icons */
.btn i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Button Styles */
.hero-buttons .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-buttons .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;
}

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

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.hero-buttons .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
    color: #ffffff;
}

.hero-buttons .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

/* ==========================================
   Sections
   ========================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}


/* ==========================================
   References Section
   ========================================== */
.references-section {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.references-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.references-track {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 2rem;
    align-items: center;
}

.reference-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid rgba(0,102,204,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    min-width: 200px;
    height: 120px;
}

.reference-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.reference-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(0,102,204,0.3);
}

/* Hover durumunda animasyonu durdur ve yukarı çıkma efektini kaldır */
.references-slider:hover .reference-item:hover {
    transform: translateY(0);
}

.reference-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.reference-item:hover .reference-logo {
}

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

/* Pause animation on hover */
.references-slider:hover .references-track {
    animation-play-state: paused;
}

/* ==========================================
   Ürünlerimiz Section
   ========================================== */
.products-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Products Grid */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

/* Product Items */
.product-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.product-item.reverse {
    flex-direction: row-reverse;
}

.product-image-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    flex: 1;
    padding: 1rem;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.product-badge.premium {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.product-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.product-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.product-features {
    list-style: none;
    margin: 2rem 0;
}

.product-features li {
    padding: 0.8rem 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.product-actions .btn {
    flex: 1;
    max-width: 180px;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: 0;
    height: 400px;
    overflow: hidden;
}

.cta-container {
    display: flex;
    height: 100%;
}

.cta-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-left::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.cta-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
    padding: 2rem;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-right {
    flex: 1;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-right::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.whatsapp-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
    padding: 2rem;
}

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

.whatsapp-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.whatsapp-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-whatsapp {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.footer-col ul li {
    padding: 0.3rem 0;
}

.footer .footer-col ul li a {
    color: var(--white) !important;
    text-decoration: none !important;
    opacity: 0.9 !important;
    transition: var(--transition);
}

.footer .footer-col ul li a:hover {
    opacity: 1 !important;
    padding-left: 5px;
    color: var(--white) !important;
}

.footer .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer .contact-info i {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.mt-2 {
    margin-top: 1rem;
}

/* ==========================================
   Breadcrumb Stilleri
   ========================================== */

/* Breadcrumb - Sadece ana sayfa dışındaki sayfalarda */
.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
    margin-top: 255px; /* Header yüksekliği kadar boşluk */
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-separator {
    color: #999;
    font-size: 0.8rem;
}

/* ==========================================
   İletişim Sayfası Stilleri
   ========================================== */

/* İletişim Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
	margin-top: 125px;
}

/* Desktop için daha fazla margin */
@media (min-width: 769px) {
    .contact-hero {
        margin-top: 260px;
    }
}

/* Contact Hero - Standart Font Boyutları */
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Eski class için uyumluluk */
.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* İletişim Ana Bölüm */
.contact-main {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

/* İletişim Bilgileri */
.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.contact-info-cards {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--text-color) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    min-width: 120px;
}

.contact-link:hover {
    color: var(--white) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
}

/* Telefon numaraları ve e-posta adresleri */
.phone-number,
.email-address {
    color: var(--text-color) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(0,102,204,0.1);
    border: 1px solid rgba(0,102,204,0.2);
}

.phone-number:hover,
.email-address:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    background: rgba(0,102,204,0.15);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* İletişim Formu */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.contact-form-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Harita Bölümü */
.contact-map {
    padding: 6rem 0;
    background: var(--white);
}

.contact-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

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

.map-container iframe {
    display: block;
}

/* SSS Bölümü */
.contact-faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.8rem 0;
        margin-top: 70px; /* Mobil header yüksekliği */
    }
    
    .breadcrumb-content {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item span {
        display: none;
    }
    
    .breadcrumb-item i {
        font-size: 1rem;
    }
    
    .contact-hero h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map h2,
    .contact-faq h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 4rem 0 3rem;
		margin-top: 140px;
    }
    
    .contact-hero h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-main,
    .contact-map,
    .contact-faq {
        padding: 4rem 0;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
}

/* ==========================================
   About Page
   ========================================== */
.about-page {
    /* padding-top removed to fix contact-hero positioning */
}

.about-content {
    padding: 60px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text h2:not(:first-child) {
    margin-top: 40px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text .highlight-text {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text .quote-text {
    color: #333;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    margin: 30px 0;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-features {
    padding: 60px 0;
    background: white;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-story {
    padding: 60px 0;
    background: #f8f9fa;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* About Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        min-height: 250px;
        max-height: 300px;
        object-fit: contain;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   Human Resources Page
   ========================================== */
.hr-page {
    /* padding-top removed to fix contact-hero positioning */
}

.hr-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.hr-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hr-intro-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.hr-intro-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hr-values {
    padding: 60px 0;
    background: white;
}

.hr-values h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.hr-form {
    padding: 60px 0;
    background: #f8f9fa;
}

.hr-form h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 2px;
}

.checkbox-label a {
    color: #ff6b35;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-large i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

.hr-benefits {
    padding: 60px 0;
    background: white;
}

.hr-benefits h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.benefit-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.hr-contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.hr-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hr-contact-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hr-contact-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.method-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* HR Responsive */
@media (max-width: 768px) {
    .hr-intro-content h2,
    .hr-values h2,
    .hr-positions h2,
    .hr-benefits h2,
    .hr-contact-content h2 {
        font-size: 2rem;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .application-form {
        padding: 25px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ==========================================
   Success Messages
   ========================================== */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.success-message i {
    margin-right: 8px;
}

/* Form Alert Modal */
.alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-modal.show {
    opacity: 1;
    visibility: visible;
}

.alert-modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.alert-modal.show .alert-modal-content {
    transform: scale(1);
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.alert-icon.success {
    color: #28a745;
}

.alert-icon.error {
    color: #dc3545;
}

.alert-icon.warning {
    color: #ffc107;
}

.alert-icon.info {
    color: #17a2b8;
}

.alert-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.alert-message {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.alert-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.alert-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.alert-btn-primary {
    background: #007bff;
    color: white;
}

.alert-btn-primary:hover {
    background: #0056b3;
}

.alert-btn-secondary {
    background: #6c757d;
    color: white;
}

.alert-btn-secondary:hover {
    background: #5a6268;
}

.alert-btn-success {
    background: #28a745;
    color: white;
}

.alert-btn-success:hover {
    background: #218838;
}

.alert-btn-danger {
    background: #dc3545;
    color: white;
}

.alert-btn-danger:hover {
    background: #c82333;
}

/* Mobile Alert Modal */
@media (max-width: 768px) {
    .alert-modal-content {
        padding: 20px;
        max-width: 350px;
    }
    
    .alert-icon {
        font-size: 2.5rem;
    }
    
    .alert-title {
        font-size: 1.3rem;
    }
    
    .alert-buttons {
        flex-direction: column;
    }
    
    .alert-btn {
        width: 100%;
    }
}

/* ==========================================
   References Page
   ========================================== */
.references-page {
    /* padding-top removed to fix contact-hero positioning */
}

.references-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.reference-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 150px;
}

.reference-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.reference-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.reference-item:hover img {
}

/* References Responsive */
@media (max-width: 1024px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reference-item {
        padding: 15px;
        min-height: 100px;
    }
    
    .reference-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .reference-item {
        padding: 10px;
        min-height: 80px;
    }
    
    .reference-item img {
        max-height: 40px;
    }
}

/* ==========================================
   Video Gallery Page
   ========================================== */
.video-gallery-page {
    /* padding-top removed to fix contact-hero positioning */
}

.video-gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    color: white;
    font-size: 3rem;
    background: rgba(255,107,53,0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-item:hover .video-overlay i {
    transform: scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10003;
}

.video-modal-close:hover {
    color: #ff6b35;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Gallery Responsive */
@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .video-overlay i {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   Photo Gallery Page
   ========================================== */
.gallery-page {
    /* padding-top removed to fix contact-hero positioning */
}

.gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ff6b35;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: all;
}

.lightbox-btn:hover {
    background: rgba(255,107,53,0.8);
}

#lightbox-prev {
    margin-left: 20px;
}

#lightbox-next {
    margin-right: 20px;
}

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

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .lightbox-btn {
        font-size: 1.2rem;
        padding: 12px 16px;
    }
    
    #lightbox-prev {
        margin-left: 10px;
    }
    
    #lightbox-next {
        margin-right: 10px;
    }
}

/* ==========================================
   News Detail Page
   ========================================== */
.news-detail-page {
    /* padding-top removed to fix contact-hero positioning */
}

.news-detail-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.news-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.news-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-detail-image:hover img {
    transform: scale(1.05);
}

.news-detail-text {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.news-source {
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.news-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.news-content {
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.news-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.news-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.news-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-actions .btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.news-actions .btn-secondary:hover {
    background: transparent;
    color: #6c757d;
}

.news-actions .btn-primary {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}

.news-actions .btn-primary:hover {
    background: transparent;
    color: #ff6b35;
}

.news-external-link {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    margin: 30px 0;
}

.news-external-link h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.news-external-link p {
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

.btn-external {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #28a745;
}

.btn-external:hover {
    background: transparent;
    color: #28a745;
    transform: translateY(-2px);
}

/* News Detail Responsive */
@media (max-width: 768px) {
    .news-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-detail-image img {
        height: 250px;
    }
    
    .news-detail-text {
        padding: 30px 20px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-actions {
        flex-direction: column;
    }
    
    .news-actions .btn {
        justify-content: center;
    }
}



.references-widget {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    width: 300px;
    max-height: 450px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.references-widget:hover {
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    transform: translateY(-5px);
}

.widget-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.widget-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.widget-content {
    padding: 1rem;
    max-height: 350px;
    overflow: hidden;
    background: white;
}

.widget-logos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: widgetSlide 90s linear infinite;
}

.floating-references {
    display: none !important;
}

.widget-content:hover .widget-logos {
    animation-play-state: paused !important;
}

.widget-logo-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.widget-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: var(--transition);
}

.widget-logo-item:hover img {
}

@keyframes widgetSlide {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Widget gizli durumu */
.floating-references.hidden {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
}

/* Widget Toggle Button */
.widget-toggle {
    display: none !important;
}

.widget-toggle.show {
    opacity: 1;
    visibility: visible;
}

.toggle-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: var(--transition);
    white-space: nowrap;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.toggle-btn i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-references {
        right: 10px;
        width: 250px;
        top: calc(50% + 35px);
    }
    
    .widget-toggle {
        right: 20px;
        bottom: 90px;
    }
    
    .toggle-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .toggle-btn span {
        display: none;
    }
    
    .references-widget {
        width: 100%;
    }
    
    .widget-header h3 {
        font-size: 1rem;
    }
    
    .widget-content {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .floating-references {
        right: 5px;
        width: 200px;
        top: calc(50% + 35px);
    }
    
    .widget-toggle {
        right: 20px;
        bottom: 100px;
    }
    
    .toggle-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .toggle-btn span {
        display: none;
    }
    
    .toggle-btn i {
        font-size: 1.8rem;
    }
    
    .toggle-btn:hover {
        transform: scale(1.15) translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    .references-widget {
        width: 100%;
    }
    
    .widget-header h3 {
        font-size: 0.9rem;
    }
    
    .widget-content {
        padding: 0.6rem;
    }
}

/* ==========================================
   E-Katalog Page - Sadece katalog sayfası için
   ========================================== */
.catalog-page .catalog-section {
    padding: 4rem 0;
    background: var(--light-bg);
}


.catalog-page .catalog-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.catalog-page .catalog-pdf {
    position: relative;
    width: 100%;
    height: 800px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-page .pdf-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    height: 100%;
}

.catalog-page .pdf-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.catalog-page .pdf-preview h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.catalog-page .pdf-preview p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.6;
}



/* Responsive - Sadece katalog sayfası için */
@media (max-width: 768px) {
    .catalog-page .catalog-section {
        padding: 2rem 0;
    }
    
    
    .catalog-page .catalog-pdf {
        height: 600px;
    }
    
    
}

@media (max-width: 480px) {
    .catalog-page .catalog-pdf {
        height: 500px;
    }
    
}

/* ==========================================
   Basında Biz - Haberler Sayfası
   ========================================== */
.news-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.news-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 2rem 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-content h3 {
        font-size: 1.1rem;
    }
    
    .news-overlay {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   WhatsApp Floating Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 3px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.whatsapp-float:hover::before {
    transform: translateX(100%);
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    border-color: rgba(255,255,255,0.4);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    /* Mobil Header - Temiz ve Düzenli */
    .header {
        height: 70px;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 99999;
        position: relative;
    }
    
    .top-bar {
        display: none !important;
    }
    
    
    .navbar {
        height: 70px;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    /* Desktop logo'yu mobilde gizle */
    .desktop-logo {
        display: none !important;
    }
    
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 15px;
        gap: 15px;
    }
    
    /* Logo - Sol */
    .navbar .mobile-logo {
        flex: 0 0 auto;
        display: block !important;
    }
    
    .navbar .mobile-logo .logo-img {
        height: 55px;
        width: auto;
    }
    
    /* Dil Seçimi - Orta */
    .navbar .mobile-lang-switcher {
        display: flex !important;
        gap: 8px;
        flex: 0 0 auto;
        margin: 0 auto;
    }
    
    /* Desktop Menüyü Gizle */
    .desktop-menu {
        display: none !important;
    }
    
    /* Hamburger - Sağ */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        cursor: pointer;
        padding: 0;
        background: none;
        border: none;
        z-index: 10001;
        flex: 0 0 auto;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:first-child {
        transform: rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:last-child {
        transform: rotate(-45deg);
    }
    
    .navbar .mobile-lang-switcher .lang-btn {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        background: var(--light-blue);
        border: 1px solid var(--primary-color);
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        color: var(--primary-color);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .navbar .mobile-lang-switcher .lang-btn.active {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .navbar .mobile-lang-switcher .lang-btn img {
        width: 16px;
        height: 12px;
    }
    
    /* Menü İkonu - Sağ */
    .navbar .mobile-menu-toggle {
        flex: 0 0 auto;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin-left: auto;
        margin-right: 20px;
    }
    
    .navbar .mobile-menu-toggle:hover {
        background: var(--light-blue);
        transform: scale(1.1);
    }
    
    .navbar .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    /* Hamburger Menü Stilleri */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
		margin-right: 20px;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: 1px;
    }
    
    .hamburger.active span:first-child {
        transform: rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:last-child {
        transform: rotate(-45deg);
    }
    
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    
    /* Dropdown Menü - Mobil */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248,251,255,0.9);
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-left: 4px solid #e0e0e0;
    }
    
    .dropdown-menu.active {
        max-height: 200px;
    }
    
    .dropdown-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(0,102,204,0.05);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        display: flex;
        align-items: center;
        padding: 12px 40px;
        font-size: 14px;
        color: #555;
        background: transparent;
        border: none;
        border-radius: 0;
        margin: 0;
        width: 100%;
        font-weight: 400;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu li a:hover {
        background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
        color: #ffffff;
        transform: translateX(8px);
        box-shadow: 0 3px 10px rgba(0,102,204,0.2);
    }
    
    .dropdown-menu li a i {
        font-size: 16px;
        color: #0066cc;
        margin-right: 10px;
        width: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu li a:hover i {
        color: #ffffff;
        transform: scale(1.1);
    }
    
    /* Mega Menü - Mobil */
    .mobile-nav-menu .megamenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248,251,255,0.9);
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-left: 4px solid #e0e0e0;
    }
    
    .mobile-nav-menu .megamenu.active {
        max-height: 200px;
    }
    
    .mobile-nav-menu .megamenu-content {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .mobile-nav-menu .megamenu-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0,102,204,0.05);
    }
    
    .mobile-nav-menu .megamenu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-menu .megamenu-item a {
        padding: 15px 40px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        background: transparent;
        border: none;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-menu .megamenu-item a:hover {
        background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
        color: #ffffff;
        transform: translateX(8px);
        box-shadow: 0 3px 10px rgba(0,102,204,0.2);
    }
    
    .mobile-nav-menu .megamenu-text h4 {
        font-size: 16px;
        margin-bottom: 5px;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .mobile-nav-menu .megamenu-text p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }
    
    .cs-content h4 {
        font-size: 0.8rem;
    }
    
    .cs-phone {
        font-size: 0.9rem;
    }
    
    .social-media {
        gap: 0.8rem;
    }
    
    .social-media a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .social-media a:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 60px;
    }
    
    
    .nav-menu li {
        padding: 1rem 0;
    }
    
    /* Dropdown & Mega Menu Mobile */
    .has-dropdown,
    .has-megamenu {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .megamenu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-megamenu.active .megamenu {
        max-height: 500px;
        padding: 1rem 0;
    }
    
    .megamenu-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .megamenu-item a {
        background-color: var(--light-blue);
    }
    
    .dropdown-menu a {
        padding: 0.8rem 2rem;
        background-color: var(--light-blue);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 250px;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    
    .products-grid {
        gap: 2rem;
    }
    
    .product-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-item.reverse {
        flex-direction: column;
    }
    
    .product-image {
        height: 300px;
    }
    
    /* References */
    .references-section {
        padding: 3rem 0;
    }
    
    .reference-item {
        min-width: 150px;
        height: 100px;
        padding: 0.8rem;
    }
    
    .reference-logo {
        max-height: 60px;
    }
    
    .product-content {
        padding: 0;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .product-actions .btn {
        max-width: none;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    /* CTA Responsive */
    .cta-container {
        flex-direction: column;
        height: auto;
    }
    
    .cta-section {
        height: auto;
        min-height: 500px;
    }
    
    .cta-left,
    .cta-right {
        height: auto;
        min-height: 250px;
        padding: 2rem 1rem;
        flex: 1;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .whatsapp-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p,
    .whatsapp-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content .btn,
    .whatsapp-content .btn {
        padding: 14px 28px;
        font-size: 1.1rem;
    }
    
    .cta-content p,
    .whatsapp-content p {
        font-size: 1rem;
    }
    
    .cta-icon,
    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Top Bar */
    .contact-info-bar {
        justify-content: center;
    }
    
    .top-bar-right {
        justify-content: center;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .lang-btn {
        padding: 0.4rem;
    }
    
    /* Logo */
    .logo-img {
        height: 50px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Products */
    .product-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    /* References */
    .references-section {
        padding: 2rem 0;
    }
    
    .reference-item {
        min-width: 120px;
        height: 80px;
        padding: 0.6rem;
    }
    
    .reference-logo {
        max-height: 50px;
    }
    
    /* CTA */
    .cta-left,
    .cta-right {
        height: auto;
        min-height: 200px;
        padding: 1.5rem 0.8rem;
        flex: 1;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .whatsapp-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p,
    .whatsapp-content p {
        font-size: 0.9rem;
    }
    
    .cta-content .btn,
    .whatsapp-content .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Mobil Menü - Tamamen Ayrı */
    .mobile-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
        z-index: 99999;
        overflow: hidden;
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu.active {
        display: block !important;
    }
    
    .mobile-nav-menu {
        display: block !important;
    }
    
    /* Mobil Menü Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
        box-shadow: 0 2px 10px rgba(0,102,204,0.2);
        position: sticky;
        top: 0;
        z-index: 100000;
    }
    
    .mobile-menu-logo {
        height: 50px;
        width: auto;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 28px;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255,255,255,0.2);
        transform: scale(1.1);
    }
    
    /* Mobil Menü İçerik */
    .mobile-menu-content {
        flex: 1;
        padding: 20px 0;
        overflow-y: auto;
        height: calc(100vh - 90px);
        box-sizing: border-box;
    }
    
    .mobile-nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0,102,204,0.1);
        width: 100%;
        position: static;
    }
    
    .mobile-nav-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-menu li a {
        display: flex;
        align-items: center;
        padding: 15px 25px;
        color: #2c3e50;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 0;
        margin: 0;
        background: transparent;
        border: none;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        border-left: 3px solid transparent;
        gap: 0;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .mobile-nav-menu li a:hover {
        background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
        color: #ffffff;
        transform: translateX(5px);
        border-left-color: #ff6b35;
        box-shadow: 0 4px 15px rgba(0,102,204,0.2);
    }
    
    .mobile-nav-menu li a i:first-child {
        margin-right: 12px;
        font-size: 18px;
        width: 24px;
        text-align: center;
        color: #0066cc;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-menu li a:hover i:first-child {
        color: #ffffff;
        transform: scale(1.1);
    }
    
    .mobile-nav-menu li a span {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
    
    .mobile-nav-menu li a .fas.fa-chevron-down {
        margin-left: auto;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        width: 16px;
        text-align: center;
    }
    
    .mobile-nav-menu li.has-dropdown.active .fas.fa-chevron-down,
    .mobile-nav-menu li.has-megamenu.active .fas.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Mobil Menü İletişim Bölümü */
    .mobile-menu-contact {
        display: block !important;
        margin-top: auto;
        padding: 20px 25px;
        background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
        border-top: 1px solid rgba(0,102,204,0.1);
    }
    
    .contact-header {
        margin-bottom: 15px;
    }
    
    .contact-header h4 {
        color: #2c3e50;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        text-align: center;
    }
    
    .contact-items {
        margin-bottom: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,102,204,0.05);
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-item i {
        font-size: 16px;
        color: #666;
        width: 24px;
        text-align: center;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .contact-text {
        flex: 1;
        min-width: 0;
    }
    
    .contact-label {
        display: block;
        font-size: 12px;
        color: #666;
        font-weight: 500;
        margin-bottom: 2px;
    }
    
    .contact-value {
        display: block;
        font-size: 14px;
        color: #2c3e50;
        font-weight: 600;
        word-break: break-all;
        text-decoration: none;
    }
    
    .contact-value:hover {
        color: #2c3e50;
        text-decoration: none;
    }
    
    .contact-actions {
        display: flex;
        gap: 10px;
    }
    
    .contact-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        gap: 8px;
    }
    
    .phone-btn {
        background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
        color: #ffffff;
    }
    
    .phone-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,102,204,0.3);
    }
    
    .whatsapp-btn {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: #ffffff;
    }
    
    .whatsapp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    }
}

/* Product Page Styles */
.product-page {
    padding-top: 0;
}

.product-detail {
    padding: 80px 0;
    background: #ffffff;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-section {
    position: sticky;
    top: 120px;
}

.product-image-container {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    background: #ffffff;
    padding: 20px;
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: #ffffff;
    border-radius: 8px;
}

.product-main-image:hover {
    transform: scale(1.05);
}

.product-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-badge {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.product-badge.premium {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-info-section {
    padding-left: 20px;
}

.product-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #0066cc;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 40px;
}

.product-features h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #555;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.product-specifications {
    margin-bottom: 40px;
}

.product-specifications h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.spec-label {
    font-weight: 500;
    color: #555;
}

.spec-value {
    font-weight: 600;
    color: #2c3e50;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-actions .btn {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-actions .btn i {
    font-size: 1rem;
}

/* Product Page Button Styles */
.product-actions .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-actions .btn-primary:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.product-actions .btn-outline {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.product-actions .btn-outline:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}


.product-benefits {
    padding: 80px 0;
    background: #ffffff;
}

.product-benefits h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-buttons .btn-outline:hover {
    background: #ffffff;
    color: #0066cc;
}

/* Product Materials */
.product-materials {
    margin-bottom: 40px;
}

.product-materials h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.material-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.material-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.material-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.material-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.material-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Product Usage */
.product-usage {
    margin-bottom: 40px;
}

.product-usage h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.usage-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.usage-item i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.usage-item span {
    color: #555;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-image-section {
        position: static;
    }
    
    .product-image-container {
        padding: 15px;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-info-section {
        padding-left: 0;
    }
    
    .product-header h2 {
        font-size: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-actions .btn {
        min-width: auto;
        width: 100%;
        padding: 16px 25px;
    }
    
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 250px;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Middle Bar - Navbar'ın Altında */
    .middle-bar {
        padding: 0.3rem 0;
    }
    
    .header-references .reference-item {
        height: 40px;
        padding: 0 0.5rem;
    }
    
    .header-references .reference-logo {
        max-height: 75px;
    }
    
    .header-references .references-track {
        gap: 0.5rem;
    }
    
    /* Mobilde sosyal medya iconlarını göster */
    .fixed-social-media {
        display: flex !important;
        left: 5px;
        top: 75%;
        gap: 6px;
    }
    
    .fixed-social-media .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-left: -10px;
    }
    
    .fixed-social-media .social-icon:hover {
        margin-left: 0;
    }
    
    .fixed-social-media .social-icon.trendyol {
        font-size: 9px;
    }
    
    .fixed-social-media .social-icon.n11 {
        font-size: 10px;
    }
    
    .fixed-social-media .social-icon.n11::before {
        font-size: 12px;
    }
    
    .trendyol-text {
        font-size: 9px;
    }
}

dostu