/* ============================================
   PREMIUM LUXURY DESIGN - NECLA GÜÇ
   Haute Couture Tekstil Atölyesi
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --gold-primary: #C9A961;
    --gold-light: #E8D7C3;
    --gold-dark: #B8941F;
    --gold-bright: #FFD700;
    
    --navy-dark: #0F1419;
    --navy: #1a2332;
    --navy-light: #2a3542;
    
    --cream: #FFF9F0;
    --beige: #F5EBE0;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #FFD700 50%, #C9A961 100%);
    --gradient-dark: linear-gradient(135deg, #0F1419 0%, #1a2332 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(201, 169, 97, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
    --font-modern: 'Montserrat', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Minimum genişlik kontrolü */
    min-width: 320px;
}

body {
    font-family: var(--font-body);
    color: var(--navy-dark);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Düşük çözünürlük için minimum genişlik */
    min-width: 320px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Görsellerin taşmasını önle */
    width: auto;
    -ms-interpolation-mode: bicubic; /* IE için */
}

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

/* Düşük çözünürlük için container genişliği */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-ring {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(201, 169, 97, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: rotate 1.5s linear infinite;
    margin: 0 auto 30px;
    position: relative;
}

.loader-ring-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom-color: var(--gold-bright);
    border-radius: 50%;
    animation: rotate 1s linear infinite reverse;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-primary);
    letter-spacing: 8px;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-subtitle {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 3px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === FLOATING PARTICLES === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold-primary);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-ornament {
    color: var(--gold-primary);
    font-size: 1.2rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.nav-brand h1 {
    font-family: var(--font-modern);
    font-size: 1.4rem;
    color: var(--gold-primary);
    letter-spacing: 4px;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-primary);
}

/* Language Switcher */
.language-switcher {
    background: rgba(201, 169, 97, 0.1);
    padding: 8px 15px !important;
    border-radius: 5px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* High quality flag images */
.flag-img {
    width: 18px;
    height: 12px;
    display: inline-block;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset;
    max-width: none; /* global img kurallarından etkilenmesin */
}

@media (max-width: 768px) {
    .flag-img {
        width: 16px;
        height: 11px;
    }
}

.language-switcher:hover {
    background: var(--gold-primary);
    color: var(--navy-dark) !important;
    border-color: var(--gold-primary);
}

.language-switcher::before {
    display: none !important;
}

/* === HERO SECTION === */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(15, 20, 25, 0.7) 0%, rgba(26, 35, 50, 0.6) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 20, 25, 0.5) 100%);
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
    position: relative;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 40px;
}

/* Hero Logo Section */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    animation: sparkle 3s ease-in-out infinite;
}

.hero-brand {
    font-family: var(--font-modern);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
}

/* Decorative Line */
.hero-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 0 auto 50px;
}

/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--gold-primary);
    margin: 0 0 30px;
    font-style: italic;
}

/* Hero Subtitle */
.hero-sub {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 50px;
    text-transform: uppercase;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-modern);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-hero.btn-primary {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

.btn-hero.btn-primary:hover {
    background: transparent;
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-hero.btn-outline {
    background: transparent;
    color: var(--gold-primary);
}

.btn-hero.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* === LUXURY BUTTONS === */
.btn-luxury {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-luxury:hover .btn-shine {
    left: 100%;
}

/* === SCROLL DOWN INDICATOR === */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: fadeInUp 1s ease 1.5s backwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        height: 60px;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
}

.scroll-text {
    font-family: var(--font-modern);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* === REVEAL ANIMATIONS === */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === STATS SECTION === */
.stats-section {
    background: var(--navy-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.stat-item::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === SECTION COMMON === */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-ornament {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: sparkle 3s ease-in-out infinite;
}

.section-title {
    font-size: 3.5rem;
    color: var(--navy-dark);
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.title-underline::before,
.title-underline::after {
    content: '';
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
}

.underline-ornament {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--navy);
    font-style: italic;
}

/* === PARALLAX SECTIONS === */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* === ABOUT SECTION === */
.about {
    background: var(--beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.luxury-quote {
    background: var(--white);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold-primary);
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    font-family: var(--font-elegant);
    color: var(--gold-primary);
    opacity: 0.2;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-primary);
}

.frame-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.about-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    display: block;
}

.about-image:hover {
    transform: scale(1.02);
}

.image-ornament {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    opacity: 0.3;
    z-index: -1;
}

/* === SERVICES SECTION === */
.services {
    background: var(--cream);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(201, 169, 97, 0.02) 50px, rgba(201, 169, 97, 0.02) 100px);
    pointer-events: none;
}

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

.service-card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.luxury-card {
    border-top: 3px solid var(--gold-primary);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.service-card:hover .card-shine {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.service-icon-wrapper {
    margin-bottom: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--navy);
    line-height: 1.8;
    font-size: 1rem;
}

.card-ornament {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.1;
}

/* === WORKS SECTION === */
.works-section {
    background: 
        linear-gradient(rgba(15, 20, 25, 0.9), rgba(15, 20, 25, 0.9)),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover fixed;
    color: var(--white);
}

.works-section .section-title,
.works-section .section-subtitle {
    color: var(--white);
}

.works-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.work-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--navy-dark);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 50px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-details h3 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.work-details p {
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
    background: var(--gold-primary);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold-bright);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

/* === GALLERY SECTION === */
.gallery {
    background: var(--beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 450px;
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition-fast);
}

.gallery-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(255, 215, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-icon {
    transform: rotate(90deg);
}

/* === TESTIMONIALS === */
.testimonials {
    background: 
        linear-gradient(rgba(26, 35, 50, 0.95), rgba(26, 35, 50, 0.95)),
        url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&q=80') center/cover fixed;
    color: var(--white);
}

.testimonials .section-title,
.testimonials .section-subtitle,
.testimonials .section-ornament {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    font-size: 5rem;
    font-family: var(--font-elegant);
    color: var(--gold-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gold-light);
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 20px;
}

.author-name {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.testimonial-stars {
    color: var(--gold-bright);
    font-size: 1.2rem;
    letter-spacing: 5px;
}

/* === CONTACT SECTION === */
.contact {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-welcome {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--navy);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.form-wrapper {
    background: var(--white);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold-primary);
}

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

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

/* === FOOTER === */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-ornament-top {
    text-align: center;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 40px;
    animation: sparkle 3s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    color: var(--gold-primary);
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 20px 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-primary);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.footer-ornament {
    color: var(--gold-primary);
    font-size: 1.5rem;
    animation: sparkle 3s ease-in-out infinite;
}

/* === WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #1ea952);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-fast);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 40px;
    height: 40px;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

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

/* === RESPONSIVE DESIGN === */

/* Düşük Çözünürlük - 1366px ve 1280px ekranlar */
@media (max-width: 1400px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .hero-brand {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }
    
    .hero-tagline {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .gallery-grid {
        gap: 25px;
    }
}

/* Orta Ekranlar - 1024px */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .hero-brand {
        font-size: 3rem;
        letter-spacing: 8px;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        gap: 20px;
    }
    
    .gallery-item {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-brand {
        font-size: 3rem;
        letter-spacing: 8px;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .hero-line {
        width: 150px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image-container {
        order: -1;
    }
    
    .about-image {
        max-height: 500px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-image {
        height: 500px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item {
        height: 380px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 40px 0;
        gap: 0;
    }

    .nav-menu.active { left: 0; }

    .nav-menu li { padding: 20px 0; }

    .language-switcher { justify-content: center; }

    .language-switcher .flag-img {
        width: 16px !important;
        height: 11px !important;
        display: inline-block !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }
    
    .hero-brand {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .hero-tagline {
        font-size: 1.6rem;
    }
    
    .hero-sub {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-line {
        width: 120px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-luxury {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-height: 400px;
    }
    
    .work-image {
        height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 350px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    /* Mobile: focus hero background to the right so the model stays visible */
    .hero-background {
        /* first position for gradient (center), second for image (75% center) */
        background-position: center center, 75% center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-brand {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .hero-logo {
        gap: 10px;
    }
    
    .logo-icon {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-sub {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .hero-line {
        width: 80px;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 0.8rem;
    }
    
    .nav-brand h1 {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .about-image {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .work-image {
        height: 300px;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .scroll-down {
        bottom: 30px;
    }
}

/* ============================================
   1600x900 ve benzeri için iyileştirmeler
   ============================================ */
@media (max-width: 1600px) {
    .hero { min-height: 90vh; }
    .hero-content { padding-top: 40px; }
    .hero-line { margin: 0 auto 40px; }
    .hero-buttons, .hero-cta { gap: 16px; }
}

@media (max-height: 900px) and (min-width: 1200px) {
    .navbar { padding: 16px 0; }
    .hero { min-height: 88vh; }
    .hero-content { padding-top: 50px; }
}