/* ====================================
   PT AROWANA — PREMIUM DARK LUXURY THEME
   ====================================
   Color Palette:
     Primary: #8B1A1A → #C41E3A (Deep Crimson Red)
     Accent:  #D4A647 → #F0C75E (Rich Gold)
     Dark:    #0A0A0A → #1A1A2E (Deep Dark)
     Text:    #F5F0E8 / #B8B0A0 (Warm Whites)
   ==================================== */

/* ── CSS Custom Properties ── */
:root {
    --gold: #D4A647;
    --gold-light: #F0C75E;
    --gold-dark: #B8912E;
    --red: #C41E3A;
    --red-dark: #8B1A1A;
    --red-glow: rgba(196, 30, 58, 0.3);
    --bg-dark: #0A0A0A;
    --bg-section: #0F0F1A;
    --bg-card: #141425;
    --bg-card-hover: #1A1A30;
    --text-primary: #F5F0E8;
    --text-secondary: #B8B0A0;
    --text-muted: #6B6572;
    --border-color: rgba(var(--accent-rgb), 0.15);
    --glass-bg: rgba(20, 20, 37, 0.7);
    --glass-border: rgba(var(--accent-rgb), 0.1);
    --shadow-gold: 0 0 40px rgba(var(--accent-rgb), 0.1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
    --radius-sm: 10px;
    /* Theme-specific overlay gradients */
    --hero-overlay-1: rgba(139, 26, 26, 0.25);
    --hero-overlay-2: rgba(var(--accent-rgb), 0.12);
    --accent-rgb: 212, 166, 71;
    --red-rgb: 196, 30, 58;
    --stats-bg: linear-gradient(135deg, #8B1A1A, #4a1020, #0A0A0A);
    --footer-bg: #060610;
    --line-color: #06C755;
}

/* ── Ocean Sapphire Theme ── */
:root[data-theme="ocean"] {
    --gold: #7EB8DA;
    --gold-light: #A8D5E8;
    --gold-dark: #5A9BBF;
    --red: #2E6B9E;
    --red-dark: #1A4A72;
    --red-glow: rgba(46, 107, 158, 0.3);
    --bg-dark: #060B14;
    --bg-section: #0A1020;
    --bg-card: #0E1830;
    --bg-card-hover: #142040;
    --text-primary: #E8F0F8;
    --text-secondary: #9AB0C8;
    --text-muted: #5A7088;
    --border-color: rgba(126, 184, 218, 0.15);
    --glass-bg: rgba(14, 24, 48, 0.7);
    --glass-border: rgba(126, 184, 218, 0.1);
    --shadow-gold: 0 0 40px rgba(126, 184, 218, 0.1);
    --hero-overlay-1: rgba(26, 74, 114, 0.25);
    --hero-overlay-2: rgba(126, 184, 218, 0.12);
    --accent-rgb: 126, 184, 218;
    --red-rgb: 46, 107, 158;
    --stats-bg: linear-gradient(135deg, #1A4A72, #0E2040, #060B14);
    --footer-bg: #040810;
    --line-color: #06C755;
}

/* ── Emerald Forest Theme ── */
:root[data-theme="emerald"] {
    --gold: #C8A84E;
    --gold-light: #E0C468;
    --gold-dark: #A08630;
    --red: #2E8B57;
    --red-dark: #1A5C38;
    --red-glow: rgba(46, 139, 87, 0.3);
    --bg-dark: #060A06;
    --bg-section: #0A150E;
    --bg-card: #10201A;
    --bg-card-hover: #162820;
    --text-primary: #E8F0E8;
    --text-secondary: #A0B8A0;
    --text-muted: #5A7260;
    --border-color: rgba(200, 168, 78, 0.15);
    --glass-bg: rgba(16, 32, 26, 0.7);
    --glass-border: rgba(200, 168, 78, 0.1);
    --shadow-gold: 0 0 40px rgba(200, 168, 78, 0.1);
    --hero-overlay-1: rgba(26, 92, 56, 0.25);
    --hero-overlay-2: rgba(200, 168, 78, 0.12);
    --accent-rgb: 200, 168, 78;
    --red-rgb: 46, 139, 87;
    --stats-bg: linear-gradient(135deg, #1A5C38, #0E3020, #060A06);
    --footer-bg: #040804;
    --line-color: #06C755;
}

/* ── Ivory Luxe (Light) Theme ── */
:root[data-theme="light"] {
    --gold: #B8912E;
    --gold-light: #D4A647;
    --gold-dark: #9A7520;
    --red: #A01830;
    --red-dark: #7A1225;
    --red-glow: rgba(160, 24, 48, 0.2);
    --bg-dark: #FAF7F2;
    --bg-section: #F2EDE5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF9F0;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #8A8A98;
    --border-color: rgba(184, 145, 46, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(184, 145, 46, 0.12);
    --shadow-gold: 0 0 40px rgba(184, 145, 46, 0.08);
    --hero-overlay-1: rgba(160, 24, 48, 0.08);
    --hero-overlay-2: rgba(184, 145, 46, 0.06);
    --accent-rgb: 184, 145, 46;
    --red-rgb: 160, 24, 48;
    --stats-bg: linear-gradient(135deg, #F2EDE5, #E8E0D0, #FAF7F2);
    --footer-bg: #1A1A2E;
    --line-color: #06C755;
}

/* Light theme — navbar scroll */
:root[data-theme="light"] .navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Light theme — mobile nav */
@media (max-width: 768px) {
    :root[data-theme="light"] .nav-menu {
        background: rgba(250, 247, 242, 0.98);
    }
}

/* Light theme — hero */
:root[data-theme="light"] .hero-overlay {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(160, 24, 48, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(184, 145, 46, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(250, 247, 242, 0.85) 0%, transparent 60%);
}

/* Light theme — about image overlay */
:root[data-theme="light"] .about-image-overlay {
    background: linear-gradient(to top, rgba(250, 247, 242, 0.9), transparent);
}

/* Light theme — fish card gradient fallbacks */
:root[data-theme="light"] .fish-gradient-red {
    background: linear-gradient(135deg, #FDE8EC, #F8D0D8, #F5BCC8);
}

:root[data-theme="light"] .fish-gradient-gold {
    background: linear-gradient(135deg, #FDF5E6, #F5E8C8, #EEDCB0);
}

:root[data-theme="light"] .fish-gradient-platinum {
    background: linear-gradient(135deg, #EEEEF4, #E0E0EC, #D5D5E2);
}

:root[data-theme="light"] .fish-gradient-green {
    background: linear-gradient(135deg, #E8F5E8, #D0EAD0, #BCDfBC);
}

:root[data-theme="light"] .fish-gradient-blue {
    background: linear-gradient(135deg, #E8EEF8, #D0DEF0, #BCD0EA);
}

:root[data-theme="light"] .fish-gradient-purple {
    background: linear-gradient(135deg, #F0E8F8, #E0D0F0, #D2BCEa);
}

/* Light theme — card hover shadow */
:root[data-theme="light"] .fish-card:hover {
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Light theme — footer stays dark for contrast */
:root[data-theme="light"] .footer {
    color: #F5F0E8;
}

:root[data-theme="light"] .footer .footer-links h4 {
    color: #F5F0E8;
}

:root[data-theme="light"] .footer .footer-links a {
    color: #B8B0A0;
}

:root[data-theme="light"] .footer .footer-links a:hover {
    color: #D4A647;
}

:root[data-theme="light"] .footer .footer-brand p {
    color: #B8B0A0;
}

:root[data-theme="light"] .footer .footer-bottom p {
    color: #6B6572;
}

:root[data-theme="light"] .footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .footer-social a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #B8B0A0;
}

:root[data-theme="light"] .footer-social a:hover {
    background: #D4A647;
    border-color: #D4A647;
    color: #1a1a1a;
}

:root[data-theme="light"] .footer-wave {
    color: var(--bg-dark);
}

/* Light theme — preloader */
:root[data-theme="light"] .preloader {
    background: #FAF7F2;
}

/* Light theme — ::selection */
:root[data-theme="light"] ::selection {
    background: rgba(184, 145, 46, 0.25);
    color: #1A1A2E;
}

/* Light theme — notification colors */
:root[data-theme="light"] .notification-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-color: rgba(76, 175, 80, 0.4);
    color: #2e7d32;
}

:root[data-theme="light"] .notification-error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-color: rgba(244, 67, 54, 0.4);
    color: #c62828;
}

/* Light theme swatch */
.theme-swatch.swatch-light {
    background: linear-gradient(135deg, #FAF7F2, #D4A647);
    border-color: rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════════════
   ARCTIC FROST (Light) Theme
   ══════════════════════════════════════ */
:root[data-theme="frost"] {
    --gold: #3A7BD5;
    --gold-light: #5A9BF0;
    --gold-dark: #2A5FAA;
    --red: #1A5276;
    --red-dark: #0E3A5A;
    --red-glow: rgba(58, 123, 213, 0.2);
    --bg-dark: #F0F4F8;
    --bg-section: #E6ECF2;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F5F8FC;
    --text-primary: #0F1B2D;
    --text-secondary: #3D4F63;
    --text-muted: #7A8DA0;
    --border-color: rgba(58, 123, 213, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(58, 123, 213, 0.1);
    --shadow-gold: 0 0 40px rgba(58, 123, 213, 0.08);
    --hero-overlay-1: rgba(26, 82, 118, 0.06);
    --hero-overlay-2: rgba(58, 123, 213, 0.05);
    --accent-rgb: 58, 123, 213;
    --red-rgb: 26, 82, 118;
    --stats-bg: linear-gradient(135deg, #E6ECF2, #D8E2EE, #F0F4F8);
    --footer-bg: #0F1B2D;
    --line-color: #06C755;
}

:root[data-theme="frost"] .navbar.scrolled {
    background: rgba(240, 244, 248, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    :root[data-theme="frost"] .nav-menu {
        background: rgba(240, 244, 248, 0.98);
    }
}

:root[data-theme="frost"] .hero-overlay {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(26, 82, 118, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(58, 123, 213, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(240, 244, 248, 0.85) 0%, transparent 60%);
}

:root[data-theme="frost"] .about-image-overlay {
    background: linear-gradient(to top, rgba(240, 244, 248, 0.9), transparent);
}

:root[data-theme="frost"] .fish-gradient-red {
    background: linear-gradient(135deg, #F0E0E6, #E8D0DA, #E0C0D0);
}

:root[data-theme="frost"] .fish-gradient-gold {
    background: linear-gradient(135deg, #E8EEF8, #D8E2F0, #C8D6E8);
}

:root[data-theme="frost"] .fish-gradient-platinum {
    background: linear-gradient(135deg, #E8ECF4, #DCE2EE, #D0D8E6);
}

:root[data-theme="frost"] .fish-gradient-green {
    background: linear-gradient(135deg, #E0F0E8, #D0E8D8, #C0DCC8);
}

:root[data-theme="frost"] .fish-gradient-blue {
    background: linear-gradient(135deg, #D8E8F8, #C8DCF4, #B8D0F0);
}

:root[data-theme="frost"] .fish-gradient-purple {
    background: linear-gradient(135deg, #E8E0F4, #DCD0F0, #D0C0EA);
}

:root[data-theme="frost"] .fish-card:hover {
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.07);
}

:root[data-theme="frost"] .footer {
    color: #E6ECF2;
}

:root[data-theme="frost"] .footer .footer-links h4 {
    color: #E6ECF2;
}

:root[data-theme="frost"] .footer .footer-links a {
    color: #9AB0C8;
}

:root[data-theme="frost"] .footer .footer-links a:hover {
    color: #5A9BF0;
}

:root[data-theme="frost"] .footer .footer-brand p {
    color: #9AB0C8;
}

:root[data-theme="frost"] .footer .footer-bottom p {
    color: #5A7088;
}

:root[data-theme="frost"] .footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="frost"] .footer-social a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #9AB0C8;
}

:root[data-theme="frost"] .footer-social a:hover {
    background: #3A7BD5;
    border-color: #3A7BD5;
    color: #fff;
}

:root[data-theme="frost"] .footer-wave {
    color: var(--bg-dark);
}

:root[data-theme="frost"] .preloader {
    background: #F0F4F8;
}

:root[data-theme="frost"] ::selection {
    background: rgba(58, 123, 213, 0.2);
    color: #0F1B2D;
}

:root[data-theme="frost"] .notification-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-color: rgba(76, 175, 80, 0.4);
    color: #2e7d32;
}

:root[data-theme="frost"] .notification-error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-color: rgba(244, 67, 54, 0.4);
    color: #c62828;
}

.theme-swatch.swatch-frost {
    background: linear-gradient(135deg, #F0F4F8, #3A7BD5);
    border-color: rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════════════
   ROSE GARDEN (Light) Theme
   ══════════════════════════════════════ */
:root[data-theme="rose"] {
    --gold: #C07A8E;
    --gold-light: #D4919F;
    --gold-dark: #A06070;
    --red: #B04060;
    --red-dark: #8A2848;
    --red-glow: rgba(176, 64, 96, 0.2);
    --bg-dark: #FDF5F7;
    --bg-section: #F8ECF0;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF5F8;
    --text-primary: #2A1520;
    --text-secondary: #5A4050;
    --text-muted: #9A8090;
    --border-color: rgba(192, 122, 142, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(192, 122, 142, 0.1);
    --shadow-gold: 0 0 40px rgba(192, 122, 142, 0.08);
    --hero-overlay-1: rgba(176, 64, 96, 0.06);
    --hero-overlay-2: rgba(192, 122, 142, 0.05);
    --accent-rgb: 192, 122, 142;
    --red-rgb: 176, 64, 96;
    --stats-bg: linear-gradient(135deg, #F8ECF0, #F0E0E6, #FDF5F7);
    --footer-bg: #2A1520;
    --line-color: #06C755;
}

:root[data-theme="rose"] .navbar.scrolled {
    background: rgba(253, 245, 247, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    :root[data-theme="rose"] .nav-menu {
        background: rgba(253, 245, 247, 0.98);
    }
}

:root[data-theme="rose"] .hero-overlay {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(176, 64, 96, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(192, 122, 142, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(253, 245, 247, 0.85) 0%, transparent 60%);
}

:root[data-theme="rose"] .about-image-overlay {
    background: linear-gradient(to top, rgba(253, 245, 247, 0.9), transparent);
}

:root[data-theme="rose"] .fish-gradient-red {
    background: linear-gradient(135deg, #FDE8EC, #F8D0D8, #F2B8C8);
}

:root[data-theme="rose"] .fish-gradient-gold {
    background: linear-gradient(135deg, #F8E8E0, #F0D8CE, #E8C8BC);
}

:root[data-theme="rose"] .fish-gradient-platinum {
    background: linear-gradient(135deg, #F0E8F0, #E8DEE8, #E0D4E0);
}

:root[data-theme="rose"] .fish-gradient-green {
    background: linear-gradient(135deg, #E8F0E8, #D8E8DA, #C8DCC8);
}

:root[data-theme="rose"] .fish-gradient-blue {
    background: linear-gradient(135deg, #E8E8F4, #D8D8F0, #C8C8EA);
}

:root[data-theme="rose"] .fish-gradient-purple {
    background: linear-gradient(135deg, #F4E0F0, #ECD0EA, #E0C0E0);
}

:root[data-theme="rose"] .fish-card:hover {
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.07);
}

:root[data-theme="rose"] .footer {
    color: #F8ECF0;
}

:root[data-theme="rose"] .footer .footer-links h4 {
    color: #F8ECF0;
}

:root[data-theme="rose"] .footer .footer-links a {
    color: #C0A0B0;
}

:root[data-theme="rose"] .footer .footer-links a:hover {
    color: #D4919F;
}

:root[data-theme="rose"] .footer .footer-brand p {
    color: #C0A0B0;
}

:root[data-theme="rose"] .footer .footer-bottom p {
    color: #7A6070;
}

:root[data-theme="rose"] .footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="rose"] .footer-social a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #C0A0B0;
}

:root[data-theme="rose"] .footer-social a:hover {
    background: #C07A8E;
    border-color: #C07A8E;
    color: #fff;
}

:root[data-theme="rose"] .footer-wave {
    color: var(--bg-dark);
}

:root[data-theme="rose"] .preloader {
    background: #FDF5F7;
}

:root[data-theme="rose"] ::selection {
    background: rgba(192, 122, 142, 0.2);
    color: #2A1520;
}

:root[data-theme="rose"] .notification-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-color: rgba(76, 175, 80, 0.4);
    color: #2e7d32;
}

:root[data-theme="rose"] .notification-error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-color: rgba(244, 67, 54, 0.4);
    color: #c62828;
}

.theme-swatch.swatch-rose {
    background: linear-gradient(135deg, #FDF5F7, #C07A8E);
    border-color: rgba(0, 0, 0, 0.15);
}

/* ── Theme Switcher UI ── */
.theme-switcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.theme-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    background: var(--bg-card);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.theme-toggle-btn:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.25);
}

.theme-panel {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: var(--bg-card);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 170px;
}

.theme-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.theme-panel-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-align: center;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    background: transparent;
    width: 100%;
    text-align: left;
}

.theme-option:hover {
    background: rgba(var(--accent-rgb), 0.06);
    border-color: rgba(var(--accent-rgb), 0.12);
}

.theme-option.active {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.25);
}

.theme-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.theme-swatch.swatch-crimson {
    background: linear-gradient(135deg, #C41E3A, #D4A647);
}

.theme-swatch.swatch-ocean {
    background: linear-gradient(135deg, #2E6B9E, #7EB8DA);
}

.theme-swatch.swatch-emerald {
    background: linear-gradient(135deg, #2E8B57, #C8A84E);
}

.theme-option.active .theme-swatch {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
}

.theme-option-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.theme-option.active .theme-option-label {
    color: var(--gold);
    font-weight: 600;
}


/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(var(--accent-rgb), 0.3);
    color: var(--gold-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Preloader ── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    animation: pulse-glow 1.5s ease-in-out infinite;
    margin-bottom: 24px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(var(--accent-rgb), 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 3px;
    animation: preload-fill 1.8s ease-in-out forwards;
}

@keyframes preload-fill {
    to {
        width: 100%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(var(--accent-rgb), 0.6));
        transform: scale(1.05);
    }
}

/* ── Typography ── */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 0.7rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    color: var(--gold);
}

.title-decoration span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.title-decoration span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.title-decoration i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.5);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: rgba(var(--accent-rgb), 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.2);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(var(--accent-rgb), 0.3));
}

.navbar.scrolled .logo {
    height: 42px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, var(--hero-overlay-1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, var(--hero-overlay-2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge i {
    font-size: 0.8rem;
    color: var(--gold-light);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.5s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-plus {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.3s both;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scroll-wheel 1.5s ease infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ── About Section ── */
.about {
    padding: 56px 0;
    background: var(--bg-section);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

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

.about-image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-frame:hover .about-img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 20px;
    width: fit-content;
}

.experience-badge strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
}

.experience-badge span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.about-image-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: -12px;
    width: 50%;
    border: 2px solid rgba(var(--accent-rgb), 0.15);
    border-radius: var(--radius);
    z-index: -1;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(var(--accent-rgb), 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(var(--accent-rgb), 0.06);
    border-color: rgba(var(--accent-rgb), 0.25);
    transform: translateX(8px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 12px;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Fish Collection Section ── */
.collection {
    padding: 56px 0;
    background: var(--bg-dark);
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.fish-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.fish-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.fish-card-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fish-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: transform 0.6s ease;
}

.fish-card:hover .fish-card-img {
    transform: scale(1.08);
}

.fish-icon {
    font-size: 4rem;
    opacity: 0.15;
    transition: var(--transition);
    display: none;
}

.fish-card:hover .fish-icon {
    opacity: 0.25;
    transform: scale(1.2) rotate(10deg);
}

.fish-gradient-red {
    background: linear-gradient(135deg, #2a0a0a, #4a1515, #6b1a1a);
}

.fish-gradient-gold {
    background: linear-gradient(135deg, #1a1505, #2a2510, #3a3015);
}

.fish-gradient-platinum {
    background: linear-gradient(135deg, #151520, #20202e, #2a2a3a);
}

.fish-gradient-green {
    background: linear-gradient(135deg, #0a1a0a, #152a15, #1a3a1a);
}

.fish-gradient-blue {
    background: linear-gradient(135deg, #0a0a2a, #101540, #151a4a);
}

.fish-gradient-purple {
    background: linear-gradient(135deg, #1a0a2a, #251540, #301a4a);
}

.fish-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    background: var(--red);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fish-card-badge.premium {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a1a1a;
}

.fish-card-info {
    padding: 24px;
}

.fish-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.fish-card-info>p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.fish-card-meta {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.fish-card-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fish-card-meta i {
    color: var(--gold);
    font-size: 0.7rem;
}

.collection-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── Services Section ── */
.services {
    padding: 56px 0;
    background: var(--bg-section);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    margin-bottom: 24px;
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.03));
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 20px;
    margin: 0 auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: var(--gold);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: #1a1a1a;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card>p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    margin: 20px auto 0;
    opacity: 0.3;
    transition: width 0.3s;
}

.service-card:hover .service-line {
    width: 60px;
    opacity: 0.6;
}

/* ── Why Choose Us ── */
.why-us {
    padding: 56px 0;
    background: var(--bg-dark);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: var(--shadow-gold);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(var(--accent-rgb), 0.06);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Stats Banner ── */
.stats-banner {
    padding: 36px 0;
    background: var(--stats-bg);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A647' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.7;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    margin-left: 2px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Testimonials ── */
.testimonials {
    padding: 56px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-card>p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-card>p::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(var(--accent-rgb), 0.15);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.author-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.25);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.4);
    transform: scale(1.2);
}

/* ── Contact Section ── */
.contact {
    padding: 56px 0;
    background: var(--bg-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 48px;
    align-items: start;
}

.contact-info {
    max-width: 600px;
    width: 100%;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    height: 100%;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-card>p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(var(--accent-rgb), 0.05);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 1.1rem;
    color: var(--gold);
}

.contact-method-icon.line-icon {
    background: rgba(6, 199, 85, 0.08);
    border-color: rgba(6, 199, 85, 0.2);
}

.contact-method-icon.line-icon i {
    color: #06C755;
}

.contact-method h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-method p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.06);
    border: 1px solid rgba(var(--accent-rgb), 0.12);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(var(--accent-rgb), 0.03);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4A647' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

/* ── Footer ── */
.footer {
    background: var(--footer-bg);
    position: relative;
    padding-top: 30px;
}

.footer-wave {
    color: var(--bg-dark);
    line-height: 0;
    margin-bottom: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(var(--accent-rgb), 0.2));
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}



.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a1a1a;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
    font-size: 1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.5);
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

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

    .nav-actions .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }



    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-social {
        justify-content: center;
    }
}

/* ── Particles ── */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}