/* ============================================
   MAJOLI TEKSTİL - MODERN CSS FRAMEWORK v2.0
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
    /* Color Palette */
    --luxury-gold: #d4af37;
    --luxury-gold-light: #e6c454;
    --luxury-gold-dark: #b8941f;
    --luxury-dark: #1a1a1a;
    --luxury-dark-light: #2c2c2c;
    --luxury-gray: #f8f9fa;
    --luxury-gray-dark: #e9ecef;
    --luxury-text: #333333;
    --luxury-text-light: #666666;
    --luxury-text-muted: #999999;
    --luxury-white: #ffffff;
    --luxury-black: #000000;
    /* Brand Colors */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    /* Typography Scale */
    --font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    /* Border Radius Scale */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 50%;
    /* Shadow Scale */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-luxury: 0 15px 35px rgba(0, 0, 0, 0.15);
    /* Transition Scale */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--luxury-text);
    background-color: var(--luxury-white);
    margin: 0;
    padding: 0;
    padding-top: 90px; /* 76px'den 90px'e çıkardık */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.75em;
    font-weight: 600;
    line-height: 1.2;
    color: var(--luxury-text);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-xxl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-md);
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--luxury-gold);
    text-decoration: none;
    transition: color var(--transition-normal);
}

    a:hover,
    a:focus {
        color: var(--luxury-gold-dark);
        text-decoration: underline;
    }

/* ============================================
   TRANSPARENT NAVIGATION SYSTEM
   ============================================ */
.luxury-nav {
    min-height: 90px; /* Navbar'ın minimum yüksekliği */
    z-index: 1000 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.1) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

    /* Scrolled state - daha koyu şeffaflık */
    .luxury-nav.scrolled {
        background: rgba(26, 26, 26, 0.85) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

/* Ana sayfada tamamen şeffaf */
.home-page .luxury-nav {
    background: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    /* Ana sayfada scroll sonrası */
    .home-page .luxury-nav.scrolled {
        background: rgba(26, 26, 26, 0.9) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }

/* Brand ve nav linkleri için ek kontras */
.luxury-nav .navbar-brand,
.luxury-nav .nav-link {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Navbar toggler için ek stil */
.luxury-nav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

    .luxury-nav .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.5);
    }

/* Brand Styling */
.luxury-brand {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: var(--luxury-gold) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

    .luxury-brand:hover {
        color: var(--luxury-gold-light) !important;
        transform: scale(1.02);
    }

.brand-logo {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    margin-right: var(--spacing-md);
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.luxury-brand:hover .brand-logo {
    transform: scale(1.1) rotate(2deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-subtitle {
    font-size: var(--font-size-xs);
    display: block;
    letter-spacing: 2px;
    margin-top: -5px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    transition: all var(--transition-normal);
    position: relative;
    border-radius: var(--border-radius-md);
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--luxury-gold) !important;
        background-color: rgba(212, 175, 55, 0.1);
        transform: translateY(-1px);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--luxury-gold);
        transition: all var(--transition-normal);
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--luxury-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        opacity: 0.6;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
    animation: logoFloat 4s ease-in-out infinite;
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    font-size: var(--font-size-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.4s both;
}

    .hero-stats .stat-item {
        background: rgba(255, 255, 255, 0.15);
        padding: var(--spacing-xl);
        border-radius: var(--border-radius-2xl);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all var(--transition-normal);
        height: 100%;
    }

        .hero-stats .stat-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-2xl);
        }

.stat-number {
    color: var(--luxury-gold);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-full);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 25%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 20%;
    animation-delay: 1s;
}

/* ============================================
   BUTTON SYSTEM
   ============================================ */
.btn-luxury {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    border: none;
    color: var(--luxury-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .btn-luxury::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left var(--transition-slow);
    }

    .btn-luxury:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
        color: var(--luxury-white);
    }

        .btn-luxury:hover::before {
            left: 100%;
        }

    .btn-luxury:active {
        transform: translateY(-1px);
    }

    .btn-luxury:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    }

/* ============================================
   CARD SYSTEM
   ============================================ */
.feature-card,
.contact-card,
.value-card,
.team-card,
.info-card {
    background: var(--luxury-white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--luxury-gray-dark);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card,
.contact-card {
    padding: var(--spacing-xl);
}

    .feature-card::before,
    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
        transform: scaleX(0);
        transition: transform var(--transition-normal);
    }

    .feature-card:hover,
    .contact-card:hover,
    .value-card:hover,
    .team-card:hover,
    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-luxury);
        border-color: var(--luxury-gold);
    }

        .feature-card:hover::before,
        .contact-card:hover::before {
            transform: scaleX(1);
        }

/* Icon Styling */
.feature-icon,
.contact-icon,
.value-icon,
.info-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-xl);
    position: relative;
    overflow: hidden;
}

    .feature-icon::before,
    .contact-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform var(--transition-slow);
    }

.feature-card:hover .feature-icon::before,
.contact-card:hover .contact-icon::before {
    transform: translateX(100%);
}

/* ============================================
   PRODUCT SYSTEM
   ============================================ */
.product-card {
    border: none;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    background: var(--luxury-white);
    will-change: transform;
}

    .product-card:hover {
        transform: translate3d(0, -12px, 0) scale(1.02);
        box-shadow: var(--shadow-2xl);
    }

/* Product Image Container */
.product-image {
    height: 300px;
    max-height: 300px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    background: var(--luxury-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all var(--transition-slow);
    }

.product-card:hover .product-image img:not([src*="placeholder"]) {
    transform: scale(1.15);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--luxury-gray) 0%, var(--luxury-gray-dark) 100%);
    border: 2px dashed #dee2e6;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .placeholder-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: placeholderShimmer 3s ease-in-out infinite;
    }

.product-card:hover .placeholder-image {
    border-color: #adb5bd;
    background: linear-gradient(135deg, var(--luxury-gray-dark) 0%, #dee2e6 100%);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: var(--spacing-xl);
}

.product-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--luxury-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.product-details {
    font-size: var(--font-size-sm);
    color: var(--luxury-text-light);
    margin-bottom: var(--spacing-lg);
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: var(--spacing-md);
}

.image-count-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(0, 0, 0, 0.8);
    color: var(--luxury-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInScale 0.3s ease-out;
}

/* ============================================
   FILTER SYSTEM
   ============================================ */
.filter-section {
    background: linear-gradient(135deg, var(--luxury-gray) 0%, #ffffff 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--luxury-gray-dark);
    position: sticky;
    top: 75px;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 100%;
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
}

    .filter-buttons::-webkit-scrollbar {
        height: 4px;
    }

    .filter-buttons::-webkit-scrollbar-track {
        background: var(--luxury-gray);
        border-radius: var(--border-radius-sm);
    }

    .filter-buttons::-webkit-scrollbar-thumb {
        background: var(--luxury-gold);
        border-radius: var(--border-radius-sm);
    }

.filter-btn {
    background: var(--luxury-white);
    border: 1px solid var(--luxury-gray-dark);
    color: var(--luxury-text-light);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 25px;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: var(--font-size-sm);
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

    .filter-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left var(--transition-normal);
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--luxury-gold);
        border-color: var(--luxury-gold);
        color: var(--luxury-white);
        transform: translate3d(0, -2px, 0);
        box-shadow: var(--shadow-md);
        text-decoration: none;
    }

        .filter-btn:hover::before,
        .filter-btn.active::before {
            left: 100%;
        }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
}

    .about-image img {
        width: 100%;
        height: auto;
        transition: transform var(--transition-slow);
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 80%, transparent 100% );
    padding: var(--spacing-xl);
    transform: translateY(60%);
    transition: all var(--transition-normal);
    opacity: 0;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content {
    color: var(--luxury-white) !important;
    text-align: center;
}

    .overlay-content h4 {
        color: var(--luxury-white) !important;
        font-size: var(--font-size-xl);
        font-weight: 700;
        margin-bottom: var(--spacing-sm);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .overlay-content p {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: var(--font-size-md);
        margin-bottom: 0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

.feature-item {
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* ============================================
   FOOTER SYSTEM
   ============================================ */
.luxury-footer {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-dark-light) 100%);
    color: var(--luxury-white);
    position: relative;
    overflow: hidden;
}

    .luxury-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    }

    .luxury-footer .container {
        position: relative;
        z-index: 2;
    }

    .luxury-footer h5 {
        color: var(--luxury-white) !important;
        font-weight: 600;
        margin-bottom: var(--spacing-lg);
        position: relative;
    }

        .luxury-footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--luxury-gold);
        }

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: var(--spacing-lg);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
    padding: var(--spacing-xs) 0;
}

    .footer-link:hover {
        color: var(--luxury-gold) !important;
        padding-left: var(--spacing-sm);
        text-decoration: none;
    }

.contact-info p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color var(--transition-normal);
}

    .contact-info a:hover {
        color: var(--luxury-gold) !important;
    }

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

    .social-links a,
    .social-link,
    .social-link-btn {
        width: 45px;
        height: 45px;
        border-radius: var(--border-radius-full);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8) !important;
        transition: all var(--transition-normal);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        text-decoration: none;
    }

        .social-links a:hover,
        .social-link:hover,
        .social-link-btn:hover {
            background: var(--luxury-gold);
            color: var(--luxury-white) !important;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-images .main-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
}

    .product-detail-images .main-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .product-detail-images .main-image:hover img {
        transform: scale(1.05);
    }

.thumbnail-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    cursor: pointer;
}

    .thumbnail-img:hover,
    .thumbnail-img.active {
        border-color: var(--luxury-gold);
        transform: scale(1.05);
        box-shadow: var(--shadow-md);
    }

    .thumbnail-img:not([src*="placeholder"]):hover {
        transform: scale(1.08);
    }

.product-specs .table {
    background: var(--luxury-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .product-specs .table td {
        border: none;
        padding: var(--spacing-lg);
        vertical-align: middle;
    }

    .product-specs .table tr:nth-child(even) {
        background-color: var(--luxury-gray);
    }

.price-card {
    background: var(--luxury-gray);
    border: 2px solid var(--luxury-gray-dark);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
}

    .price-card:hover {
        border-color: var(--luxury-gold);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
        transform: translateY(-2px);
    }

/* ============================================
   BREADCRUMB SYSTEM
   ============================================ */
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.breadcrumb-item {
    font-size: var(--font-size-sm);
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: "\203A";
        font-weight: bold;
        color: var(--luxury-gold);
        font-size: var(--font-size-lg);
    }

    .breadcrumb-item a {
        color: var(--luxury-text-light);
        text-decoration: none;
        transition: color var(--transition-normal);
    }

        .breadcrumb-item a:hover {
            color: var(--luxury-gold);
        }

    .breadcrumb-item.active {
        color: var(--luxury-text);
        font-weight: 500;
    }

/* ============================================
   PAGE HEADERS & SPECIFIC PAGES
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #2c2c2c 100%);
    color: white;
    padding: 80px 0 40px;
    margin-top: -76px;
    padding-top: 156px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

.page-logo {
    max-height: 80px;
    opacity: 0.9;
}

/* About Page Specific */
.section-badge .badge {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
}

.bg-luxury {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #b8941f 100%) !important;
}

.text-luxury {
    color: var(--luxury-gold) !important;
}

.story-image {
    position: relative;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: 20px;
    z-index: 10;
}

.luxury-card {
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

/* Values Cards */
.value-card {
    padding: 2rem;
    text-align: center;
}

.value-icon {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #b8941f 100%);
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

/* Team Cards */
.team-card {
    overflow: hidden;
}

.team-image {
    position: relative;
    overflow: hidden;
}

    .team-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-role {
    color: var(--luxury-gold);
    font-weight: 500;
    margin: 0;
}

/* Contact Page Specific */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-info-card {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .contact-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--luxury-gold);
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--luxury-gold);
    text-decoration: none;
}

/* Map and Info Cards */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card {
    padding: 2rem;
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--luxury-gold);
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Form Improvements */
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-floating > label {
    color: #666;
}

.contact-form .btn-luxury {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ============================================
   MODAL SYSTEM
   ============================================ */
.modal-content {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.modal-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    color: #333333 !important;
    font-weight: 600;
}

.modal-body {
    background-color: #ffffff !important;
    color: #333333 !important;
}

    .modal-body h6 {
        color: #333333 !important;
    }

    .modal-body .contact-info {
        background: transparent !important;
        padding: 0 !important;
    }

        .modal-body .contact-info p {
            color: #333333 !important;
            margin-bottom: 1rem;
        }

        .modal-body .contact-info strong {
            color: #333333 !important;
        }

        .modal-body .contact-info a {
            text-decoration: none;
        }

            .modal-body .contact-info a:hover {
                text-decoration: underline;
            }

.modal-footer {
    background-color: #ffffff !important;
    border-top: 1px solid #dee2e6;
}

#contactModal * {
    color: inherit !important;
}

#contactModal .modal-content * {
    color: #333333 !important;
}

#contactModal .text-success {
    color: #28a745 !important;
}

#contactModal .text-primary {
    color: #007bff !important;
}

#contactModal .text-dark {
    color: #333333 !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
    margin: var(--spacing-lg) auto;
    border-radius: var(--border-radius-sm);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fixed);
    display: none;
    width: 55px;
    height: 55px;
    border-radius: var(--border-radius-full);
    padding: 0;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-full);
    border-top-color: var(--luxury-gold);
    animation: spin 1s linear infinite;
}

.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.image-loading-state {
    position: relative;
    overflow: hidden;
}

    .image-loading-state::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
        animation: imageLoadShimmer 1.5s infinite;
    }

.filter-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

    .filter-loading .loading-spinner {
        width: 16px;
        height: 16px;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: var(--border-radius-full);
        animation: spin 1s linear infinite;
    }

.empty-state {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

    .empty-state i {
        font-size: 4rem;
        color: var(--luxury-text-muted);
        margin-bottom: var(--spacing-lg);
        opacity: 0.6;
    }

    .empty-state h4 {
        color: var(--luxury-text-light);
        margin-bottom: var(--spacing-md);
    }

    .empty-state p {
        color: var(--luxury-text-muted);
        max-width: 400px;
        margin: 0 auto var(--spacing-lg);
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.8;
    }

    66% {
        transform: translateY(15px) rotate(240deg);
        opacity: 0.4;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

@keyframes placeholderShimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes imageLoadShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN SYSTEM
   ============================================ */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    .images-container {
        height: 750px;
        max-width: 2100px;
    }

    .left-image,
    .right-image {
        width: 550px;
        height: 650px;
    }

    .center-image {
        width: 620px;
        height: 720px;
    }
}

/* Medium screens (768px to 1199px) */
@media (max-width: 1199.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .stat-number {
        font-size: var(--font-size-3xl);
    }

    /* Three images responsive for large tablets */
    .images-container {
        height: 550px;
        max-width: 1400px;
    }

    .left-image,
    .right-image {
        width: 420px;
        height: 500px;
    }

    .center-image {
        width: 460px;
        height: 540px;
    }
}

/* Tablet screens (768px to 991px) */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0 50px;
        min-height: 80vh;
    }

    .hero-logo-img {
        height: 100px;
        max-width: 150px;
    }

    .luxury-brand {
        font-size: var(--font-size-xl);
    }

    .brand-logo {
        height: 45px;
        max-width: 45px;
    }

    .product-image {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }

    .filter-section {
        position: relative;
        top: auto;
    }

    .filter-buttons {
        justify-content: flex-start;
        padding: var(--spacing-sm);
    }

    .filter-btn {
        flex-shrink: 0;
        min-width: 120px;
        text-align: center;
    }

    /* Three images for tablets */
    .images-container {
        height: 480px;
        max-width: 1000px;
    }

    .left-image,
    .right-image {
        width: 350px;
        height: 420px;
    }

    .center-image {
        width: 380px;
        height: 460px;
    }
}

/* Mobile screens (up to 767px) */
@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 60px 0 40px;
        min-height: 70vh;
    }

    .hero-logo-img {
        height: 80px;
        max-width: 120px;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: var(--font-size-md);
    }

    .stat-number {
        font-size: var(--font-size-xxl);
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .luxury-brand {
        font-size: var(--font-size-lg);
    }

    .brand-logo {
        height: 40px;
        max-width: 40px;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }

    .product-image {
        height: 250px;
        min-height: 250px;
        max-height: 250px;
    }

    .placeholder-image {
        min-height: 250px;
    }

    .product-detail-images .main-image img {
        height: 300px !important;
    }

    .action-buttons .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
        gap: var(--spacing-xs);
    }

    .filter-btn {
        flex-shrink: 0;
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-xs);
        min-width: 100px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        height: 50px;
        max-width: 50px;
    }

    .about-logo {
        height: 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }

    .floating-card {
        position: static;
        margin-top: 2rem;
    }

    .team-image img {
        height: 250px;
    }

    /* Three images for mobile - Bigger sizes */
    .three-images-showcase {
        padding: var(--spacing-xl) 0;
    }

    .images-container {
        height: 350px;
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }

    .left-image {
        position: relative;
        left: auto;
        width: 160px;
        height: 280px;
        margin-right: -30px;
    }

    .center-image {
        position: relative;
        left: auto;
        transform: none;
        width: 180px;
        height: 320px;
        margin: 0 -30px;
    }

    .right-image {
        position: relative;
        right: auto;
        width: 160px;
        height: 280px;
        margin-left: -30px;
    }

    /* Mobile animations */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInCenter {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Small mobile screens (up to 575px) */
@media (max-width: 575.98px) {
    .hero-stats .col-6 {
        margin-bottom: var(--spacing-lg);
    }

    .stat-item {
        padding: var(--spacing-lg) !important;
    }

    .stat-number {
        font-size: var(--font-size-xl);
    }

    .stat-label {
        font-size: var(--font-size-xs);
    }

    .feature-card,
    .contact-card {
        padding: var(--spacing-lg);
    }

    .feature-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-lg);
    }

    .product-image {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }

    .placeholder-image {
        min-height: 220px;
    }

    .product-card:hover {
        transform: translate3d(0, -4px, 0) scale(1.01);
    }

    /* Three images for small mobile - Still bigger */
    .images-container {
        height: 300px;
        padding: 0 var(--spacing-sm);
    }

    .left-image,
    .right-image {
        width: 130px;
        height: 220px;
        margin: 0 -20px;
    }

    .center-image {
        width: 150px;
        height: 260px;
        margin: 0 -20px;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

.filter-btn:focus,
.product-card:focus-within {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

.product-card:focus-within {
    transform: translate3d(0, -8px, 0) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--luxury-gold);
    color: var(--luxury-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    z-index: var(--z-tooltip);
}

    .skip-link:focus {
        top: 6px;
    }

/* Performance optimizations */
.product-card,
.filter-btn,
.product-image img {
    will-change: transform;
}

/* Lazy loading for intersection observer */
.product-image[data-loading="true"] {
    background: var(--luxury-gray);
    position: relative;
}

    .product-image[data-loading="true"]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 30px;
        border: 3px solid var(--luxury-gray-dark);
        border-top: 3px solid var(--luxury-gold);
        border-radius: var(--border-radius-full);
        animation: spin 1s linear infinite;
        transform: translate(-50%, -50%);
    }

/* ============================================
   PREFERENCE-BASED QUERIES
   ============================================ */

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --luxury-white: #1a1a1a;
        --luxury-text: #e9ecef;
        --luxury-text-light: #adb5bd;
        --luxury-gray: #2c2c2c;
        --luxury-gray-dark: #404040;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --luxury-gold: #ffaa00;
        --luxury-text: #000000;
        --luxury-white: #ffffff;
    }

    .btn-luxury {
        border: 2px solid var(--luxury-text);
    }

    .placeholder-image {
        border: 3px solid var(--luxury-text);
        background: var(--luxury-white);
    }

    .filter-btn {
        border: 2px solid var(--luxury-text);
    }

    .product-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .placeholder-image::before,
    .image-loading-state::after {
        animation: none;
    }

    .product-card:hover {
        transform: none;
    }

    .filter-btn:hover {
        transform: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .luxury-nav,
    .hero-bg-animation,
    .floating-shapes,
    .back-to-top,
    .social-links,
    .filter-section,
    .product-overlay,
    .image-count-badge {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

    .hero-section {
        padding: 2rem 0;
        background: var(--luxury-white) !important;
        color: var(--luxury-text) !important;
    }

    .product-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .product-image {
        height: auto !important;
        min-height: auto !important;
    }

        .product-image img {
            height: auto !important;
        }
}

/* ============================================
   MAIN HERO IMAGE SECTION
   ============================================ */
.main-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px; /* -76px'den -90px'e çıkardık */
    padding-top: 90px; /* 76px'den 90px'e çıkardık */
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1) 100% );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .hero-overlay .container {
        position: relative;
        z-index: 3;
    }

.hero-content {
    text-align: center;
    color: var(--luxury-white);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    padding-top: calc(var(--spacing-xl) + 90px); /* 76px'den 90px'e çıkardık */
}
/* Ana sayfa için özel body düzenlemesi */
.home-page {
    padding-top: 0 !important;
}

    .home-page .main-hero-section {
        margin-top: 0;
        padding-top: 0;
    }

    .home-page .hero-content {
        padding-top: calc(var(--spacing-xl) + 100px);
    }
.hero-logo {
    margin-bottom: var(--spacing-xl);
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--luxury-white) !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--luxury-white) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments for main hero */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 767.98px) {
    .main-hero-section {
        height: 80vh;
        min-height: 500px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .hero-content {
        padding: var(--spacing-lg);
        padding-top: calc(var(--spacing-lg) + 70px);
    }

    .home-page .hero-content {
        padding-top: calc(var(--spacing-lg) + 90px);
    }

    .hero-logo-img {
        height: 80px;
        max-width: 120px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .main-hero-section {
        height: 70vh;
        min-height: 450px;
        margin-top: -65px;
        padding-top: 65px;
    }

    .hero-content {
        padding: var(--spacing-md);
        padding-top: calc(var(--spacing-md) + 65px);
    }

    .home-page .hero-content {
        padding-top: calc(var(--spacing-md) + 85px);
    }

    .hero-logo-img {
        height: 60px;
        max-width: 100px;
    }
}

/* ============================================
   THREE IMAGES SHOWCASE SECTION
   ============================================ */
.three-images-showcase {
    background: var(--luxury-gray);
    padding: calc(var(--spacing-xxl) * 2) 0;
    overflow: hidden;
}

.images-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    max-width: 2000px;
    margin: 0 auto;
}

.image-wrapper {
    position: absolute;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    background: var(--luxury-white);
    padding: 15px;
}

/* Sol resim için sadece gölge efekti - çerçeve büyümez */
.left-image:hover {
    box-shadow: var(--shadow-2xl);
}

/* Orta ve sağ resimler için çerçeve + resim büyütme */
.center-image:hover,
.right-image:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-2xl);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

/* Tüm resimler içindeki görseller için hover efekti - resim büyür */
.left-image:hover .showcase-image,
.center-image:hover .showcase-image,
.right-image:hover .showcase-image {
    transform: scale(1.05);
}

/* Sol resim - Daha büyük boyut */
.left-image {
    left: -200px;
    width: 520px;
    height: 620px;
    z-index: 1;
    animation: slideInLeft 1s ease-out;
}

/* Orta resim - En büyük boyut ve üste binecek */
.center-image {
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    height: 680px;
    z-index: 3;
    animation: slideInCenter 1s ease-out 0.2s both;
}

/* Sağ resim - Daha büyük boyut */
.right-image {
    right: -200px;
    width: 520px;
    height: 620px;
    z-index: 1;
    animation: slideInRight 1s ease-out 0.4s both;
}

/* Animations for three images */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero logo büyük versiyonu */
.hero-logo-large {
    height: 200px !important; /* Mevcut 120px'den 200px'e çıkardık */
    width: auto;
    max-width: 350px !important; /* Mevcut 200px'den 350px'e çıkardık */
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.4)) !important;
    animation: logoFloat 4s ease-in-out infinite;
    margin-bottom: 2rem; /* Ek boşluk */
}

/* Responsive ayarlar */
@media (max-width: 991.98px) {
    .hero-logo-large {
        height: 150px !important;
        max-width: 250px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-logo-large {
        height: 120px !important;
        max-width: 180px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-logo-large {
        height: 100px !important;
        max-width: 150px !important;
    }
}

/* Navbar logo büyük versiyonu - daha büyük boyutlar */
.brand-logo-large {
    height: 85px !important; /* 70px'den 85px'e çıkardık */
    width: auto;
    max-width: 150px !important; /* 120px'den 150px'e çıkardık */
    object-fit: contain;
    margin-right: var(--spacing-md);
    transition: all var(--transition-normal);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.5));
}

.luxury-brand:hover .brand-logo-large {
    transform: scale(1.1) rotate(2deg);
}

/* Responsive ayarlar navbar için - güncellenmiş boyutlar */
@media (max-width: 991.98px) {
    .brand-logo-large {
        height: 75px !important; /* 60px'den 75px'e çıkardık */
        max-width: 130px !important; /* 100px'den 130px'e çıkardık */
    }
}

@media (max-width: 767.98px) {
    .brand-logo-large {
        height: 65px !important; /* 50px'den 65px'e çıkardık */
        max-width: 110px !important; /* 80px'den 110px'e çıkardık */
    }
}

@media (max-width: 575.98px) {
    .brand-logo-large {
        height: 55px !important; /* 45px'den 55px'e çıkardık */
        max-width: 90px !important; /* 70px'den 90px'e çıkardık */
    }
}

/* Luxury brand için ek düzenleme - metin olmadığı için ortalama */
.luxury-brand {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: var(--luxury-gold) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; /* Logo'yu ortala */
    transition: all var(--transition-normal);
}
    /* Navbar logo büyük versiyonu - önceki kurala göre daha spesifik */
    .navbar-brand .brand-logo-large,
    .luxury-brand .brand-logo-large {
        height: 85px !important;
        width: auto !important;
        max-width: 150px !important;
        object-fit: contain;
        margin-right: var(--spacing-md);
        transition: all var(--transition-normal);
        filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.5)) !important;
    }

    .luxury-brand:hover .brand-logo-large {
        transform: scale(1.1) rotate(2deg) !important;
    }

/* Responsive ayarlar navbar için - daha spesifik kurallar */
@media (max-width: 991.98px) {
    .navbar-brand .brand-logo-large,
    .luxury-brand .brand-logo-large {
        height: 75px !important;
        max-width: 130px !important;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand .brand-logo-large,
    .luxury-brand .brand-logo-large {
        height: 65px !important;
        max-width: 110px !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand .brand-logo-large,
    .luxury-brand .brand-logo-large {
        height: 55px !important;
        max-width: 90px !important;
    }
}