/* ==========================================
   BAPI INTERNATIONAL JEWELRY - STYLESHEET
   ========================================== */

/* --- Design System & CSS Variables --- */
:root {
    --bg-primary: #0B0C10;      /* Deep Onyx Black */
    --bg-secondary: #16171B;    /* Rich Charcoal Gray */
    --bg-tertiary: #202226;     /* Card background */
    --color-gold: #D4AF37;      /* Metallic Gold */
    --color-gold-light: #E5C583;/* Champagne Accent */
    --color-gold-dark: #9A7E4A; /* Antique Gold shadow */
    --text-primary: #F7F5F0;    /* Alabaster Warm White */
    --text-secondary: #A8A8A8;  /* Muted Elegant Gray */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --header-height: 80px;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor experience */
}

@media (max-width: 1024px) {
    * {
        cursor: auto !important; /* Enable normal cursor on touch devices */
    }
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--bg-primary);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

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

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

/* --- Typography Utilities --- */
.gold-text {
    color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 2rem;
}

.divider.center {
    margin: 0 auto 2rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

/* --- Layout Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* --- Custom Cursor --- */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transition-timing-function: cubic-bezier(0.1, 0.8, 0.3, 1);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

.custom-cursor.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold-light);
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--bg-primary);
}

.btn-gold:hover {
    background-color: var(--color-gold-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-text {
    background: transparent;
    color: var(--text-primary);
    padding: 0.9rem 1rem;
    position: relative;
}

.btn-text:hover {
    color: var(--color-gold-light);
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Push entire main content below fixed navbar */
main {
    padding-top: var(--header-height);
}

/* --- Header / Navigation --- */
.main-header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    transition: var(--transition-smooth);
    /* Always dark so logo doesn't overlap content below */
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.main-header.scrolled {
    background: rgba(11, 12, 16, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0; /* prevent logo from shrinking */
}

@media (max-width: 768px) {
    .logo {
        gap: 0.5rem;
    }
}

/* Logo text group — brand name next to logo image */
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-gold-light);
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(135deg, #E5C583 0%, #D4AF37 50%, #9A7E4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
}

.logo-brand-sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--color-gold);
    -webkit-text-fill-color: var(--color-gold);
}

.main-header.scrolled .logo-brand-name {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .logo-text-group {
        display: flex; /* Show on mobile */
    }
    .logo-brand-name {
        font-size: 0.92rem;
        letter-spacing: 0.3px;
    }
    .logo-brand-sub {
        font-size: 0.52rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 380px) {
    /* Very small screens — hide subtext only */
    .logo-brand-sub {
        display: none;
    }
    .logo-brand-name {
        font-size: 0.82rem;
    }
}

.logo-svg {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 4px 10px;
    box-shadow: 0 2px 12px rgba(238, 96, 2, 0.25);
}

.main-header.scrolled .logo-img {
    height: 42px;
    padding: 3px 8px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
        padding: 3px 7px;
    }
}

@media (max-width: 380px) {
    .logo-img {
        height: 34px;
        padding: 2px 6px;
    }
}

.footer-logo-img {
    max-width: 210px;
    height: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 6px 14px;
    box-shadow: 0 2px 10px rgba(238, 96, 2, 0.15);
    opacity: 0.95;
}

/* ==========================================
   BRAND MARQUEE / TICKER STRIP
   ========================================== */
.brand-strip {
    width: 100%;
    background: linear-gradient(90deg, #0f0d08 0%, #1a1200 30%, #1f1500 50%, #1a1200 70%, #0f0d08 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.65rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* No margin-top here - main handles the offset */
}

/* Left/right fade masks */
.brand-strip::before,
.brand-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.brand-strip::before {
    left: 0;
    background: linear-gradient(to right, #0f0d08 0%, transparent 100%);
}

.brand-strip::after {
    right: 0;
    background: linear-gradient(to left, #0f0d08 0%, transparent 100%);
}

.brand-strip-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.brand-strip:hover .brand-strip-track {
    animation-play-state: paused;
}

.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold-light);
    transition: color 0.3s ease;
}

.strip-item:hover {
    color: #fff;
}

.strip-diamond {
    font-size: 0.55rem;
    color: var(--color-gold);
    animation: diamondPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@media (max-width: 768px) {
    .brand-strip {
        padding: 0.5rem 0;
    }
    .strip-item {
        font-size: 0.7rem;
        padding: 0 1.5rem;
        letter-spacing: 1.5px;
    }
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1025px) {
    .header-actions {
        display: none;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid rgba(212, 175, 55, 0.15);
        padding: 8rem 3rem 3rem;
        transition: var(--transition-smooth);
        z-index: 800;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    #navCta {
        display: none;
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(11, 12, 16, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 3rem 2rem;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.3rem;
    }
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .hero-description {
        margin: 0 auto 2.5rem;
    }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(20px);
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold) 50%, rgba(212, 175, 55, 0) 100%);
    animation: scrollLineAnimation 2s infinite;
}

@keyframes scrollLineAnimation {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 50px;
        opacity: 1;
    }
    100% {
        height: 50px;
        opacity: 0;
        transform: translateY(15px);
    }
}

/* --- Heritage Section --- */
.heritage-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.heritage-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.heritage-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: var(--bg-primary);
    border: 2px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

@media (max-width: 480px) {
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-align: center;
    margin-top: 0.3rem;
}

.text-highlight {
    font-size: 1.15rem;
    color: var(--color-gold-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.5;
}

.heritage-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2rem;
}

@media (max-width: 600px) {
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* --- Craftsmanship Steps Section --- */
.craftsmanship-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.process-step {
    position: relative;
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.05);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.process-step:hover .step-num {
    color: var(--color-gold);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* --- Collections Section --- */
.collections-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 4rem 0 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-secondary);
    padding: 0.7rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--bg-primary);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.collection-item {
    background-color: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.collection-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.item-image-wrapper {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background-color: #000;
}

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

.collection-item:hover .item-img {
    transform: scale(1.08);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.2) 0%, rgba(11, 12, 16, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.view-details-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    background-color: rgba(11, 12, 16, 0.6);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.collection-item:hover .view-details-text {
    transform: translateY(0);
}

.item-info {
    padding: 2rem;
}

.item-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 500;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
}

.item-brief {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.item-more-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-gold-light);
    transition: var(--transition-fast);
}

.collection-item:hover .item-more-link {
    color: var(--color-gold);
    padding-left: 5px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.testimonials-slider-wrapper {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.testimonials-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    height: 3rem;
    margin-top: -2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .testimonial-text {
        font-size: 1.1rem;
    }
}

.testimonial-author .author-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.testimonial-author .author-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 4rem;
}

.slider-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    color: var(--color-gold);
    transform: scale(1.2);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--text-secondary);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.3);
}

/* --- Booking & Contact Section --- */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-wrapper {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.detail-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

.contact-phone-block {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-card {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.phone-card.specialist {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-left: 3px solid var(--color-gold);
}

.phone-card.specialist:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--color-gold);
}

.phone-card.workshop {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.phone-card.workshop:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.phone-card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.phone-card.specialist .phone-card-label {
    color: var(--color-gold-light);
}

.phone-card.workshop .phone-card-label {
    color: var(--text-secondary);
    opacity: 0.8;
}

.phone-card-number {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.phone-card.specialist .phone-card-number {
    font-size: 1.25rem;
    color: #fff;
}

.phone-card.workshop .phone-card-number {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.phone-card.workshop .phone-card-number:last-child {
    margin-bottom: 0;
}

.phone-card-number:hover {
    color: var(--color-gold) !important;
}

.hours-box {
    margin-top: 3rem;
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 4px;
    border-left: 3px solid var(--color-gold);
}

.hours-box h4 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hour-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-line:last-child {
    border-bottom: none;
}

.contact-form-panel {
    background-color: var(--bg-primary);
    padding: 3.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-panel > p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

input, select, textarea {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 2px;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

/* Custom styles for select dropdown */
select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.form-status.success {
    color: #4CAF50;
    opacity: 1;
}

.form-status.error {
    color: #F44336;
    opacity: 1;
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand .logo-text {
    font-size: 2.2rem;
}

.brand-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-socials h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links ul a:hover {
    color: var(--color-gold);
    padding-left: 3px;
}

.footer-socials p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.disclaimer {
    font-style: italic;
}

/* --- Interactive Collection Detail Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 12, 16, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-secondary);
    width: 90%;
    max-width: 900px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    line-height: 1;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100%;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
        overflow-y: auto;
        max-height: 90vh;
    }
}

.modal-image-panel {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .modal-image-panel {
        aspect-ratio: 16 / 11;
    }
}

.modal-details-panel {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-details-panel {
        padding: 2rem;
    }
}

.modal-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-specs {
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-row span {
    color: var(--text-secondary);
}

.spec-row strong {
    color: var(--color-gold-light);
    font-weight: 500;
}

/* --- Scroll Animation Triggers --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 1.2rem 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 0.85rem;
        border-radius: 50%;
    }
}
