/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand { flex: 0 0 auto; }
.nav-menu { flex: 1 1 auto; }
.nav-buttons { flex: 0 0 auto; }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 56px;
    width: auto;
    margin-right: 14px;
    display: block;
}

.brand-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 8px;
}

.brand-text::first-letter {
    color: transparent;
}

.brand-text::before {
    content: 'M';
    position: absolute;
    top: -3px;
    left: 0;
    color: #1e3a8a;
    transform: rotate(-8deg);
    font-size: 2.5rem;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.brand-text::after { content: none; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1e3a8a;
    border-radius: 1px;
}

/* Dil Seçici Stilleri */
.language-switcher {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 8px;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.6rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #374151;
    min-width: 54px;
    height: 36px;
}

.language-trigger .current-flag { margin-right: 8px; font-size: 1rem; }
.language-trigger .current-lang { font-weight: 600; color: #1e3a8a; }
.language-trigger .caret { margin-left: 8px; font-size: 0.8rem; opacity: 0.6; }

.language-trigger:hover {
    background: rgba(30, 58, 138, 0.1);
    transform: scale(1.05);
}

.language-trigger:focus {
    outline: none;
    background: rgba(30, 58, 138, 0.15);
}

.language-trigger .current-flag {
    font-size: 1.3rem;
    line-height: 1;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    min-width: 160px;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f9fafb;
}

.language-option .flag {
    font-size: 1.2rem;
    line-height: 1;
}

.language-option .text {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 100px;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.btn-primary:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-outline {
    background: transparent;
    color: #1e3a8a;
    border-color: #1e3a8a;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img.ocean-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* Hero Video Styles */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Floating particles animation */
@keyframes particle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Video loading animation */
.hero-video.loading {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Video fallback for older browsers */
@supports not (object-fit: cover) {
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Fallback background for mobile/slow connections */
.hero-background.fallback-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/mobilindex.png') center/cover no-repeat;
    z-index: -2;
}

/* Video loading state */
.hero-video {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Video play button overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(44, 90, 160, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button:hover {
    background: rgba(44, 90, 160, 1);
    transform: translateY(-50%) scale(1.1);
}

.video-play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.3), rgba(30, 64, 128, 0.2));
    z-index: -1;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #1e4080;
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #374151 50%, #4b5563 100%);
    color: white;
}

.video-showcase-section .section-title {
    color: white;
}

.video-showcase-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.video-showcase-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.video-player-wrapper {
    position: relative;
}

.video-player {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-player:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-player:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(44, 90, 160, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
    z-index: 100;
}

.play-button:hover {
    background: #2c5aa0;
    transform: translate(-50%, -50%) scale(1.1);
    border-color: white;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.play-button i {
    font-size: 1.8rem;
    color: white;
    margin-left: 3px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    z-index: 50;
    display: none; /* Video overlay yazısını gizle */
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.video-duration {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.video-info {
    padding: 1rem 0;
}

.video-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.video-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.video-stats i {
    color: #60a5fa;
    width: 16px;
}

/* Video ID için özel stil */
.video-stats span:last-child {
    background: rgba(44, 90, 160, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(44, 90, 160, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #60a5fa;
}

/* Video player embedded stilleri */
.video-player-embedded {
    width: 100%;
    height: 400px;
    position: relative;
}

.video-player-embedded iframe,
.video-player-embedded video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Video close button */
.video-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 20;
}

.video-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Video Showcase Responsive */
@media (max-width: 768px) {
    .video-showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.4rem;
    }
    
    .video-info {
        text-align: center;
    }
    
    .video-player-embedded {
        height: 250px;
    }
    
    .video-close-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
        font-size: 1rem;
    }
}

/* Products Section - Hidden */
.products-section {
    display: none; /* Gizlendi, kullanılmayacak */
}

.products-section .section-title {
    color: white;
}

.products-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Product Cards - Updated for better visibility on dark backgrounds */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.product-card .product-image {
    width: 100%;
    height: 260px; /* daha görünür, abartmadan */
    transition: transform 0.3s ease;
    background-color: #ffffff;
    position: relative;
}

/* Ürün resminin tamamı görünsün (kırpma yok) */
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.product-info h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.product-category {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.products-cta {
    text-align: center;
    margin-top: 4rem;
}

.products-cta .btn {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-cta .btn:hover {
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .products-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .products-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h4 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-section {
        padding: 3rem 0;
    }
}

/* Plaza Section */
.plaza-section {
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    text-align: center;
}

.plaza-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.plaza-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.plaza-section .btn-outline {
    background: white;
    color: #2c5aa0;
    border: 2px solid white;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    opacity: 1;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.plaza-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-section .contact-item i {
    color: #3498db;
    width: 16px;
}

.footer-section .contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 60px;
        max-width: 220px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-buttons {
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile video optimizations */
    .hero-video {
        object-position: center center;
    }
    
    /* On very small screens, show fallback image instead of video for performance */
    @media (max-width: 480px) and (max-device-width: 480px) {
        .hero-video {
            display: none;
        }
        
        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/mobilindex.png') center/cover no-repeat;
            z-index: -2;
        }
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    color: white;
    padding: 10rem 0 4rem;
    text-align: center;
    margin-top: 80px; /* Fixed header için ek margin */
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Styles */
.about-content-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.detail-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.detail-content h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.detail-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.detail-content ul {
    list-style: none;
    padding: 0;
}

.detail-content ul li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* About CTA */
.about-cta {
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-cta h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.about-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .about-content-section {
        padding: 3rem 0;
    }
    
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .detail-icon {
        align-self: center;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 2rem 1.5rem;
    }
}

/* Products Page Styles */
.products-content-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.featured-products {
    margin-bottom: 5rem;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge:nth-child(2) {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 1rem 0;
}

.product-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Product Categories */
.product-categories-section {
    margin-bottom: 5rem;
}

.product-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-count {
    background: #f8f9fa;
    color: #2c5aa0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Product Benefits */
.product-benefits {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-form-section,
.contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.5;
}

/* Contact Social */
.contact-social h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2c5aa0;
    color: white;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive for Products and Contact Pages */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-content-section,
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .featured-products h2,
    .product-categories-section h2,
    .product-benefits h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .product-benefits {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-section {
        padding: 2rem 1.5rem;
    }
}

/* About Page Styles */
.about-content {
    background: #f8f9fa;
}

.about-main-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-main-content h2 {
    color: #0056b3;
    margin-bottom: 20px;
}

.about-main-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.about-history {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-history h3 {
    color: #0056b3;
    margin-bottom: 20px;
}

.about-stats {
    background: #0056b3;
    padding: 40px 20px;
    border-radius: 10px;
    color: white;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-content {
    background: #f8f9fa;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #0056b3;
    margin-bottom: 20px;
}

.contact-info {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #0056b3;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1; /* Her zaman görünür olsun */
    visibility: visible; /* Her zaman görünür olsun */
}

.social-link:hover {
    background: #004085;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    opacity: 1; /* Hover durumunda da görünür olsun */
}

/* Contact sayfası sosyal medya ikonları için özel stil */
#contact-social .social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

#contact-social .social-link {
    width: 40px;
    height: 40px;
    background: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1; /* Her zaman görünür olsun */
    visibility: visible; /* Her zaman görünür olsun */
}

#contact-social .social-link:hover {
    background: #004085;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    opacity: 1; /* Hover durumunda da görünür olsun */
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 10px;
}

/* Mobil dil seçici */
@media (max-width: 768px) {
    .language-switcher {
        margin: 0.5rem 0;
        justify-content: center;
    }
    
    .language-dropdown {
        min-width: 120px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .language-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle i {
    font-size: 1.5rem;
    color: #374151;
    transition: color 0.3s ease;
}

.nav-toggle:hover i {
    color: #1e3a8a;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .brand-text {
        font-size: 1.8rem;
        padding: 0 5px;
    }
    
    .brand-text::before {
        font-size: 2.1rem;
        top: -2px;
        left: -1px;
        pointer-events: none;
    }
    
    .brand-text::after {
        width: 5px;
        height: 5px;
        right: -5px;
        pointer-events: none;
    }
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header.scrolled .navbar {
    padding: 1rem 0;
}

.header.scrolled .brand-text {
    font-size: 1.8rem;
    padding: 0 6px;
}

.header.scrolled .brand-text::before {
    font-size: 2.1rem;
    top: -2px;
    left: -1px;
    pointer-events: none;
}

.header.scrolled .brand-text::after { content: none; }

/* Video Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-lg {
    width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-header .close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-header .close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 2rem;
}

.video-player-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player-container iframe,
.video-player-container video {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        max-width: calc(100vw - 40px);
    }
    
    .modal-lg {
        width: 100%;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .video-player-container iframe,
    .video-player-container video {
        height: 250px;
    }
}

/* Homepage Products Section Styles - Simplified to match original image */
.homepage-products-section {
    padding: 5rem 0;
    background: #2c3e50; /* Simple dark blue-purple background */
    position: relative;
    overflow: hidden;
    color: white;
}

/* Remove all complex pseudo-elements and animations */
.homepage-products-section::before,
.homepage-products-section::after {
    content: none;
}

.homepage-products-section .container {
    position: relative;
    z-index: 2;
}

.homepage-products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.homepage-products-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white; /* Simple white text */
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.homepage-products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #e74c3c; /* Simple red-orange line */
    border-radius: 2px;
}

.homepage-products-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.homepage-products-showcase {
    display: flex; /* Grid yerine flexbox kullan */
    flex-wrap: nowrap; /* Tek satırda tut */
    gap: 1.5rem; /* 1rem'den 1.5rem'e geri döndür */
    margin-bottom: 3rem;
    overflow-x: auto; /* Yatay scroll */
    padding: 0.5rem 0; /* Scroll bar için padding */
    scrollbar-width: thin; /* Firefox için ince scroll bar */
    scrollbar-color: rgba(255,255,255,0.3) transparent; /* Scroll bar rengi */
}

/* Webkit scroll bar stilleri */
.homepage-products-showcase::-webkit-scrollbar {
    height: 6px;
}

.homepage-products-showcase::-webkit-scrollbar-track {
    background: transparent;
}

.homepage-products-showcase::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.homepage-products-showcase::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* Ürün kartlarının boyutunu ayarla */
.homepage-products-section .product-card {
    flex: 0 0 260px; /* 250px'den 260px'e geri döndür */
    min-width: 260px; /* Minimum genişlik */
    max-width: 260px; /* Maksimum genişlik */
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .homepage-products-showcase {
        gap: 1rem; /* 0.8rem'den 1rem'e geri döndür */
    }
    
    .homepage-products-section .product-card {
        flex: 0 0 230px; /* 220px'den 230px'e geri döndür */
        min-width: 230px;
        max-width: 230px;
    }
}

@media (max-width: 480px) {
    .homepage-products-section .product-card {
        flex: 0 0 210px; /* 200px'den 210px'e geri döndür */
        min-width: 210px;
        max-width: 210px;
    }
}

.homepage-products-cta {
    text-align: center;
}

.homepage-products-cta .btn {
    background: #ecf0f1;
    color: #34495e;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.homepage-products-cta .btn:hover {
    background: #bdc3c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments for homepage products section */
@media (max-width: 768px) {
    .homepage-products-section {
        padding: 3rem 0;
    }
    
    .homepage-products-section .section-title {
        font-size: 2.2rem;
    }
    
    .homepage-products-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .homepage-products-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .homepage-products-cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .homepage-products-section .section-title {
        font-size: 1.8rem;
    }
    
    .homepage-products-section .section-subtitle {
        font-size: 1rem;
    }
    
    .homepage-products-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Product Cards - Updated for better visibility on dark backgrounds */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.product-card .product-image {
    width: 100%;
    height: 260px;
    transition: transform 0.3s ease;
    background-color: #ffffff;
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #ffffff;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.product-info h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.product-category {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Special styling for homepage products section - Simplified */
.homepage-products-section .product-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.homepage-products-section .product-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
}

.homepage-products-section .product-info h4 {
    color: #1e3a8a;
}

.homepage-products-section .product-info p {
    color: #475569;
}

.homepage-products-section .product-category {
    background: #e74c3c;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}