/* ========================================
   TEKLA'S AFRIWEST COUTURE
   Brand Colors: Navy Blue & Gold
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --navy-dark: #070E1A;
    --navy: #0A1628;
    --navy-mid: #0F1F3A;
    --navy-light: #1A3A6B;
    --navy-lighter: #254B82;
    --gold: #C5A55A;
    --gold-light: #D4BF7E;
    --gold-bright: #E8D48B;
    --gold-dark: #A68B3C;
    --crimson: #CC0033;
    --crimson-light: #E60026;
    --white: #FFFFFF;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --gray-light: #E8E4DD;
    --gray: #9A9590;
    --text-dark: #1A1A1A;
    --text-body: #4A4540;
    --text-light: #8A8580;

    --font-display: 'Great Vibes', cursive;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-light);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--navy-dark);
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 120px 0;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

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

.needle-animation {
    animation: needleSpin 2s ease-in-out infinite;
    margin-bottom: 24px;
}

@keyframes needleSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(360deg); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 2px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

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

/* ---------- Custom Cursor ---------- */
.cursor-dot, .cursor-outline {
    display: none;
}

@media (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        width: 8px; height: 8px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transition: transform 0.1s ease;
    }

    .cursor-outline {
        display: block;
        position: fixed;
        width: 36px; height: 36px;
        border: 1.5px solid var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        opacity: 0.6;
    }

    .cursor-outline.hover {
        width: 56px; height: 56px;
        border-color: var(--crimson);
        opacity: 1;
    }
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--cream);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-link-cta {
    background: transparent;
    border: 1.5px solid var(--gold);
    padding: 10px 24px;
    border-radius: 0;
    color: var(--gold);
    transition: all var(--transition-fast);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-fast);
}

.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);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-smooth);
}

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

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

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

.mobile-link-cta {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
}

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26, 58, 107, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(197, 165, 90, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(204, 0, 51, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.diamond-icon {
    font-size: 0.5rem;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-line-1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-line-2 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--white);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-line-3 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-needle {
    animation: needleSway 3s ease-in-out infinite;
}

@keyframes needleSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--cream);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Side Images */
.hero-image-left,
.hero-image-right {
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.hero-image-left {
    left: 3%;
    bottom: 10%;
    width: 180px;
    height: 220px;
    border: 1px solid rgba(197, 165, 90, 0.3);
}

.hero-image-right {
    right: 3%;
    bottom: 10%;
    width: 180px;
    height: 260px;
    border: 1px solid rgba(197, 165, 90, 0.3);
}

.hero-image-left img,
.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-image-left:hover img,
.hero-image-right:hover img {
    transform: scale(1.1);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.hero-scroll-indicator * {
    pointer-events: auto;
}

.hero-scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 165, 90, 0.4);
}

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

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

.btn-large {
    padding: 20px 48px;
    font-size: 0.85rem;
}

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

/* ---------- Marquee ---------- */
.marquee-section {
    background: var(--gold);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.marquee-dot {
    font-size: 0.6rem !important;
    opacity: 0.5;
}

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

/* ---------- Section Common ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 28px; height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--navy-dark);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.gold-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 24px;
}

.gold-underline.center {
    margin-left: auto;
    margin-right: auto;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* ---------- About Section ---------- */
.about-section {
    background: var(--cream-light);
}

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

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

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.about-image-frame {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1.5px solid var(--gold);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--navy-dark);
    padding: 24px 30px;
    text-align: center;
    z-index: 2;
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.exp-text {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--cream);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    line-height: 1.4;
}

.about-text-col .section-label {
    padding-left: 40px;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.stat-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.stat-item:hover .stat-icon {
    transform: translateY(-4px);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy-mid);
}

/* ---------- Philosophy Section ---------- */
.philosophy-section {
    position: relative;
    padding: 120px 0;
    background: var(--navy-dark);
    overflow: hidden;
}

.philosophy-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(197, 165, 90, 0.08) 0%, transparent 60%);
}

.philosophy-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.diamond-decorator {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 32px;
    animation: diamondPulse 3s ease-in-out infinite;
}

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

.philosophy-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--cream);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

/* ---------- Collections Section ---------- */
.collections-section {
    background: var(--white);
}

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

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-card-large {
    grid-column: 1 / -1;
    max-height: 600px;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-card-large .card-image {
    min-height: 500px;
    max-height: 600px;
}

.collection-card:hover .card-image {
    transform: scale(1.08);
}

.card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
}

.collection-card:hover .card-placeholder {
    transform: scale(1.05);
}

.placeholder-content {
    text-align: center;
    color: var(--cream);
}

.placeholder-content i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.placeholder-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.placeholder-content p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 14, 26, 0.95) 0%, rgba(7, 14, 26, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.card-overlay-content {
    transform: translateY(20px);
    transition: transform var(--transition-fast);
}

.collection-card:hover .card-overlay-content {
    transform: translateY(0);
}

.card-category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.7;
}

.card-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.card-link:hover {
    gap: 14px;
}

/* ---------- Services Section ---------- */
.services-section {
    background: var(--cream-light);
}

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

.service-card {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.service-icon {
    width: 72px; height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    color: var(--gold);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    transform: rotate(45deg);
}

.service-icon i {
    transform: rotate(-45deg);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy-dark);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-line {
    width: 40px;
    height: 1.5px;
    background: var(--gold);
    margin: 0 auto;
    transition: width var(--transition-fast);
}

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

/* ---------- Process Section ---------- */
.process-section {
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px; height: 52px;
    background: var(--navy-dark);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid var(--gold);
}

.step-content {
    width: 40%;
    padding-right: 60px;
    text-align: right;
}

.step-right .step-content {
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
    margin-left: auto;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

.step-icon {
    display: none;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    background: var(--navy-dark);
}

.testimonials-section .section-label {
    color: var(--gold);
}

.testimonials-section .section-label::before {
    background: var(--gold);
}

.testimonials-section .section-title {
    color: var(--cream);
}

.testimonials-section .section-title em {
    color: var(--gold);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 165, 90, 0.15);
    padding: 44px 36px;
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--gold);
    background: rgba(197, 165, 90, 0.06);
    transform: translateY(-4px);
}

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

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

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--cream);
    font-weight: 300;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 1px;
}

.author-title {
    display: block;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(197, 165, 90, 0.03) 40px, rgba(197, 165, 90, 0.03) 41px);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-title em {
    color: var(--gold);
    font-style: italic;
}

.cta-text {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
.contact-section {
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-intro p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy-dark);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--navy-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--navy-dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    color: var(--gold);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--gray-light);
}

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

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

.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-light);
    background: var(--cream-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy-dark);
    transition: border-color var(--transition-fast);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-dark);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid rgba(197, 165, 90, 0.2);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.6;
    line-height: 1.7;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.6;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    font-size: 0.78rem;
    color: var(--cream);
    opacity: 0.5;
}

.footer-craft i {
    color: var(--crimson);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: var(--navy-dark);
    color: var(--gold);
    border: 1.5px solid var(--gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

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

@media (max-width: 1100px) {
    .hero-image-left,
    .hero-image-right {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

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

    .collection-card-large .card-image {
        min-height: 400px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    /* Timeline Mobile */
    .timeline-line {
        left: 26px;
    }

    .process-step,
    .process-step.step-right {
        flex-direction: row;
    }

    .step-number {
        position: relative;
        left: auto;
        transform: none;
        min-width: 52px;
    }

    .step-content,
    .step-right .step-content {
        width: auto;
        text-align: left;
        padding: 0 0 0 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.75rem;
    }

    .btn-large {
        padding: 16px 32px;
    }
}

/* ---------- Smooth Reveal Animations ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ---------- Form Success State ---------- */
.form-success {
    text-align: center;
    padding: 48px;
}

.form-success i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-body);
    line-height: 1.7;
}

/* ========================================
   PRODUCT SHOWCASE SECTION
   ======================================== */

.product-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 50%, var(--cream-light) 100%);
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 60px;
}

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

.category-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 600;
}

.category-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

/* ========================================
   CAROUSEL STYLES
   ======================================== */

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-carousel {
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform var(--transition-smooth);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    color: var(--navy);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all var(--transition-fast);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

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

@media (max-width: 768px) {
    .product-showcase-section {
        padding: 60px 0;
    }

    .product-showcase-grid {
        gap: 60px;
    }

    .category-title {
        font-size: 2.5rem;
    }

    .category-headline {
        font-size: 1.8rem;
    }

    .category-description {
        font-size: 1rem;
        text-align: center;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .product-showcase-section {
        padding: 40px 0;
    }

    .product-showcase-grid {
        gap: 40px;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-headline {
        font-size: 1.5rem;
    }

    .carousel-slide img {
        height: 250px;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
