/* ============================================
   ÖZSOYLAR KUYUMCULUK - PREMIUM STYLES
   ============================================ */

/* CSS Variables */
:root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A07C2E;
    --gold-shine: #F5E6B8;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-mid: #1A1A1A;
    --dark-surface: #111111;
    --dark-card: #161616;
    --dark-border: #2A2A2A;
    --text-primary: #F5F0E8;
    --text-secondary: #B8B0A0;
    --text-muted: #807868;
    --trendyol-orange: #F27A1A;
    --hepsiburada-orange: #FF6000;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.8s ease;
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1508 0%, #0a0a0a 60%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: splashPulse 2s ease-in-out infinite alternate,
        splashGlow 3s ease-in-out infinite;
}

.splash-logo-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold-shine), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
}

.splash-logo-text {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold) 40%, var(--gold-dark) 60%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-logo-sub {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--gold-light);
}

.splash-shimmer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    animation: shimmerRotate 4s linear infinite;
}

.splash-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes splashPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes splashGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.6));
    }
}

@keyframes shimmerRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 16px 0;
    transition: all var(--transition-med);
    background: transparent;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-fast);
}

.header-logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-shine), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.header-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--gold-shine), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#header.scrolled .header-logo-icon {
    font-size: 1.2rem;
}

#header.scrolled .header-logo-text {
    font-size: 0.95rem;
}

.header-logo:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--transition-med);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 9999;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#heroBgCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.2) 40%,
            rgba(10, 10, 10, 0.4) 70%,
            rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title-top {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 12px;
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold) 40%, var(--gold-dark) 60%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-title-bottom {
    display: block;
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 18px;
    color: var(--gold-light);
    margin-top: 8px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-top: 24px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--gold);
    font-size: 0.9rem;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::after {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    position: relative;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    background: var(--black);
}

#logoCanvas {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
}

.video-text-overlay {
    margin-top: 40px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-shine), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 16px auto 0;
    letter-spacing: 1px;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-diamond {
    color: var(--gold);
    font-size: 0.8rem;
}

.section-desc {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.about-content {
    display: grid;
    gap: 64px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    font-size: 1.4rem;
    color: var(--gold);
    transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
    background: rgba(201, 168, 76, 0.15);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   STORE SECTION
   ============================================ */
.store-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 50%, var(--black-light) 100%);
    position: relative;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.store-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: all var(--transition-med);
    cursor: pointer;
    min-height: 320px;
}

.store-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all var(--transition-slow);
}

.trendyol-card .store-card-bg {
    background: linear-gradient(135deg, #1a1209 0%, #2a1a08 50%, #1a1209 100%);
}

.hepsiburada-card .store-card-bg {
    background: linear-gradient(135deg, #1a0e06 0%, #2a1608 50%, #1a0e06 100%);
}

.store-card:hover .store-card-bg {
    transform: scale(1.05);
}

.store-card-content {
    position: relative;
    z-index: 2;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.store-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 8px;
    transition: all var(--transition-med);
}

.trendyol-card .store-icon {
    background: rgba(242, 122, 26, 0.1);
    border: 1px solid rgba(242, 122, 26, 0.2);
    color: var(--trendyol-orange);
}

.hepsiburada-card .store-icon {
    background: rgba(255, 96, 0, 0.1);
    border: 1px solid rgba(255, 96, 0, 0.2);
    color: var(--hepsiburada-orange);
}

.store-card:hover .store-icon {
    transform: scale(1.1);
}

.store-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.trendyol-card .store-name {
    color: var(--trendyol-orange);
}

.hepsiburada-card .store-name {
    color: var(--hepsiburada-orange);
}

.store-tagline {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.store-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
}

.store-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    margin-top: 8px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-med);
}

.trendyol-card .store-cta {
    background: rgba(242, 122, 26, 0.1);
    border: 1px solid rgba(242, 122, 26, 0.3);
    color: var(--trendyol-orange);
}

.hepsiburada-card .store-cta {
    background: rgba(255, 96, 0, 0.1);
    border: 1px solid rgba(255, 96, 0, 0.3);
    color: var(--hepsiburada-orange);
}

.store-card:hover .store-cta {
    transform: translateX(4px);
}

.trendyol-card:hover .store-cta {
    background: var(--trendyol-orange);
    color: #fff;
}

.hepsiburada-card:hover .store-cta {
    background: var(--hepsiburada-orange);
    color: #fff;
}

.store-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.store-card:hover .store-shine {
    left: 100%;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.trendyol-card:hover {
    border-color: rgba(242, 122, 26, 0.3);
}

.hepsiburada-card:hover {
    border-color: rgba(255, 96, 0, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.contact-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-med);
    border-radius: 0 0 8px 8px;
}

.form-group input:focus~.input-line,
.form-group textarea:focus~.input-line {
    width: 100%;
}

.btn-submit {
    align-self: flex-start;
    border-radius: 8px;
}

/* Contact Info */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateX(4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-text a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.info-text a:hover {
    color: var(--gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    position: relative;
    padding-top: 24px;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-title i {
    font-size: 1.2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(201, 168, 76, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    color: var(--gold);
    font-size: 0.8rem;
    transition: transform var(--transition-med);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-shine), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--gold-shine), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-sub {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--gold-light);
    opacity: 0.7;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-med);
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px;
        transition: right var(--transition-med);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 16px 0;
        font-size: 1rem;
        letter-spacing: 3px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-top {
        letter-spacing: 6px;
    }

    .hero-title-bottom {
        letter-spacing: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .splash-logo {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about-section,
    .store-section,
    .contact-section {
        padding: 80px 0;
    }

    .store-card {
        min-height: 260px;
    }

    .contact-info-card {
        padding: 16px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
}