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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.top-nav {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.top-nav-left,
.top-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-link {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-link p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.social-link:hover {
    color: rgb(248, 236, 2);
    transform: translateY(-2px);
}

.top-nav-link {
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.top-nav-link:hover {
    color: #000;
}

.language-selector {
    position: relative;
}

.international-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #666;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.international-btn:hover {
    background: #e5e5e5;
    color: #000;
}

.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    min-width: 120px;
    z-index: 1001;
}

.language-menu.active {
    display: block;
}

.language-menu button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    background: transparent;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.language-menu button:last-child {
    border-bottom: none;
}

.language-menu button:hover {
    background: #f8f8f8;
    color: #000;
}

.main-nav {
    background: #fff;
}

.main-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    background: #CBFF00;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

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

/* ============================================
   DUAL LOGO STYLES - YENİ EKLENEN
   ============================================ */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-image img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Logo Divider - Aralarındaki dikey çizgi */
.logo-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ccc, transparent);
    border-radius: 1px;
}

/* Secondary Logo (Metropol) */
.secondary-logo {
    height: 60px;
    display: flex;
    align-items: center;
}

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

/* Dark Mode için logo divider */
body.dark-mode .logo-divider {
    background: linear-gradient(to bottom, transparent, #555, transparent);
}

/* Responsive Logo Styles */
@media (max-width: 1024px) {
    .logo-container {
        gap: 15px;
    }
    
    .logo-image img {
        height: 45px;
    }
    
    .secondary-logo img {
        height: 40px;
    }
    
    .logo-divider {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        gap: 12px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-image img {
        height: 38px;
    }
    
    .secondary-logo {
        height: 50px;
    }
    
    .secondary-logo img {
        height: 35px;
    }
    
    .logo-divider {
        height: 30px;
        width: 1px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 8px;
    }
    
    .logo-image img {
        height: 32px;
    }
    
    .secondary-logo img {
        height: 28px;
    }
    
    .logo-divider {
        height: 25px;
    }
}

/* ============================================
   END DUAL LOGO STYLES
   ============================================ */

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: #000;
}

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

.search-btn {
    background: transparent;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #f0f0f0;
}

.search-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

.search-overlay.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-overlay .container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    font-size: 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #CBFF00;
    outline: none;
}

.close-search {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    font-size: 32px;
    color: #999;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-search:hover {
    background: #f0f0f0;
    color: #333;
}

.search-results {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8f8f8;
}

.search-result-item h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.search-result-item p {
    font-size: 14px;
    color: #666;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #999;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 80px 0;
}

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

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
    text-align: justify;
}

.hero-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.6;
    margin-top: 40px;
    text-align: center;
}

/* Resources Section */
.resources-section {
    background: #f8f8f8;
    padding: 60px 0;
}

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

.resource-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-8px);
}

.resource-image {
    margin-bottom: 20px;
}

.resource-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.resource-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Section */
.video-section {
    background: #fff;
    padding: 80px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-consent {
    background: #f8f8f8;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}

.video-consent h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.video-consent p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.youtube-link {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.accept-btn {
    padding: 12px 30px;
    background: #CBFF00;
    color: #000;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accept-btn:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 255, 0, 0.3);
}

.video-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Business Divisions */
.business-divisions {
    background: #fff;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.division-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.division-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.division-card:hover .division-image img {
    transform: scale(1.1);
}

.division-content {
    padding: 30px;
}

.division-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.division-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* News Section */
.news-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.carousel {
    position: relative;
    margin-top: 40px;
}

.carousel-content {
    overflow: hidden;
    margin: 0 80px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

.news-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 400px;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.news-image {
    flex: 1;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.news-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.news-card:hover .news-link::after {
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #CBFF00;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: yellow;
    transform: scale(1.3);
}

.dot:hover {
    background: #999;
}

/* Office Section */
.office-section {
    background: #fff;
    padding: 80px 0;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.office-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.office-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.office-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.office-detail {
    font-size: 16px;
    color: #999;
    font-style: italic;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #CBFF00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #999;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #CBFF00;
}

.footer-copyright {
    color: white;
    font-size: 13px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: #fff;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 24px;
}

.cookie-toggles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 6px;
}

.cookie-toggle span {
    font-size: 14px;
    font-weight: 500;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #CBFF00;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    background-color: #CBFF00;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #CBFF00;
    color: #000;
}

.btn-primary:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 255, 0, 0.3);
}

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

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, #f8f8f8 0%, #e5e5e5 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.product-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: #CBFF00;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 255, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .top-nav {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-highlight {
        font-size: 18px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .video-consent {
        padding: 30px 20px;
    }
    
    .video-actions {
        flex-direction: column;
    }
    
    .video-embed iframe {
        height: 300px;
    }
    
    .business-divisions {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .division-image {
        height: 220px;
    }
    
    .news-section {
        padding: 40px 0;
    }
    
    .carousel-content {
        margin: 0 60px;
    }
    
    .news-card {
        flex-direction: column;
        height: auto;
    }
    
    .news-content {
        padding: 30px;
    }
    
    .news-title {
        font-size: 22px;
    }
    
    .news-subtitle {
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .office-section {
        padding: 40px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-toggles {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Video Section */
.hero-video {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

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

.video-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.video-consent-content {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    max-width: 600px;
    text-align: center;
}

.video-consent-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.video-consent-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.video-embed-bg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-embed-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-logo {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.hero-logo img {
    width: 200px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #172d4c;
    color: yellow;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-subtitle {
    font-size: 18px;
    color: yellow;
    font-weight: 500;
    line-height: 1.6;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-section a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #CBFF00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright a {
    text-decoration: none;
    color: inherit;
}

.footer-bottomm {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.furkatech-logo {
    height: 20px;
}

.footer-copyright .furkatech {
    color: #fff;
    font-weight: 700;
}

.footer-copyright .tecnology {
    color: #00fefb;
    font-weight: 700;
}

.footer-bottomm .footer-copyright img {
    vertical-align: middle;
}

/* ============================================
   DARK MODE STYLES
   ============================================ */

body.dark-mode {
    background-color: #0f0f0f;
    color: #e0e0e0;
}

/* Header Dark Mode */
body.dark-mode .header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

body.dark-mode .top-nav {
    background-color: #141414;
    border-bottom: 1px solid #2a2a2a;
}

body.dark-mode .main-nav {
    background-color: #1a1a1a;
}

body.dark-mode .nav-link {
    color: #e0e0e0;
}

body.dark-mode .nav-link:hover {
    color: yellow;
}

body.dark-mode .top-nav-link {
    color: #b0b0b0;
}

body.dark-mode .top-nav-link:hover {
    color: yellow;
}

body.dark-mode .social-link {
    color: #b0b0b0;
}

body.dark-mode .social-link:hover {
    color: yellow;
}

/* Theme Toggle Button */
body.dark-mode .theme-toggle svg,
body.dark-mode .international-btn svg {
    color: #e0e0e0;
}

body.dark-mode .theme-toggle:hover,
body.dark-mode .international-btn:hover {
    background-color: #2a2a2a;
}

/* Language Menu Dark Mode */
body.dark-mode .language-menu {
    background-color: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

body.dark-mode .language-menu button {
    color: #e0e0e0;
}

body.dark-mode .language-menu button:hover {
    background-color: #2a2a2a;
    color: yellow;
}

/* Search Overlay Dark Mode */
body.dark-mode .search-overlay {
    background-color: rgba(0, 0, 0, 0.95);
}

body.dark-mode .search-input {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border: 2px solid #333;
}

body.dark-mode .search-input:focus {
    border-color: yellow;
}

body.dark-mode .search-input::placeholder {
    color: #666;
}

body.dark-mode .close-search {
    color: #e0e0e0;
    background-color: #1a1a1a;
}

body.dark-mode .close-search:hover {
    background-color: yellow;
}

body.dark-mode .search-results {
    background-color: #1a1a1a;
    border: 1px solid #333;
}

/* Mobile Menu Dark Mode */
body.dark-mode .mobile-menu-overlay {
    background-color: #0f0f0f;
}

body.dark-mode .mobile-menu-content {
    background-color: #0f0f0f;
}

body.dark-mode .mobile-search-btn {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #333;
}

body.dark-mode .mobile-search-btn:hover {
    background-color: yellow;
    border-color: yellow;
}

body.dark-mode .mobile-menu-links a {
    color: #e0e0e0;
    border-bottom: 1px solid #2a2a2a;
}

body.dark-mode .mobile-menu-links a:hover {
    background-color: #1a1a1a;
    color: yellow;
}

body.dark-mode .mobile-theme h4,
body.dark-mode .mobile-language h4,
body.dark-mode .mobile-social h4 {
    color: #e0e0e0;
    border-bottom: 1px solid #333;
}

body.dark-mode .theme-toggle-mobile {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #333;
}

body.dark-mode .theme-toggle-mobile:hover {
    background-color: yellow;
    border-color: yellow;
}

body.dark-mode .language-btn {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #333;
}

body.dark-mode .language-btn:hover {
    background-color: yellow;
    border-color: yellow;
    color: #fff;
}

body.dark-mode .language-btn.active {
    background-color: yellow;
    color: #fff;
    border-color: yellow;
}

/* Hero Section Dark Mode */
body.dark-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 166, 81, 0.3));
}

body.dark-mode .hero-text,
body.dark-mode .hero-highlight {
    color: #e0e0e0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Resources Section Dark Mode */
body.dark-mode .resources-section {
    background-color: #0f0f0f;
}

body.dark-mode .resource-title {
    color: #e0e0e0;
}

body.dark-mode .resource-item:hover .resource-title {
    color: yellow;
}

/* Business Divisions Dark Mode */
body.dark-mode .business-divisions {
    background-color: #141414;
}

body.dark-mode .section-title {
    color: #e0e0e0;
}

body.dark-mode .division-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
}

body.dark-mode .division-card:hover {
    background-color: #222;
    border-color: yellow;
    box-shadow: 0 8px 30px yellow;
}

body.dark-mode .division-title {
    color: #e0e0e0;
}

body.dark-mode .division-description {
    color: #b0b0b0;
}

/* News Section Dark Mode */
body.dark-mode .news-section {
    background-color: #0f0f0f;
}

body.dark-mode .news-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
}

body.dark-mode .news-card:hover {
    background-color: #222;
    border-color: yellow;
    box-shadow: 0 8px 30px yellow;
}

body.dark-mode .news-title {
    color: #e0e0e0;
}

body.dark-mode .news-subtitle {
    color: #b0b0b0;
}

body.dark-mode .news-link {
    color: yellow;
}

body.dark-mode .news-link:hover {
    color: yellow;
}

body.dark-mode .carousel-btn {
    background-color: #1a1a1a;
    border: 1px solid #333;
}

body.dark-mode .carousel-btn:hover {
    background-color: yellow;
    border-color: yellow;
}

body.dark-mode .carousel-dots .dot {
    background-color: #333;
}

body.dark-mode .carousel-dots .dot.active {
    background-color: yellow;
}

/* Office Section Dark Mode */
body.dark-mode .office-section {
    background-color: #141414;
}

body.dark-mode .office-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
}

body.dark-mode .office-card:hover {
    border-color: yellow;
    box-shadow: 0 8px 30px yellow;
}

body.dark-mode .office-card h3,
body.dark-mode .office-card p {
    color: #e0e0e0;
}

/* Page Header Dark Mode */
body.dark-mode .page-header {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

body.dark-mode .page-header h1 {
    color: #e0e0e0;
}

body.dark-mode .page-header p {
    color: #b0b0b0;
}

/* Content Section Dark Mode */
body.dark-mode .content-section {
    background-color: #0f0f0f;
}

body.dark-mode .content-section h2 {
    color: #e0e0e0;
}

body.dark-mode .content-section p,
body.dark-mode .content-section li {
    color: #b0b0b0;
}

/* Product Cards Dark Mode */
body.dark-mode .product-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
}

body.dark-mode .product-card:hover {
    background-color: #222;
    border-color: yellow;
    box-shadow: 0 8px 30px yellow;
}

body.dark-mode .product-card h3 {
    color: #e0e0e0;
}

body.dark-mode .product-card p {
    color: #b0b0b0;
}

/* Hamburger Menu Dark Mode */
body.dark-mode .hamburger-menu span {
    background-color: #e0e0e0;
}

body.dark-mode .hamburger-menu:hover span {
    background-color: yellow;
}

/* Menu Backdrop Dark Mode */
body.dark-mode .menu-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Smooth Transition for Dark Mode */
body,
.header,
.top-nav,
.main-nav,
.nav-link,
.top-nav-link,
.social-link,
.theme-toggle,
.international-btn,
.language-menu,
.search-overlay,
.search-input,
.mobile-menu-overlay,
.mobile-menu-content,
.hero-overlay,
.resource-item,
.division-card,
.news-card,
.office-card,
.product-card,
.hamburger-menu span {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Theme Toggle Button Dark Mode FIX */
body.dark-mode .theme-toggle {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
}

body.dark-mode .theme-toggle:hover {
    background-color: #333 !important;
    border-color: yellow !important;
}

body.dark-mode .theme-toggle svg {
    color: #e0e0e0 !important;
}

body.dark-mode .theme-toggle:hover svg {
    color: yellow !important;
}

/* International Button (Language Selector) Dark Mode FIX */
body.dark-mode .international-btn {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .international-btn:hover {
    background-color: #333 !important;
    border-color: yellow !important;
}

body.dark-mode .international-btn svg {
    color: #e0e0e0 !important;
}

body.dark-mode .international-btn span {
    color: #e0e0e0 !important;
}

body.dark-mode .international-btn:hover svg,
body.dark-mode .international-btn:hover span {
    color: yellow !important;
}

/* Search Button Dark Mode FIX */
body.dark-mode .search-btn {
    background-color: transparent !important;
    border: none !important;
}

body.dark-mode .search-btn svg {
    color: #e0e0e0 !important;
}

body.dark-mode .search-btn:hover {
    background-color: #2a2a2a !important;
}

body.dark-mode .search-btn:hover svg {
    color: yellow !important;
}

/* Intro Section */
.intro-section {
    background: #fff;
    padding: 80px 0;
}

body.dark-mode .intro-section {
    background: #1a1a1a;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.intro-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

body.dark-mode .intro-content h1 {
    color: #e0e0e0;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
    text-align: justify;
}

body.dark-mode .intro-content p {
    color: #b0b0b0;
}

.intro-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
    line-height: 1.6;
    text-align: center;
}

body.dark-mode .intro-highlight {
    color: #CBFF00;
    border-top-color: #333;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 50px 20px;
    }
    
    .intro-content h1 {
        font-size: 28px;
    }
    
    .intro-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .intro-highlight {
        font-size: 16px;
    }
}

/* ===================================
   ERİŞİLEBİLİRLİK İYİLEŞTİRMELERİ
   Furkatech Technology
   =================================== */

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

/* Focus-visible - klavye navigasyonu için görünür focus stili */
*:focus-visible {
    outline: 3px solid #CBFF00;
    outline-offset: 2px;
    border-radius: 2px;
}

body.dark-mode *:focus-visible {
    outline-color: #CBFF00;
}

/* Mouse kullanıcıları için focus gizle, klavye kullanıcıları için göster */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Skip navigation link stilleri */
.skip-nav:focus {
    position: fixed !important;
    left: 10px !important;
    top: 10px !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    background: #CBFF00 !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #000 !important;
    text-decoration: none !important;
    border: 2px solid #000 !important;
    border-radius: 4px !important;
    z-index: 100000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tercih edilen hareket azaltma - animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Yüksek kontrast modu desteği */
@media (prefers-contrast: high) {
    .nav-link,
    .top-nav-link {
        text-decoration: underline;
    }

    .division-card,
    .office-card,
    .product-card,
    .news-card {
        border: 2px solid currentColor;
    }

    button,
    .category-tab,
    .filter-tab {
        border: 2px solid currentColor;
    }
}

/* Print stilleri - yazdırma optimizasyonu */
@media print {
    .header,
    .footer,
    .carousel,
    .hero-video,
    .mobile-menu-overlay,
    .search-overlay,
    .cookie-banner {
        display: none !important;
    }

    body {
        color: #000 !important;
        background: #fff !important;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    a[href^="tel:"]::after,
    a[href^="mailto:"]::after {
        content: " (" attr(href) ")";
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }
}


/* ===================================
   HAMBURGER MENU - SADECE MOBİLDE
   =================================== */

/* Masaüstünde hamburger menü ve overlay tamamen gizli */
.hamburger-menu {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.menu-backdrop {
    display: none;
}

/* Sadece 768px ve altında göster */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
    }

    .menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.75);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(2px);
    }

    .menu-backdrop.active {
        display: block;
        opacity: 1;
    }
}
.footer-bottomm .footer-copyright a {
    display: inline-flex;
    align-items: center;
    gap: 0 !important;
    text-decoration: none;
    color: inherit;
}

.furkatech-logo {
    height: 20px;
    width: auto;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle;
}

.footer-copyright .furkatech {
    color: #fff;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    margin-left: 4px !important; /* Çok minimal boşluk */
}

.footer-copyright .tecnology {
    color: #00fefb;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    margin-left: 4px !important; /* Çok minimal boşluk */
}