﻿:root {
    --primary-color: #d4af37; /* Luxury Gold */
    --bg-color: #ffffff; /* Pure White */
    --surface-color: #f8f9fa; /* Off-white for slight contrast */
    --text-color: #000000; /* Pure Black */
    --text-muted: #555555; /* Dark Gray for secondary text */
    --border-color: #e0e0e0;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: var(--text-color);
}

/* TOP MENU *//* --- HEADER / NAVBAR (OVAL YÃœZEN TASARIM) --- */
.top-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    border-radius: 50px;
    z-index: 1000;
}

.top-header .logo {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.shopier-nav-btn {
    background: var(--primary-color);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.shopier-nav-btn:hover {
    background: #000;
    color: var(--primary-color) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 5% 40px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Horizontal Carousel / Slider for Watches */
.carousel-section {
    padding: 60px 0 100px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color) 0%, #f4f5f7 100%);
}

.carousel-container {
    display: flex;
    gap: 40px;
    padding: 30px 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.watch-slide {
    min-width: 350px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    scroll-snap-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.watch-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fff, var(--primary-color), #fff);
    opacity: 0;
    transition: opacity 0.3s;
}

.watch-slide:hover::before {
    opacity: 1;
}

.watch-slide:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.watch-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    background: #f9f9fa;
    padding: 10px;
    margin-bottom: 20px;
    transition: transform 0.5s;
}

.watch-slide:hover img {
    transform: scale(1.03);
}

.watch-slide h3 {
    font-size: 1.8rem;
    margin: 10px 0 5px;
    color: var(--text-color);
}

.watch-slide p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.discover-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f4f5f7;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s;
}

.watch-slide:hover .discover-btn {
    background: var(--text-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* --- WATCH DETAIL PAGE (watch.html) STYLES --- */
.detail-header {
    background: var(--surface-color);
    padding: 60px 5%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.back-btn {
    position: absolute;
    left: 5%;
    top: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
}

.detail-brand {
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.detail-model {
    font-size: 3.5rem;
    color: var(--text-color);
}

.detail-content {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 5%;
    gap: 50px;
    align-items: center;
}

.detail-3d-viewer {
    flex: 1;
    min-width: 400px;
    height: 600px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

model-viewer {
    width: 100%;
    height: 100%;
    outline: none;
}

.hint {
    position: absolute;
    bottom: 20px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 5px 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-info {
    flex: 1;
    min-width: 350px;
}

.detail-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.detail-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.specs-table th, .specs-table td {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    color: var(--text-color);
    font-weight: bold;
    width: 40%;
}

.specs-table td {
    color: var(--text-muted);
}

.buy-now-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.buy-now-btn:hover {
    background: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 5%;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

.footer-logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .detail-content { flex-direction: column; }
    .detail-3d-viewer { height: 400px; min-width: 100%; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links { flex-direction: column; gap: 1rem; align-items: center; }
}

/* --- HAKKIMIZDA (ABOUT) PAGE STYLES --- */
.animated-bg {
    background: linear-gradient(-45deg, #ffffff, #fdfbf5, #fff8e1, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Light Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 300px; height: 300px;
    background: rgba(212, 175, 55, 0.15); /* Gold */
    top: 10%; left: -5%;
}

.orb-2 {
    width: 400px; height: 400px;
    background: rgba(244, 245, 247, 0.8); /* Silver/White */
    bottom: 20%; right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px; height: 250px;
    background: rgba(212, 175, 55, 0.1);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.1); }
}

.about-page {
    padding: 0 5%;
}

.about-hero {
    text-align: center;
    padding: 100px 0 60px;
}

.about-hero-text h1 {
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 100px;
}

.about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
}

.about-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-card .line {
    width: 60px;
    height: 3px;
    background: var(--text-color);
    margin: 0 auto 30px;
}

.about-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/* --- PREMIUM INTRO ANIMATION --- */
#premium-intro {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: #ffffff;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: revealSite 1s cubic-bezier(0.77, 0, 0.175, 1) 3.5s forwards; /* Ilk giriste yavas/ihtisamli: 3.5s */
}

html.skip-intro #premium-intro {
    display: none !important; /* Sekmeler arasi gezerken aninda gizle */
}

.intro-logo-container {
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    animation: slideUpText 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.custom-logo-img {
    width: 700px;
    max-width: 95vw;
    object-fit: contain;
    clip-path: inset(0 0 12% 0);
    filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(1.1);
    mix-blend-mode: multiply;
    margin-bottom: 20px;
    animation: slideUpText 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
    transform: translateY(100%);
}

.intro-logo-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #000;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.intro-line {
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    margin-top: 10px;
    animation: drawLine 0.8s ease-in-out 1.0s forwards;
}

.intro-slogan {
    margin-top: 35px;
    font-size: 1.5rem;
    color: #000;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    opacity: 0;
    animation: fadeInSlogan 1.2s ease 1.5s forwards;
    text-align: center;
    line-height: 1.6;
}

@keyframes slideUpText {
    to { transform: translateY(0); }
}

@keyframes drawLine {
    to { width: 150px; }
}

@keyframes fadeInSlogan {
    to { opacity: 1; }
}

@keyframes revealSite {
    0% { transform: translateY(0); opacity: 1; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Nav Logo */
.nav-custom-logo {
    width: 140px; /* MenÃ¼deki logo DEV boyuta getirildi */
    height: 140px;
    object-fit: contain;
    clip-path: inset(0 0 12% 0);
    filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(1.1);
    mix-blend-mode: multiply;
    margin-right: 30px;
}

/* --- YORUMLAR (REVIEWS) PAGE STYLES --- */
.reviews-page {
    padding: 60px 5% 100px;
    background: var(--surface-color);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.reviews-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Masonry/Grid for Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.review-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-stars .grey-star {
    color: #e0e0e0;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--text-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-family: var(--font-heading);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Review Form */
.review-form-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.review-form-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--surface-color);
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--text-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: #000;
}
/* --- NEW HOMEPAGE 12 SECTIONS CSS --- */

.home-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden; /* Animasyonlar taÅŸmasÄ±n diye */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

/* 1. Hero New */
.hero-new {
    height: 90vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: -100px; /* Header overlap */
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.75); /* Beyaz tema uyumlu hafif ÅŸeffaflÄ±k */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: #a3821a;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-title {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: #000;
    margin-bottom: 40px;
}

.btn-discover {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-discover:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

/* 3. Koleksiyonlar */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/5;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.col-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
    text-align: center;
}

.col-overlay h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.col-overlay a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 3px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 4. En Cok Satanlar */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-card .price {
    color: #a3821a;
    font-weight: bold;
    font-size: 0.9rem;
}

/* 5. Saatini Bul */
.interactive-box {
    background: #050505;
    color: #fff;
    padding: 100px 40px;
    text-align: center;
    border-radius: 20px;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.interactive-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quiz-btn {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.2rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.quiz-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* 6. Neden Biz */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* 7. Marka Hikayesi */
.brand-story-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.story-image {
    flex: 1;
}
.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.link-btn {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: 0.3s;
}
.link-btn:hover {
    color: var(--primary-color);
}

/* 8. Mini Reviews */
.mini-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mini-review {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.mini-review .stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mini-review p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* 9. Blog */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    background: #fff;
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover img {
    transform: scale(1.05);
}

.blog-info {
    padding: 30px;
}

.blog-info h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* 10. Instagram */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.insta-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}
.insta-grid img:hover {
    opacity: 0.8;
}

/* 11. Newsletter */
.newsletter-box {
    background: #f9f9f9;
    padding: 60px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #eee;
}
.newsletter-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.newsletter-form input {
    padding: 15px 25px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}
.newsletter-form input:focus {
    border-color: var(--primary-color);
}
.newsletter-form button {
    padding: 15px 40px;
    background: #000;
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-form button:hover {
    background: var(--primary-color);
    color: #000;
}

/* 12. Footer Overrides for Grid */
#iletisim {
    padding: 60px 5%;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 40px;
}
.footer-col h4 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
}
.footer-col a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE UPDATES */
@media (max-width: 1024px) {
    .grid-3, .grid-4, .features-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-story-section { flex-direction: column; }
    .hero-title { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .grid-3, .grid-4, .features-grid, .mini-reviews-grid, .grid-2, .insta-grid, .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; align-items: center; }
    .newsletter-form input { width: 100%; }
}
/* --- PREMIUM STORY SLIDER --- */
.story-slider-section {
    padding: 60px 0;
    max-width: 100%;
}
.story-slider-section .section-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}
.story-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 0 5% 40px;
}
.story-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.story-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.story-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.story-slide {
    min-width: 80vw;
    scroll-snap-align: center;
    background: #fdfdfd;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.story-slide-img {
    flex: 1;
}
.story-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-slide-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.story-slide-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.story-slide-content p {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.story-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    .story-slide { flex-direction: column; min-width: 90vw; }
    .story-slide-img { height: 300px; }
    .story-slide-content { padding: 30px; }
}
/* --- CINEMATIC HERO --- */
.cinematic-hero {
    position: relative;
    height: 95vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -100px;
}
.hero-bg-zoom {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: cinematicZoom 20s ease-in-out infinite alternate;
}
@keyframes cinematicZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.cinematic-hero .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}
/* --- MASSIVE EXPANSION CSS --- */

/* Marquee / Kayan Yazi */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: var(--primary-color);
    padding: 20px 0;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}
.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    font-size: 2rem;
    font-family: var(--font-heading);
    letter-spacing: 5px;
    text-transform: uppercase;
}
.marquee-content span {
    margin: 0 40px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sayilarla Biz (Counters) */
.counters-section {
    background: url('https://images.unsplash.com/photo-1509048191080-d2984bad6ae5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 100px 5%;
    position: relative;
    color: #fff;
    text-align: center;
}
.counters-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
}
.counters-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.counter-box h3 {
    font-size: 5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}
.counter-box p {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Horoloji Metin Bolumu */
.horology-section {
    padding: 100px 5%;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.horology-text {
    flex: 1;
}
.horology-text h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: #000;
}
.horology-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.horology-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.horology-img img {
    width: 100%;
    transform: scale(1.1);
    transition: 1s;
}
.horology-img:hover img {
    transform: scale(1);
}

/* SSS (FAQ) */
.faq-section {
    padding: 100px 5%;
    background: #050505;
    color: #fff;
}
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: #111;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}
.faq-question {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}
.faq-question:hover {
    color: var(--primary-color);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease;
    color: #ccc;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Custom Cursor */
body {
    cursor: auto; /* Hide default cursor */
}
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}
.custom-cursor.hovering {
    width: 60px;
    height: 60px;
    background: #fff;
    mix-blend-mode: exclusion;
}

/* --- SVG GEARS ANIMATION --- */
.gear-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 1;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    opacity: 0.8;
}
.gear {
    position: absolute;
    fill: none;
    stroke: #a3821a; /* Gold color */
    stroke-width: 2;
    opacity: 0.3;
}
.gear-1 {
    width: 600px; height: 600px;
    top: -100px; left: -100px;
    animation: spin 40s linear infinite;
}
.gear-2 {
    width: 400px; height: 400px;
    top: 250px; left: 300px;
    animation: spin-reverse 30s linear infinite;
}
.gear-3 {
    width: 300px; height: 300px;
    bottom: -50px; right: 100px;
    animation: spin 25s linear infinite;
}
.gear-4 {
    width: 800px; height: 800px;
    top: 50%; right: -200px;
    transform: translateY(-50%);
    animation: spin-reverse 60s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

.top-header .logo img.nav-custom-logo { height: 60px !important; width: auto !important; transition: 0.3s; }
.top-header .logo img.nav-custom-logo:hover { transform: scale(1.05); }


