/* Palmiye Global Theme CSS */

:root {
    /* Color Scheme - These will be overridden by dynamic theme */
    --palmiye-primary: var(--admin-primary, var(--primary));
    --palmiye-primary-dark: var(--admin-primary-dark, var(--primary-dark));
    --palmiye-primary-light: var(--admin-primary-light, var(--primary-light));
    --palmiye-secondary: #2C3E50;
    --palmiye-accent: #E74C3C;
    --palmiye-success: #27AE60;
    --palmiye-info: #3498DB;
    --palmiye-warning: #F39C12;
    --palmiye-danger: #E74C3C;
    
    /* Neutral Colors */
    --palmiye-white: #FFFFFF;
    --palmiye-light: #F8F9FA;
    --palmiye-gray: #6C757D;
    --palmiye-dark: #343A40;
    --palmiye-black: #000000;
    
    /* Text Colors */
    --palmiye-text: #2C3E50;
    
    /* Typography */
    --palmiye-font-heading: 'Poppins', sans-serif;
    --palmiye-font-body: 'Inter', sans-serif;
    --palmiye-font-mono: 'Fira Code', monospace;
    
    /* Spacing */
    --palmiye-spacing-xs: 0.25rem;
    --palmiye-spacing-sm: 0.5rem;
    --palmiye-spacing-md: 1rem;
    --palmiye-spacing-lg: 1.5rem;
    --palmiye-spacing-xl: 3rem;
    --palmiye-spacing-xxl: 5rem;
    
    /* Shadows */
    --palmiye-shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --palmiye-shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --palmiye-shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --palmiye-shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    
    /* Border Radius */
    --palmiye-radius-sm: 0.375rem;
    --palmiye-radius-md: 0.5rem;
    --palmiye-radius-lg: 1rem;
    --palmiye-radius-xl: 1.5rem;
}

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

body {
    font-family: var(--palmiye-font-body);
    line-height: 1.6;
    color: var(--palmiye-dark);
    background-color: var(--palmiye-white);
    padding-top: 0; /* Header yüksekliği için padding kaldırıldı */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Padding */
.section-padding {
    padding: 5rem 0;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--palmiye-primary) !important;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--palmiye-gray);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background: var(--palmiye-light);
}

.bg-primary {
    background: var(--palmiye-primary) !important;
}

.text-white {
    color: var(--palmiye-white);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* ===== SIFIRDAN ÖZGÜn MODERN CAROUSEL ===== */
.hero-section {
    position: relative !important;
    min-height: 100vh !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    z-index: 1 !important;
}

/* Unique Carousel Container */
.hero-section .carousel-container {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Full Screen Image Design */
.hero-section .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1) !important;
    transform: scale(0.95) !important;
    z-index: 1 !important;
}

.hero-section .hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    z-index: 2 !important;
}

/* Full Screen Background Image */
.hero-section .slide-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: all 1.2s ease !important;
    transform: scale(1.05) !important;
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-section .hero-slide.active .slide-image {
    transform: scale(1) !important;
}

/* Overlay Content Layout */
.hero-section .slide-content {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    z-index: 2 !important;
}

/* Left Content Area - Dynamic Background Based on Theme Color */
.hero-section .content-area {
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 50% !important;
    max-width: 600px !important;
    background: rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.15) !important;
    backdrop-filter: saturate(180%) !important;
    border-radius: 0 40px 40px 0 !important;
    box-shadow: 0 20px 60px rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.2) !important;
    border: 1px solid rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.2) !important;
    position: relative !important;
    z-index: 3 !important;
    margin-left: 3rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Modern Typography - Updated for Dark Background */
.slide-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--palmiye-primary, rgba(255, 215, 0, 0.9));
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .slide-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    font-family: var(--palmiye-font-heading) !important;
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.8s ease 0.2s !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.hero-section .slide-description {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    max-width: 400px !important;
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 0.8s ease 0.4s !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600 !important;
}

.slide-content-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600 !important;
}

.slide-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}

/* Active Slide Content Animation */
.hero-section .hero-slide.active .slide-subtitle,
.hero-section .hero-slide.active .slide-title,
.hero-section .hero-slide.active .slide-description,
.hero-section .hero-slide.active .slide-content-text,
.hero-section .hero-slide.active .slide-excerpt,
.hero-section .hero-slide.active .slide-actions {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Modern Buttons - Now part of unified system above */

/* Unified Button System - Admin Panel Style */
.btn, button, .btn-modern, .btn-primary-modern, .btn-secondary-modern, .discover-grid-btn, .play-btn, .nav-btn, a[class*="btn"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    user-select: none !important;
    border: 2px solid transparent !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-family: var(--palmiye-font-body) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb, 13, 110, 253), 0.25) !important;
}

.btn:disabled {
    pointer-events: none !important;
    opacity: 0.65 !important;
}

/* Primary Button - Unified System */
.btn-primary, .btn-primary-modern, .discover-grid-btn, a.btn-primary, a.btn-primary-modern, a.discover-grid-btn {
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 13, 110, 253), 0.3) !important;
}

.btn-primary:hover, .btn-primary-modern:hover, .discover-grid-btn:hover, a.btn-primary:hover, a.btn-primary-modern:hover, a.discover-grid-btn:hover {
    background-color: var(--primary-dark, #0b5ed7) !important;
    border-color: var(--primary-dark, #0b5ed7) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.4) !important;
}


.btn-primary:focus, .btn-primary-modern:focus, .discover-grid-btn:focus, a.btn-primary:focus, a.btn-primary-modern:focus, a.discover-grid-btn:focus {
    background-color: var(--primary-dark, #0b5ed7) !important;
    border-color: var(--primary-dark, #0b5ed7) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb, 13, 110, 253), 0.25) !important;
}

/* Secondary Button - Unified System */
.btn-secondary, .btn-secondary-modern {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3) !important;
}

.btn-secondary:hover, .btn-secondary-modern:hover {
    background-color: #5c636a !important;
    border-color: #565e64 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4) !important;
}

/* Outline Modern Button - Unified System */
.btn-outline-modern {
    color: var(--primary, #0d6efd) !important;
    border: 2px solid var(--primary, #0d6efd) !important;
    background-color: transparent !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 13, 110, 253), 0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-outline-modern:hover {
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.4) !important;
}

.btn-outline-modern:focus {
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb, 13, 110, 253), 0.25) !important;
    outline: none !important;
}

.btn-outline-modern:active {
    background-color: var(--primary-dark, #0b5ed7) !important;
    border-color: var(--primary-dark, #0b5ed7) !important;
    color: #ffffff !important;
    transform: translateY(0) !important;
}

/* Outline Primary Button - Unified System */
.btn-outline-primary, a.btn-outline-primary {
    color: var(--primary, #0d6efd) !important;
    border: 2px solid var(--primary, #0d6efd) !important;
    background-color: transparent !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 13, 110, 253), 0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover, a.btn-outline-primary:hover {
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.4) !important;
}

.btn-outline-primary:focus, a.btn-outline-primary:focus {
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb, 13, 110, 253), 0.25) !important;
    outline: none !important;
}

.btn-outline-primary:active, a.btn-outline-primary:active {
    background-color: var(--primary-dark, #0b5ed7) !important;
    border-color: var(--primary-dark, #0b5ed7) !important;
    color: #ffffff !important;
    transform: translateY(0) !important;
}

.btn-outline-primary:disabled, a.btn-outline-primary:disabled {
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
    opacity: 0.65 !important;
    cursor: not-allowed !important;
}

/* Light Button - Unified System */
.btn-light, a.btn-light {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(248, 249, 250, 0.3) !important;
}

.btn-light:hover, a.btn-light:hover {
    background-color: #e9ecef !important;
    border-color: #e9ecef !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(248, 249, 250, 0.4) !important;
}

/* Outline Light Button - Unified System */
.btn-outline-light, a.btn-outline-light {
    color: #f8f9fa !important;
    border: 2px solid #f8f9fa !important;
    background-color: transparent !important;
    box-shadow: 0 4px 15px rgba(248, 249, 250, 0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-outline-light:hover, a.btn-outline-light:hover {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(248, 249, 250, 0.4) !important;
}

.btn-outline-light:focus, a.btn-outline-light:focus {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: #000000 !important;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.25) !important;
    outline: none !important;
}

.btn-outline-light:active, a.btn-outline-light:active {
    background-color: #e9ecef !important;
    border-color: #e9ecef !important;
    color: #000000 !important;
    transform: translateY(0) !important;
}

.btn-outline-light:disabled, a.btn-outline-light:disabled {
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
    opacity: 0.65 !important;
    cursor: not-allowed !important;
}

/* Info Button */
.btn-info {
    background-color: #0dcaf0 !important;
    border-color: #0dcaf0 !important;
    color: #ffffff !important;
}

.btn-info:hover {
    background-color: #3dd5f3 !important;
    border-color: #25cff2 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.3) !important;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.375rem !important;
}

.btn-lg {
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    border-radius: 0.75rem !important;
}

/* Special Buttons - Clean Simple Play Button */
.play-btn {
    background: var(--primary, #0d6efd) !important;
    border: 2px solid white !important;
    color: white !important;
    border-radius: 50% !important;
    width: 70px !important;
    height: 70px !important;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.play-btn i {
    font-size: 2rem !important;
    margin-left: 3px !important;
}

.play-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.play-btn:active {
    transform: translateY(0) !important;
    transition: all 0.1s ease !important;
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary, #0d6efd) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.nav-btn:hover {
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.4) !important;
}

/* Button Icons */
.btn i, button i, .btn-modern i, .btn-primary-modern i, .btn-secondary-modern i, .discover-grid-btn i, .play-btn i, .nav-btn i {
    font-size: 1em !important;
    line-height: 1 !important;
}

/* AUTOMATIC BUTTON CONTRAST SYSTEM - OVERRIDE ALL (exclude navbar elements) */
.btn:not(.navbar-toggler), 
button:not(.navbar-toggler), 
.btn-modern, .btn-primary-modern, .btn-secondary-modern, 
.discover-grid-btn, .play-btn, .nav-btn, a[class*="btn"], a[class*="button"],
.cta-buttons a, .hero-buttons a, .action-buttons a {
    /* Force button styling */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    user-select: none !important;
    border: 2px solid transparent !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-family: var(--palmiye-font-body) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Force text color for light buttons */
.btn-light, a.btn-light, .cta-buttons a.btn-light {
    color: #000000 !important;
}

.btn-light:hover, a.btn-light:hover, .cta-buttons a.btn-light:hover {
    color: #000000 !important;
}

/* Force text color for outline light buttons */
.btn-outline-light, a.btn-outline-light, .cta-buttons a.btn-outline-light {
    color: #ffffff !important;
    border: 2px solid #f8f9fa !important;
    background-color: transparent !important;
}

.btn-outline-light:hover, a.btn-outline-light:hover, .cta-buttons a.btn-outline-light:hover {
    color: #000000 !important;
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
}

/* Force text color for outline primary buttons */
.btn-outline-primary, a.btn-outline-primary, .cta-buttons a.btn-outline-primary {
    color: var(--primary, #0d6efd) !important;
    border: 2px solid var(--primary, #0d6efd) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover, a.btn-outline-primary:hover, .cta-buttons a.btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
}

/* Force text color for outline modern buttons */
.btn-outline-modern, a.btn-outline-modern, .cta-buttons a.btn-outline-modern {
    color: var(--primary, #0d6efd) !important;
    border: 2px solid var(--primary, #0d6efd) !important;
    background-color: transparent !important;
}

.btn-outline-modern:hover, a.btn-outline-modern:hover, .cta-buttons a.btn-outline-modern:hover {
    color: #ffffff !important;
    background-color: var(--primary, #0d6efd) !important;
    border-color: var(--primary, #0d6efd) !important;
}

/* Force text color for primary buttons */
.btn-primary, a.btn-primary, .btn-primary-modern, a.btn-primary-modern, 
.discover-grid-btn, a.discover-grid-btn, .cta-buttons a.btn-primary {
    color: #ffffff !important;
}

.btn-primary:hover, a.btn-primary:hover, .btn-primary-modern:hover, a.btn-primary-modern:hover,
.discover-grid-btn:hover, a.discover-grid-btn:hover, .cta-buttons a.btn-primary:hover {
    color: #ffffff !important;
}

/* Back to Top Button */
#backToTop.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--primary, #0d6efd) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 13, 110, 253), 0.3) !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    opacity: 0.8 !important;
}

#backToTop.back-to-top:hover {
    background: var(--primary-dark, #0b5ed7) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.4) !important;
    opacity: 1 !important;
}

#backToTop.back-to-top.show {
    display: flex !important;
    opacity: 1 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #backToTop.back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

/* Enhanced Center Navigation - Bottom Center */
.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Enhanced Progress Design */
.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-track {
    width: 120px;
    height: 4px;
    background: rgba(226, 232, 240, 0.6);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-active {
    height: 100%;
    background: linear-gradient(90deg, var(--palmiye-primary) 0%, #fbbf24 100%) !important;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
    border-radius: 0 2px 2px 0;
}

/* Enhanced Navigation Controls */
.nav-controls {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(241, 245, 249, 0.8);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-btn:hover {
    background: var(--palmiye-primary) !important;
    color: white;
    border-color: var(--palmiye-primary) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb, 78, 149, 37), 0.4);
}

.nav-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Side Indicators - Hero Section Only */
.slide-indicators {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.indicator.active {
    background: var(--palmiye-primary) !important;
    border-color: var(--palmiye-primary) !important;
    transform: scale(1.5);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.indicator.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile Responsive Design - Full Screen */
@media (max-width: 768px) {
    .content-area {
        width: 90%;
        max-width: none;
        margin-left: 1rem;
        padding: 2rem;
        border-radius: 20px;
        background: rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.15) !important;
        box-shadow: 0 20px 60px rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.2) !important;
        border: 1px solid rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.2) !important;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-modern {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .carousel-nav {
        bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
        padding: 0.75rem 1.5rem;
        gap: 1rem;
        position: absolute;
    }
    
    .progress-track {
        width: 80px;
        height: 3px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-indicators {
        right: 1rem;
    gap: 0.75rem;
        padding: 0.75rem 0.4rem;
        border-radius: 15px;
        position: absolute;
}

    .indicator {
    width: 10px;
    height: 10px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 1.5rem;
        margin-left: 0.5rem;
        width: 95%;
        background: rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.15) !important;
        box-shadow: 0 20px 60px rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.2) !important;
        border: 1px solid rgba(var(--palmiye-primary-rgb, 78, 149, 37), 0.2) !important;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.85rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .carousel-nav {
        bottom: 1.5rem;
    left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        gap: 0.75rem;
        position: absolute;
    }
    
    .progress-track {
        width: 60px;
        height: 3px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slide-indicators {
        right: 0.5rem;
        gap: 0.5rem;
        padding: 0.5rem 0.3rem;
        border-radius: 12px;
        position: absolute;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .indicator.active {
        transform: scale(1.3);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-content {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-navigation {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-indicators {
    animation: fadeInUp 1s ease-out 1.1s both;
}



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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 3rem;
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.product-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #059669;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 3rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--palmiye-secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--palmiye-gray);
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: white;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 3rem;
}

.project-content {
    padding: 1.5rem;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.project-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-category {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 3rem;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.news-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #1d4ed8;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

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

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--palmiye-primary) !important;
    border: 2px solid var(--palmiye-primary) !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 13, 110, 253), 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #ffffff !important;
}

.cta .btn-primary:hover {
    background: var(--palmiye-primary-dark) !important;
    border-color: var(--palmiye-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.6) !important;
    color: #ffffff !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--palmiye-font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* Container Custom */
.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--palmiye-spacing-md);
}

/* Section Padding */
.section-padding {
    padding: var(--palmiye-spacing-xxl) 0;
}

/* Header Styles */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link {
    font-weight: 300;
    color: white !important;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
    white-space: nowrap;
}

.header-main.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Mobil renkler - Her durumda beyaz elementler */
@media (max-width: 991.98px) {
    /* Hero section'ı header'ın altına zorla taşı - BOŞLUK KALDIRMA */
    .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
        z-index: 1 !important;
    }
    
    /* Normal durum - Siyah elementler */
    .header-main .header-actions .search-toggle,
    .header-main .header-actions .dropdown-toggle {
        color: #2c3e50 !important;
    }
    
    .header-main .language-selector .dropdown-toggle {
        color: #2c3e50 !important;
    }
    
    .header-main .navbar-toggler {
        color: #2c3e50 !important;
    }
    
    .header-main .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c3e50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    /* Scroll durumu - Siyah elementler (aynı renk) */
    .header-main.scrolled .header-actions .search-toggle,
    .header-main.scrolled .header-actions .dropdown-toggle {
        color: #2c3e50 !important;
    }
    
    .header-main.scrolled .language-selector .dropdown-toggle {
        color: #2c3e50 !important;
    }
    
    .header-main.scrolled .navbar-toggler {
        color: #2c3e50 !important;
    }
    
    .header-main.scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c3e50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    /* Logo rengi - Siyah */
    .header-main .logo a {
        color: #2c3e50 !important;
    }
    
    .header-main.scrolled .logo a {
        color: #2c3e50 !important;
    }
}

.header-content {
    padding: 0.75rem 0;
    min-height: 60px;
}

/* Yeni layout için özel stiller */
@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }
    
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }
    
    /* Logo alanını optimize et */
    .col-lg-1 .logo {
        min-width: 120px;
    }
    
    /* Header actions alanını optimize et */
    .col-lg-1 .header-actions {
        justify-content: flex-end;
        min-width: 120px;
    }
    
    /* Navbar'ı merkeze hizala */
    .navbar-expand-lg .navbar-nav {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .col-lg-10 {
        flex: 0 0 auto;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }
    
    /* Mobil header düzeltmesi - GÜÇLÜ */
    .header-main .container-fluid {
        padding: 0 1rem !important;
    }
    
    .header-main .row {
        margin: 0 !important;
        min-height: 60px !important;
        align-items: center !important;
    }
    
    .header-main .col-lg-2 {
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        height: 60px !important;
    }
    
    .header-main .col-lg-2:first-child {
        justify-content: flex-start !important;
    }
    
    .header-main .col-lg-2:last-child {
        justify-content: flex-end !important;
    }
    
    /* Mobil için ek düzeltmeler */
    .header-main .col-md-6 {
        display: flex !important;
        align-items: center !important;
        height: 60px !important;
        padding: 0 !important;
    }
    
    .header-main .col-md-6:first-child {
        justify-content: flex-start !important;
    }
    
    .header-main .col-md-6:last-child {
        justify-content: flex-end !important;
    }
}

.logo a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobil görünümde logo rengi - Beyaz */
@media (max-width: 991.98px) {
    .logo a {
        color: white !important;
    }
    
    .header-main.scrolled .logo a {
        color: white !important;
    }
}

/* Logo alanı optimizasyonu */
@media (min-width: 992px) {
    .logo a {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
    }
    
    .triangle-yellow {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 16px solid var(--palmiye-primary);
    }
    
    .triangle-black {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 12px solid var(--palmiye-dark);
    }
}

.header-main.scrolled .logo a {
    color: var(--palmiye-dark);
}

.logo-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.triangle-yellow {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--palmiye-primary);
}

.triangle-black {
    position: absolute;
    top: 4px;
    left: 2px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid var(--palmiye-dark);
}

.logo-text {
    font-family: var(--palmiye-font-heading);
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 300;
    color: white !important;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--palmiye-primary) !important;
    opacity: 1;
    transform: translateY(-1px);
}

.header-main.scrolled .navbar-nav .nav-link {
    color: #1a202c !important;
    font-weight: 400;
}

.header-actions .search-toggle,
.header-actions .dropdown-toggle {
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
    white-space: nowrap;
    font-weight: 300;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
}

/* Header actions optimizasyonu */
@media (min-width: 992px) {
    .header-actions {
        gap: 0.25rem;
        min-width: 200px;
        justify-content: flex-end;
    }
    
    .header-actions .btn-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .language-selector .dropdown-toggle {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .search-toggle {
        padding: 0.5rem !important;
        border-radius: 6px;
    }
}

/* Header actions responsive */
@media (max-width: 991.98px) {
    /* Header ana düzeltmesi - Beyaz arka plan */
    .header-main {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        background: white !important;
        border-bottom: 1px solid #e9ecef !important;
    }
    
    /* Scroll durumunda da beyaz arka plan */
    .header-main.scrolled {
        background: white !important;
        border-bottom: 1px solid #e9ecef !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .header-content {
        padding: 0.5rem 0 !important;
        min-height: 60px !important;
    }
    
    .header-main .container-fluid {
        padding: 0 1rem !important;
    }
    
    .header-main .row {
        align-items: center !important;
        min-height: 60px !important;
        margin: 0 !important;
    }
    
    /* Logo alanı */
    .header-main .col-lg-2:first-child {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: 60px !important;
        padding: 0 !important;
    }
    
    .header-main .logo {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
    
    .header-main .logo a {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
    
    /* Actions alanı */
    .header-main .col-lg-2:last-child {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        height: 60px !important;
        padding: 0 !important;
    }
    
    .header-actions {
        gap: 0.5rem !important;
        justify-content: flex-end !important;
        align-items: center !important;
        height: 100% !important;
        display: flex !important;
    }
    
    .header-actions .search-toggle,
    .header-actions .dropdown-toggle {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        display: inline-flex !important;
        align-items: center !important;
        height: auto !important;
        color: #2c3e50 !important;
    }
    
    .language-selector .dropdown-toggle {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
        display: inline-flex !important;
        align-items: center !important;
        height: auto !important;
        color: #2c3e50 !important;
    }
    
    .navbar-toggler {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        padding: 0.4rem 0.6rem !important;
        border: none !important;
        background: transparent !important;
        color: #2c3e50 !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c3e50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    /* Ekstra mobil düzeltmeler */
    .header-main .d-flex {
        display: flex !important;
        align-items: center !important;
    }
    
    .header-main .align-items-center {
        align-items: center !important;
    }
    
    .header-main .justify-content-end {
        justify-content: flex-end !important;
    }
    
    .header-main .justify-content-start {
        justify-content: flex-start !important;
    }
    
    /* Tüm header elementlerini zorla hizala */
    .header-main * {
        box-sizing: border-box !important;
    }
    
    .header-main .row > * {
        display: flex !important;
        align-items: center !important;
        height: 60px !important;
    }
    
    /* Çok spesifik mobil düzeltme */
    @media (max-width: 768px) {
        .header-main .col-lg-2,
        .header-main .col-md-6 {
            width: 50% !important;
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }
        
        .header-main .col-lg-2:first-child,
        .header-main .col-md-6:first-child {
            order: 1 !important;
        }
        
        .header-main .col-lg-2:last-child,
        .header-main .col-md-6:last-child {
            order: 2 !important;
        }
        
        .header-main .col-lg-8 {
            display: none !important;
        }
    }
}

.header-actions .search-toggle:hover,
.header-actions .dropdown-toggle:hover {
    color: var(--palmiye-primary) !important;
    opacity: 1;
    transform: translateY(-1px);
    background: none;
}

.header-main.scrolled .header-actions .search-toggle,
.header-main.scrolled .header-actions .dropdown-toggle {
    color: #1a202c !important;
    font-weight: 400;
}

.header-main.scrolled .header-actions .search-toggle:hover,
.header-main.scrolled .header-actions .dropdown-toggle:hover {
    color: var(--palmiye-primary) !important;
    background: none;
}

.language-selector {
    position: relative;
}

.language-selector .dropdown-menu {
    min-width: 140px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.language-selector .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #4a5568;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-selector .dropdown-item:hover {
    background-color: var(--palmiye-primary) !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

.language-selector .dropdown-item:last-child {
    border-bottom: none;
}

.language-selector .dropdown-toggle {
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    opacity: 0.9;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.language-selector .dropdown-toggle:hover {
    color: var(--palmiye-primary) !important;
    opacity: 1;
    transform: translateY(-1px);
}

.header-main.scrolled .language-selector .dropdown-toggle {
    color: #1a202c !important;
    font-weight: 400;
}

/* Navbar toggle button */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    user-select: none !important;
    display: inline-block !important;
    font-weight: normal !important;
    white-space: nowrap !important;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    width: 1.2em !important;
    height: 1.2em !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    vertical-align: middle !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% !important;
}

/* Header scroll edildiğinde hamburger menü rengi */
.header-main.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.header-main.scrolled .navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Dropdown menü stilleri - Sadece navigation dropdown'ları için */
.navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    /* Hover için daha iyi positioning */
    pointer-events: auto;
}

.navbar-nav .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown container için position relative */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .nav-item.dropdown {
    position: relative;
}

/* Dropdown menü pozisyonlama için */
.navbar-nav .nav-item {
    position: relative;
}

/* Hover için daha iyi spacing */
.navbar-nav .dropdown-menu {
    margin-top: 0.25rem;
}

/* Dropdown toggle için daha iyi hover alanı */
.navbar-nav .dropdown-toggle {
    position: relative;
}

/* Hover alanını genişlet */
.navbar-nav .dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

/* Dropdown hover efekti - daha güvenilir */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hover için daha iyi timing */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    transition: all 0.2s ease;
}

/* Hover durumunda dropdown'ı daha stabil tut */
.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown menü hover'da açık kalması için */
.navbar-nav .dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hover için daha iyi z-index */
.navbar-nav .dropdown:hover {
    z-index: 10000;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    z-index: 10000;
}

.navbar-nav .dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-nav .dropdown-item:hover {
    background: var(--palmiye-primary) !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

.navbar-nav .dropdown-item:last-child {
    border-bottom: none;
}

/* Dropdown menü stilleri */
.navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.navbar-nav .dropdown-item {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    color: var(--palmiye-text);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .dropdown-item:hover {
    background: var(--palmiye-primary) !important;
    color: #ffffff !important;
    transform: translateX(5px);
    border-radius: 4px;
    margin: 0 0.5rem;
}

/* Dropdown toggle arrow */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Header scroll edildiğinde dropdown stilleri */
.header-main.scrolled .navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.1);
}

.header-main.scrolled .navbar-nav .dropdown-item {
    color: #2d3748;
    font-weight: 400;
}

.header-main.scrolled .navbar-nav .dropdown-item:hover {
    background: var(--palmiye-primary) !important;
    color: #ffffff !important;
}

/* Dropdown toggle arrow için stil */
.navbar-nav .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Language selector dropdown - Bootstrap default davranışını koru */
.language-selector .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 150px;
    z-index: 1001;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
}

.language-selector .dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-selector .dropdown-item:hover {
    background: var(--palmiye-primary) !important;
    color: #ffffff !important;
}

.language-selector .dropdown-item:last-child {
    border-bottom: none;
}

.language-selector .dropdown-toggle::after {
    display: none;
}



/* Hero Section - Modern Outdoor Living Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8fafc; /* Açık gri arka plan */
    margin-top: 0; /* Header'ın üstüne gelsin */
    padding-top: 0; /* Boşluk kaldırıldı */
    z-index: 1;
}

/* Carousel fade effect */
.hero-section.fade-transition .hero-bg-img {
    opacity: 0.8;
    transform: scale(1.05);
}

.hero-section.fade-transition .hero-bg-img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* Title animation for carousel */
.hero-title {
    transition: all 0.6s ease-in-out;
}

.hero-section.fade-transition .hero-title {
    opacity: 0.7;
    transform: translateY(-10px);
}

.hero-section.fade-transition .hero-title.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel navigation improvements */
.hero-navigation {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

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

/* Progress line animation */
.progress-fill {
    transition: width 0.8s ease-in-out;
}

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

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.8s ease-in-out;
    filter: brightness(1.1) contrast(1.05);
}

.hero-section.fade-transition .hero-bg-img {
    filter: brightness(0.9) contrast(0.95);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.08) 30%,
        rgba(0, 0, 0, 0.03) 60%,
        rgba(0, 0, 0, 0.08) 100%
    );
    z-index: 2;
}

.hero-navigation {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.progress-line {
    width: 200px;
    height: 2px;
    background: rgba(30, 41, 59, 0.2);
    border-radius: 1px;
}

.nav-arrows {
    display: flex;
    gap: 2rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(30, 41, 59, 0.1);
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background: var(--palmiye-primary) !important;
    border-color: var(--palmiye-primary) !important;
    color: var(--palmiye-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 600px;
    padding: 0;
}

.hero-title {
    color: #1e293b; /* Koyu mavi-gri */
    margin-bottom: 3rem;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #64748b; /* Orta gri */
}

.title-line-2 {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #1e293b; /* Koyu mavi-gri */
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.hero-buttons .btn {
    padding: 1.25rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-primary {
    background: var(--palmiye-primary) !important;
    border: 2px solid var(--palmiye-primary) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.hero-buttons .btn-primary:hover {
    background: var(--palmiye-primary-dark) !important;
    border-color: var(--palmiye-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 13, 110, 253), 0.15) !important;
    color: #ffffff !important;
}

/* Features Section */
.features-section {
    background: var(--palmiye-white);
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: var(--palmiye-radius-lg);
    box-shadow: var(--palmiye-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--palmiye-shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--palmiye-dark);
}

.feature-text {
    color: var(--palmiye-gray);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: var(--palmiye-light);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--palmiye-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--palmiye-gray);
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: var(--palmiye-radius-lg);
    overflow: hidden;
    box-shadow: var(--palmiye-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--palmiye-shadow-lg);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    color: var(--palmiye-dark);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--palmiye-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: var(--palmiye-white);
}

.about-title {
    font-size: 2.5rem;
    color: var(--palmiye-dark);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--palmiye-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--palmiye-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--palmiye-gray);
    margin-top: 0.5rem;
}

.about-image img {
    border-radius: var(--palmiye-radius-lg);
    box-shadow: var(--palmiye-shadow-md);
}

/* Projects Section */
.projects-section {
    background: var(--palmiye-light);
}

.project-card {
    background: white;
    border-radius: var(--palmiye-radius-lg);
    overflow: hidden;
    box-shadow: var(--palmiye-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--palmiye-shadow-lg);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    color: var(--palmiye-dark);
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--palmiye-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-category {
    display: inline-block;
    background: var(--palmiye-primary);
    color: var(--palmiye-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--palmiye-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

/* News Section */
.news-section {
    background: var(--palmiye-white);
}

.news-card {
    background: white;
    border-radius: var(--palmiye-radius-lg);
    overflow: hidden;
    box-shadow: var(--palmiye-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--palmiye-shadow-lg);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

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

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

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.875rem;
    color: var(--palmiye-gray);
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.news-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #1d4ed8;
}

/* CTA Section */
.cta-section {
    background: var(--palmiye-primary);
    color: #ffffff !important;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--palmiye-radius-lg);
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: white !important;
    border: 2px solid white !important;
    color: var(--primary-text, #000000) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.cta-buttons .btn-light:hover {
    background: var(--palmiye-light) !important;
    border-color: var(--palmiye-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--palmiye-shadow-lg) !important;
    color: var(--primary-text, #000000) !important;
}

.cta-buttons .btn-outline-light {
    border: 2px solid white !important;
    color: white !important;
    background: transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.cta-buttons .btn-outline-light:hover {
    background: white !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--palmiye-shadow-lg) !important;
    color: var(--primary-text, #000000) !important;
}

/* Footer */
.footer-main {
    background: var(--palmiye-dark);
    color: white;
}

.footer-main-content {
    padding: 3rem 0;
}

.footer-brand h3 {
    color: var(--palmiye-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--palmiye-gray);
    margin-bottom: 1.5rem;
}

.social-links .btn {
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-2px);
}

.footer-main h5 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-main ul li a {
    color: var(--palmiye-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-main ul li a:hover {
    color: var(--palmiye-primary);
}

.contact-info .btn {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--palmiye-gray);
    padding: 1.5rem 0;
}

.footer-links a {
    color: var(--palmiye-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--palmiye-primary);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Hover animations */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.project-card:hover .project-image {
    transform: scale(1.05);
}

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

/* Stagger animations for grid items */
.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }

.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }

.projects-grid .project-card:nth-child(1) { animation-delay: 0.1s; }
.projects-grid .project-card:nth-child(2) { animation-delay: 0.2s; }
.projects-grid .project-card:nth-child(3) { animation-delay: 0.3s; }

.news-grid .news-card:nth-child(1) { animation-delay: 0.1s; }
.news-grid .news-card:nth-child(2) { animation-delay: 0.2s; }
.news-grid .news-card:nth-child(3) { animation-delay: 0.3s; }

/* Additional utility classes */
.text-gradient {
    background: linear-gradient(135deg, var(--palmiye-primary) 0%, var(--palmiye-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--palmiye-primary) 0%, var(--palmiye-primary-dark) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--palmiye-secondary) 0%, var(--palmiye-secondary-dark) 100%);
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.shadow-strong {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.border-radius-sm { border-radius: 0.5rem; }
.border-radius-md { border-radius: 1rem; }
.border-radius-lg { border-radius: 1.5rem; }
.border-radius-xl { border-radius: 2rem; }

.transition-fast { transition: all 0.2s ease; }
.transition-normal { transition: all 0.3s ease; }
.transition-slow { transition: all 0.5s ease; }

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--palmiye-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--palmiye-primary-dark);
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .hero-navigation {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
    
    .feature-card,
    .product-card,
    .project-card,
    .news-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .products-carousel-section {
        padding: 2rem 0;
    }
    
    .product-carousel-card {
        break-inside: avoid;
        margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    /* Dropdown menüleri mobile'da tam genişlik yap */
    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        transform: none;
    }
    
    .navbar-nav .dropdown.show .dropdown-menu {
        transform: none;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .dropdown-item:hover {
        transform: none;
        margin: 0;
    }
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo a {
        font-size: 1.25rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    
    
    .hero-text {
        padding: 0 1rem;
        text-align: center;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }
    
    .header-content {
        padding: 0.4rem 0;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .header-actions .search-toggle,
    .header-actions .dropdown-toggle {
        padding: 0.3rem 0.5rem;
    }
    
    .language-selector .dropdown-toggle {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero-section {
        min-height: 80vh;
        margin-top: 0;
        padding-top: 0;
        z-index: 1;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .title-line-1 {
        font-size: 1.75rem;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .hero-navigation {
        bottom: 2rem;
    }
    
    .progress-line {
        width: 120px;
    }
    
    .nav-arrows {
        gap: 1rem;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid,
    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile fullscreen carousel improvements */
    .hero-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        max-width: 600px;
        padding: 0 1rem;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .title-line-1 {
        font-size: 1rem;
    }
    
    .title-line-2 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    

     
     .hero-indicator {
         width: 10px;
         height: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .header-content {
        padding: 0.3rem 0;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .header-actions .search-toggle,
    .header-actions .dropdown-toggle {
        padding: 0.25rem 0.4rem;
    }
    
    .language-selector .dropdown-toggle {
        font-size: 0.65rem;
        padding: 0.25rem 0.4rem;
    }
    
    .title-line-1 {
        font-size: 0.9rem;
    }
    
    .title-line-2 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 95%;
        margin: 0 auto 2rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
         .hero-navigation {
         bottom: 1rem;
         padding: 0.5rem 1rem;
         gap: 1rem;
         position: fixed;
         left: 50%;
         transform: translateX(-50%);
     }
     
     .progress-line {
         width: 80px;
         height: 2px;
     }
     
     .nav-arrow {
         width: 36px;
         height: 36px;
         font-size: 0.9rem;
     }
     
     .hero-indicators {
         right: 0.75rem;
         gap: 0.5rem;
         position: fixed;
         top: 50%;
         transform: translateY(-50%);
     }
     
     .hero-indicator {
         width: 8px;
         height: 8px;
    }
    
    .hero-section {
        min-height: 70vh;
        margin-top: 0;
        padding-top: 0;
        z-index: 1;
    }
    
    .features,
    .products,
    .about,
    .projects,
    .news,
    .cta {
        padding: 3rem 0;
    }
    
    .feature-card,
    .product-card,
    .project-card,
    .news-card {
        padding: 1.5rem;
    }
    
    .hero-content {
        bottom: 4rem;
        left: 2rem;
        right: 2rem;
        max-width: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    

}

/* Video Slide Styles */
.hero-section .slide-image[data-media-type="video"] {
    /* Video slides should not auto-advance */
    pointer-events: auto !important;
}

.hero-section .slide-image[data-media-type="video"] video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Disable auto-advance for video slides - controlled by JavaScript */

/* ===== PRODUCTS CAROUSEL SECTION ===== */
.products-carousel-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* ===== MODERN PRODUCT GRID CAROUSEL ===== */
.products-grid-carousel-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Products Grid Carousel Container */
.products-grid-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible;
}

/* Ultra Minimal Navigation */
.products-grid-carousel-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 8px;
}

.products-grid-carousel-section .owl-prev,
.products-grid-carousel-section .owl-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
}

.products-grid-carousel-section .owl-prev:hover,
.products-grid-carousel-section .owl-next:hover {
    background: var(--palmiye-primary) !important;
    border-color: var(--palmiye-primary) !important;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.products-grid-carousel-section .owl-prev i,
.products-grid-carousel-section .owl-next i {
    font-size: 1rem;
    color: inherit;
}

/* Ultra Clean Product Container */
.products-grid-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 2px;
}

/* Product Card Link */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Modern Product Card */
.product-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 400px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

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

/* Product Card Image Container */
.product-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Product Card Image */
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-card-img {
    transform: scale(1.05);
}

/* Gradient Overlay */
.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Product Card Content */
.product-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 3;
    text-align: center;
}

/* Product Card Title */
.product-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Product Card Subtitle */
.product-card-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid-carousel {
        padding: 0 20px;
    }
    
    .product-card-modern {
        height: 350px;
        max-width: 280px;
    }
    
    .product-card-title {
        font-size: 1.1rem;
    }
    
    .product-card-content {
        padding: 25px 20px;
    }
    
    .products-grid-carousel-section .owl-nav button[class*="owl-"] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .products-grid-carousel {
        padding: 0 20px;
    }
    
    .product-card-modern {
        max-width: 180px;
    }
}

@media (min-width: 1025px) {
    .products-grid-carousel {
        padding: 0 30px;
    }
    
    .product-card-modern {
        max-width: 200px;
    }
}

@media (min-width: 1200px) {
    .product-card-modern {
        max-width: 200px;
    }
}

/* Owl Carousel Responsive Settings */
.products-grid-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.products-grid-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* ===== ULTRA MODERN PRODUCT CAROUSEL ===== */
.products-grid-carousel-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Section Header Wrapper - Centered but not constrained */
.section-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Ultra Clean Carousel */
.products-grid-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible;
}

/* Ultra Minimal Navigation */
.products-grid-carousel-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 8px;
}

.products-grid-carousel-section .owl-prev,
.products-grid-carousel-section .owl-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.products-grid-carousel-section .owl-prev:hover,
.products-grid-carousel-section .owl-next:hover {
    background: var(--palmiye-primary) !important;
    border-color: var(--palmiye-primary) !important;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.products-grid-carousel-section .owl-prev i,
.products-grid-carousel-section .owl-next i {
    font-size: 1rem;
    color: inherit;
}

/* Navigation buttons are now visible but positioned outside carousel area */

/* Ultra Clean Product Container */
.products-grid-slide {
    display: flex;
    justify-content: center;
    padding: 0 8px;
    margin: 12px 0;
    width: 100%;
}

/* Ultra Modern Product Card */
.product-grid-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
    width: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.1);
}

/* Ultra Clean Product Image */
.product-grid-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fafbfc;
}

.product-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.product-grid-card:hover .product-grid-image img {
    transform: scale(1.02);
}

/* Minimal Product Overlay */
.product-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-grid-card:hover .product-grid-overlay {
    opacity: 1;
}

.discover-grid-btn {
    background: var(--palmiye-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.discover-grid-btn:hover {
    background: var(--palmiye-primary-dark);
    transform: translateY(-1px);
}

.discover-grid-btn i {
    transition: transform 0.15s ease;
}

.discover-grid-btn:hover i {
    transform: translateX(2px);
}

/* Ultra Clean Product Info */
.product-grid-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--palmiye-dark);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.product-grid-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.product-grid-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--palmiye-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-grid-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--palmiye-gray);
    font-size: 3rem;
}

/* Owl Carousel Navigation - Sağ ve Sol Tarafta */
.products-grid-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 30;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0;
    opacity: 1 !important;
}

/* Allow completely normal scrolling on carousel elements */
.products-grid-carousel .owl-stage {
    touch-action: auto;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: auto;
    -webkit-overscroll-behavior: auto;
    scroll-behavior: auto;
}

/* Allow normal page scroll throughout carousel area */
/* No scroll restrictions - page scroll works everywhere */

.products-grid-carousel .owl-item {
    touch-action: auto;
    overscroll-behavior: auto;
    -webkit-overscroll-behavior: auto;
}

/* Keep navigation visible */
.products-grid-carousel .owl-nav .owl-prev,
.products-grid-carousel .owl-nav .owl-next {
    opacity: 1;
    visibility: visible;
}

/* Navigation styling */
.products-grid-carousel-section .owl-nav {
    display: flex;
}

.products-grid-carousel-section .owl-nav button[class*="owl-"] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(30, 41, 59, 0.1);
    border-radius: 50%;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    z-index: 20;
    opacity: 1;
    visibility: visible;
}

.products-grid-carousel-section .owl-nav button[class*="owl-"]:hover {
    background: var(--palmiye-primary) !important;
    border-color: var(--palmiye-primary) !important;
    color: var(--palmiye-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.products-grid-carousel-section .owl-nav button[class*="owl-"]:active {
    transform: scale(0.95);
}

.products-grid-carousel-section .owl-nav button[class*="owl-"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.products-grid-carousel-section .owl-nav button span {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 575.98px) {
    .products-grid-carousel {
        padding: 0 20px;
    }

    .products-grid-carousel-section .owl-nav button[class*="owl-"] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-grid-carousel-section .owl-prev {
        margin-left: 5px;
    }

    .products-grid-carousel-section .owl-next {
        margin-right: 5px;
    }

    .product-grid-card {
        min-height: 380px;
        margin: 15px 0;
    }

    .products-grid-slide {
        padding: 0 10px;
        margin: 15px 0;
    }

    .product-grid-image {
        height: 220px;
    }

    .product-grid-info {
        padding: 1.5rem 1.25rem;
    }

    .product-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .product-grid-description {
        font-size: 0.9rem;
    }
}

/* Tablet & Up */
@media (min-width: 576px) {
    .products-grid-carousel {
        padding: 0 20px;
    }

    .product-grid-card {
        min-height: 380px;
        margin: 14px 0;
    }

    .products-grid-slide {
        padding: 0 8px;
        margin: 14px 0;
    }

    .product-grid-image {
        height: 230px;
    }

    .product-grid-info {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-grid-description {
        font-size: 0.85rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .products-grid-carousel {
        padding: 0 30px;
    }

    .product-grid-card {
        min-height: 400px;
        margin: 16px 0;
    }

    .products-grid-slide {
        padding: 0 12px;
        margin: 16px 0;
    }

    .product-grid-image {
        height: 250px;
    }

    .product-grid-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .product-grid-description {
        font-size: 0.9rem;
    }
}

/* Ultra Clean Mobile */
@media (max-width: 480px) {
    .products-grid-carousel {
        padding: 0 10px;
    }

    .product-grid-card {
        min-height: 320px;
    }

    .products-grid-slide {
        padding: 0 5px;
        margin: 8px 0;
    }

    .product-grid-image {
        height: 170px;
    }
}

/* Ultra Clean Base */
.products-grid-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.products-grid-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}


/* Footer Contact Info Styles */
.contact-item {
    padding: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #6c5ce7;
    margin-top: 0.25rem;
    min-width: 24px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
    }
    
    .contact-info-item i {
        font-size: 1.25rem;
    }
    
    .contact-info-item h6 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-info-item p,
    .contact-info-item a,
    .contact-info-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-info-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .contact-info-item i {
        font-size: 1.1rem;
    }
    
    .contact-info-item h6 {
        font-size: 0.85rem;
    }
    
    .contact-info-item p,
    .contact-info-item a,
    .contact-info-item span {
        font-size: 0.75rem;
    }
}

/* Ultra Modern Carousel Design Complete */

