/* ========================================
   PRESTIJ JUWELIER - PREMIUM CSS
   Modern Luxury Jewelry Website
   ======================================== */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --gold-primary: #2c2c2c;
    --gold-dark: #1a1a1a;
    --gold-light: #f5f5f5;
    --black: #0A0A0A;
    --gray-dark: #2A2A2A;
    --gray: #6B6B6B;
    --gray-light: #E0E0E0;
    --white: #FFFFFF;
    --cream: #FAFAF7;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Animations */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 5px 25px rgba(44, 44, 44, 0.25);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--gold-primary);
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.loader {
    text-align: center;
}

.loader i {
    font-size: 48px;
    color: var(--gold-primary);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--black);
    margin-top: 20px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    position: relative;
}

/* Split Navigation */
.nav-wrapper-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-left,
.nav-menu-right {
    display: flex;
    gap: 40px;
}

/* Center Logo */
.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    text-align: center;
    transition: var(--transition);
}

.logo-center i {
    font-size: 36px;
    color: var(--gold-primary);
    text-shadow: 0 2px 10px rgba(44, 44, 44, 0.3);
}

.logo-center span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--black);
    text-shadow: none;
    transition: var(--transition);
}

.logo-center:hover {
    transform: scale(1.05);
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-dark);
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--black);
    transition: var(--transition);
}

.logo i {
    font-size: 28px;
    color: var(--gold-primary);
}

.logo:hover {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu */
.nav-mobile {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background: var(--white);
    padding: 20px 30px 30px;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.nav-mobile.active {
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile ul li {
    border-bottom: 1px solid var(--gold-light);
    padding-bottom: 8px;
}

.nav-mobile .nav-link {
    font-size: 16px;
    color: var(--black);
    text-shadow: none;
    display: block;
    padding: 8px 0;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: none; /* Hidden on desktop */
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gold-primary);
}

.mobile-lang-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.mobile-lang-option .fi {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.mobile-lang-option:hover {
    background: var(--gold-light);
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.mobile-lang-option.active {
    background: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Language Switcher - Dropdown */
.language-switcher {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.navbar.scrolled .lang-dropdown-btn {
    background: rgba(44, 44, 44, 0.1);
    border-color: var(--gold-primary);
}

.lang-dropdown-btn .lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-dropdown-btn .lang-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    flex: 1;
}

.navbar.scrolled .lang-dropdown-btn .lang-text {
    color: var(--black);
    text-shadow: none;
}

.lang-dropdown-btn i {
    font-size: 12px;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .lang-dropdown-btn i {
    color: var(--black);
}

.lang-dropdown-btn:hover {
    background: rgba(44, 44, 44, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.lang-dropdown-btn.active i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.lang-option:hover {
    background: var(--gold-light);
}

.lang-option.active {
    background: rgba(44, 44, 44, 0.2);
    position: relative;
}

.lang-option.active::after {
    content: '✓';
    position: absolute;
    right: 16px;
    color: var(--gold-dark);
    font-weight: bold;
}

.lang-option .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-option .lang-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    flex: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .menu-toggle span {
    background: var(--black);
    box-shadow: none;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === HERO SECTION === */
/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding: 0 !important;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    animation: kenburns 30s ease-in-out infinite alternate;
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

@keyframes kenburns {
    0% { 
        transform: scale(1) translateX(0); 
    }
    100% { 
        transform: scale(1.05) translateX(-1%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 120px;
}

/* Hero Overlay Panel - Sol taraf */
.hero-overlay-panel {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    max-width: 650px;
    height: 100%;
    background: rgba(20, 30, 50, 0.5);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px 0 120px;
    padding-top: 150px;
    z-index: 2;
    border-right: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.4);
}

/* Hero Menu Links - Removed */
.hero-menu-links {
    display: none;
}

.hero-content {
    width: 100%;
    text-align: left;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: #d4d4d4;
    margin: 0 0 40px 0;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.hero-btn {
    display: inline-block;
    padding: 16px 50px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    color: var(--black);
    border-color: var(--white);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide old hero elements */
.hero-label {
    display: none;
}

.hero-title {
    display: none;
}

.hero-text {
    display: none;
}

.hero-buttons {
    display: none;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot:hover {
    background: rgba(44, 44, 44, 0.7);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--gold-primary);
    width: 40px;
    border-radius: 10px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gold-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--gold-primary);
    margin: 10px auto 0;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-dark);
}

.btn-outline:hover {
    background: var(--gray-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--gray-dark);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-dark);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Hero Section Button Enhancements */
.hero-buttons .btn {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-buttons .btn-primary:hover {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.5);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === POPULAR COLLECTIONS === */
.popular-collections {
    padding: 100px 0;
    background: var(--white);
}

.collections-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-collection-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: var(--white);
    cursor: pointer;
    will-change: transform, box-shadow;
}

.gallery-collection-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(212, 175, 55, 0.3);
}

.collection-image {
    position: relative;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.collection-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s ease;
    will-change: transform;
}

.gallery-collection-item:hover .collection-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.7) 0%, 
                rgba(50, 50, 50, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(2px);
}

.gallery-collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay i {
    font-size: 50px;
    color: var(--gold-primary);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-collection-item:hover .collection-overlay i {
    transform: scale(1) rotate(360deg);
}

.collection-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-collection-item:hover .collection-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.collection-info {
    padding: 25px;
    text-align: center;
    transition: background 0.3s ease;
}

.gallery-collection-item:hover .collection-info {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    transition: all 0.4s ease;
}

.gallery-collection-item:hover .collection-info h3 {
    color: var(--gold-dark);
    transform: translateY(-2px);
    letter-spacing: 0.5px;
}

.collection-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.gallery-collection-item:hover .collection-info p {
    color: #999;
}

/* === FEATURES === */
.features {
    padding: 80px 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border-radius: 50%;
    font-size: 32px;
    color: var(--gold-primary);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gold-primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--black);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray);
}

/* === SECTIONS === */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    padding: 8px 25px;
    background: var(--gold-light);
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* === ABOUT === */
.about {
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
}

.about-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 30px;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-dark);
}

.about-feature i {
    color: var(--gold-primary);
    font-size: 20px;
}

/* === INVESTMENT GOLD === */
.investment-gold {
    background: var(--cream);
    padding: 100px 0;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.investment-card {
    background: var(--white);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.investment-card:hover::before {
    transform: scaleX(1);
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.investment-icon {
    width: 100%;
    height: 200px;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.investment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.1), rgba(250, 250, 247, 0.1));
    z-index: 1;
    transition: var(--transition);
}

.investment-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.investment-card:hover .investment-icon::before {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.1), rgba(26, 26, 26, 0.1));
}

.investment-card:hover .investment-icon img {
    transform: scale(1.05);
}

.investment-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--black);
    margin-bottom: 15px;
}

.investment-card > p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.investment-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.investment-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-dark);
    font-size: 14px;
}

.investment-features i {
    color: var(--gold-primary);
    font-size: 16px;
}

.investment-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gold-primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: var(--transition);
}

.investment-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.3);
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === SERVICES === */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border-radius: 50%;
    font-size: 32px;
    color: var(--gold-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--black);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* === GALLERY === */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* === CONTACT === */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info .section-subtitle {
    display: block;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-info .lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 60px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 35px 25px;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.3);
}

.contact-text {
    text-align: center;
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.contact-text a {
    color: var(--gold-primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--gold-dark);
}

.contact-text a:hover {
    color: var(--gold-primary);
}

/* === FOOTER === */
.footer {
    background: var(--gray-dark);
    color: var(--gray-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--gold-primary);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-light);
}

/* === FLOAT BUTTONS === */
.back-to-top {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    bottom: 30px;
    background: var(--gold-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
}

.cookie-text p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--gold-primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}

.cookie-decline {
    background: var(--gray-light);
    color: var(--gray-dark);
}

.cookie-decline:hover {
    background: var(--gray);
    color: var(--white);
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-wrapper-split {
        gap: 40px;
    }
    
    .nav-menu-left,
    .nav-menu-right {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .logo-center i {
        font-size: 32px;
    }
    
    .logo-center span {
        font-size: 18px;
    }
    
    /* Tablet Hero Adjustments */
    .hero-overlay-panel {
        width: 50%;
        max-width: 500px;
        padding: 40px;
    }
    
    .hero-menu-links {
        right: 40px;
        gap: 20px;
    }
    
    .hero-menu-links a {
        font-size: 11px;
    }
    
    .hero-main-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 26px;
    }
    
    .hero-slide .container {
        padding-bottom: 110px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .collections-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide split menu on mobile */
    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo-center span {
        color: var(--black);
        text-shadow: none;
    }
    
    .logo-center i {
        font-size: 28px;
    }
    
    .logo-center span {
        font-size: 16px;
    }
    
    /* Hide desktop language switcher on mobile */
    .language-switcher {
        display: none;
    }
    
    /* Show mobile language switcher */
    .mobile-lang-switcher {
        display: block;
    }
    
    .lang-dropdown-btn {
        padding: 8px 12px;
        min-width: 80px;
    }
    
    .lang-dropdown-btn .lang-text {
        font-size: 12px;
    }
    
    .lang-dropdown-menu {
        min-width: 140px;
    }
    
    .lang-option {
        padding: 10px 12px;
    }
    
    .lang-option .lang-text {
        font-size: 13px;
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        padding: 15px 0;
    }
    
    .nav-wrapper-split {
        justify-content: space-between;
        gap: 15px;
    }
    
    /* Mobile Hero Layout - Şerit halinde altta */
    .hero-overlay-panel {
        width: 100%;
        max-width: 100%;
        height: auto;
        bottom: 0;
        top: auto;
        left: 0;
        padding: 30px 20px;
        background: linear-gradient(
            180deg,
            rgba(15, 25, 45, 0.95) 0%,
            rgba(10, 20, 35, 0.98) 100%
        );
        border-right: none;
        border-top: 2px solid rgba(212, 175, 55, 0.4);
        align-items: flex-start;
    }
    
    .hero-menu-links {
        display: none;
    }
    
    .hero-main-title {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 12px 35px;
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .hero-slide .container {
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 0.5px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 20px;
    }
    
    .slider-next {
        right: 20px;
    }
    
    .slider-dots {
        bottom: 30px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .investment-card {
        padding: 40px 30px;
    }
    
    .investment-icon {
        height: 180px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-overlay-panel {
        padding: 25px 15px;
    }
    
    .hero-main-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .hero-btn {
        padding: 10px 30px;
        font-size: 10px;
    }
    
    .hero-slide .container {
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 0px;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    .hero-label {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .investment-grid {
        gap: 20px;
    }
    
    .investment-card {
        padding: 30px 20px;
    }
    
    .investment-card h3 {
        font-size: 22px;
    }
    
    .investment-icon {
        height: 160px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .collections-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .collection-info {
        padding: 20px;
    }
    
    .collection-info h3 {
        font-size: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        max-width: 100%;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-text h4 {
        font-size: 16px;
    }
    
    .contact-text p {
        font-size: 14px;
    }
    
    /* Cookie Consent Mobile */
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* ========================================== */
/* RTL SUPPORT (ARABIC) */
/* ========================================== */

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-wrapper-split {
    flex-direction: row-reverse;
}

body.rtl .nav-menu-left {
    order: 3;
}

body.rtl .nav-menu-right {
    order: 1;
}

body.rtl .logo-center {
    order: 2;
}

body.rtl .language-switcher {
    right: auto;
    left: 20px;
}

body.rtl .hero-buttons,
body.rtl .about-features,

body.rtl .about-wrapper,
body.rtl .contact-wrapper {
    direction: rtl;
}

body.rtl .feature-item,
body.rtl .service-card,
body.rtl .collection-info,
body.rtl .contact-item {
    text-align: right;
}

body.rtl .about-feature {
    flex-direction: row-reverse;
}

body.rtl .footer-content {
    direction: rtl;
}

body.rtl .btn i {
    margin-left: 0;
    margin-right: 8px;
}

body.rtl .collection-link i,
body.rtl .hero-buttons i {
    margin-left: 0;
    margin-right: 8px;
}

body.rtl .mobile-lang-option {
    flex-direction: row-reverse;
}

body.rtl .mobile-lang-option:hover {
    transform: translateX(-5px);
}

body.rtl .collection-info {
    text-align: center; /* Keep centered for all languages */
}

/* Mobile RTL adjustments */
@media (max-width: 768px) {
    body.rtl .language-switcher {
        right: auto;
        left: 60px;
    }
}

/* ========================================
   MODAL STYLES
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 10001;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--gray-light);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(85vh - 120px);
}

.modal-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.modal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.modal-body a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

.modal-body a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 25px 20px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 25px 20px;
        max-height: calc(90vh - 100px);
    }
    
    .modal-body h3 {
        font-size: 20px;
    }
    
    .modal-body h4 {
        font-size: 16px;
    }
    
    .modal-body p {
        font-size: 14px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
