@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;
    --gold-light: #F1D38A;
    --gold-dark: #A67C00;

    /* Neutral Colors */
    --bg-dark: #0f0f0f;
    --bg-mid: #1a1a1a;
    --bg-light: #252525;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(1.2); /* Enhance the gold pop */
    transition: height 0.3s ease;
}

@media (min-width: 1024px) {
    .logo img {
        height: 120px; /* Scaling up for desktop */
    }
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: height 0.3s ease;
}

@media (min-width: 1024px) {
    .footer-logo img {
        height: 140px; /* Scaling up for footer on desktop */
    }
}

/* Fix navigation layout to avoid overlap */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Utilities */
.text-gold { color: var(--primary-gold); }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; letter-spacing: 0.2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.875rem;
    transition: all 0.4s ease;
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg-dark);
}

.btn:hover::before {
    left: 0;
}

.btn-filled {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-filled:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--text-white);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0; /* Reduced padding for large logo */
    background: transparent;
    transition: all 0.5s ease;
    z-index: 1000;
}

nav.scrolled {
    background: rgba(15, 15, 15, 0.95);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Logo Area */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.nav-logo {
    height: 120px; /* Larger base height to support cropping */
    width: auto;
    object-fit: contain;
    transform: scale(1.2); /* Zoom in to crop out the edges */
    margin: -15px -20px; /* Pull the image inward to remove whitespace */
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.brand-name {
    display: flex;
    overflow: hidden;
    max-height: 80px;
    font-size: 1.8rem;
    color: var(--primary-gold);
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
    justify-content: end;
}

.logo-text {
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
    align-items: center; /* Added for vertical centering */
    gap: 1.5rem; /* Ensure gap between logo and text */
}


.company-name {
    /* font-size: 0.7rem; */
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--primary-gold); /* User requested golden */
    letter-spacing: 3px;
    font-weight: 900; /* User requested extra bold */
    line-height: 1.4;
}

@media (max-width: 768px) {
    .logo-wrapper { gap: 1rem; }
    .brand-name { font-size: 1.4rem; }
    .company-name { font-size: 1rem; letter-spacing: 1.5px; }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
}

/* Section Common */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--primary-gold);
}

/* Testimonials - Slider Reveal */
.testimonials {
    background: var(--bg-dark);
    position: relative;
    padding-bottom: var(--spacing-xl);
}

.testimonial-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 0 1rem;
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-img-wrapper {
    flex: 1;
    position: relative;
}

.testimonial-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1.2;
    text-align: left;
}

.testimonial-text {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    border-left: 2px solid var(--primary-gold);
    padding-left: 2rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.5);
}

@media (max-width: 1024px) {
    .testimonial-item {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .testimonial-content {
        text-align: center;
    }
    .testimonial-text {
        border-left: none;
        padding-left: 0;
        font-size: 1.5rem;
    }
}

/* Collections / Categories */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    background: var(--bg-mid);
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.collection-card:hover .collection-img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.collection-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.collection-overlay p {
    font-size: 0.875rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Homepage */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.product-card {
    text-align: center;
    transition: all 0.5s ease;
    background: #111;
    padding-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.product-img-wrapper {
    background: #000;
    height: 300px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(1);
}

.product-details {
    padding: 0 1.5rem;
}

.product-details h3 {
    font-size: 1.1rem;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    background: var(--bg-mid);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--bg-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.large {
        grid-column: span 1;
        height: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/gold_stack.png');
    background-size: cover;
    background-position: center;
    padding: 15rem 0 6rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-main {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem; /* Reduced from 8rem */
}

.contact-form-wrapper {
    background: #0a0a0a;
    padding: 5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.contact-form-wrapper h2 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 400;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.2rem;
    color: white;
    font-family: inherit;
    outline: none;
    transition: all 0.4s ease;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background: #151515;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.office-card {
    padding: 2.5rem;
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-gold);
    transform: scaleY(0);
    transition: transform 0.5s ease;
    transform-origin: bottom;
}

.office-card:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
}

.office-card:hover::before {
    transform: scaleY(1);
}

.office-card h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.office-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 5rem;
    background: #0d0d0d;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.strip-item span {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
}

.strip-item p {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: white;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-strip {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 3rem;
    }
}

/* Shops Page Styles */
.shops-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../assets/shop_1.png');
    background-size: cover;
    background-position: center;
    padding: 18rem 0 12rem 0;
    text-align: center;
}

.boutique-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 8rem auto;
}

.boutique-intro h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.boutique-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 8rem;
}

.shop-item {
    position: relative;
    overflow: hidden;
    height: 600px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.shop-item.large {
    grid-column: span 2;
    height: 800px;
}

.shop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.shop-item:hover img {
    transform: scale(1.08);
}

.shop-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.shop-item:hover .shop-info {
    transform: translateY(0);
    opacity: 1;
}

.shop-info h3 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.shop-info p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
}

.destinations-section {
    padding: 10rem 0;
    background: var(--bg-mid);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.dest-card {
    text-align: center;
}

.dest-card h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.dest-card p {
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .shop-item, .shop-item.large {
        grid-column: span 1;
        height: 500px;
    }
}

/* Collections Page Styles */
.collections-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 15rem 0 10rem 0;
    text-align: center;
}

.collection-row {
    margin-bottom: 5rem;
}

.collection-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    max-width: 600px;
}

.collection-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.coll-item {
    text-align: center;
}

.coll-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
    margin-bottom: 1.5rem;
}

.coll-item:hover img {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.coll-item p {
    font-size: 1.1rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .collection-items {
        grid-template-columns: 1fr;
    }
    .banner-content h2 {
        font-size: 2.5rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/gold_crafting.png');
    background-size: cover;
    background-position: center;
    padding: 15rem 0 10rem 0;
    text-align: center;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-text-box {
    flex: 1;
}

.about-text-box h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.about-text-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-img-box {
    flex: 1;
}

.about-img-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 30px 30px 0 var(--bg-mid);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}

.value-card {
    background: var(--bg-mid);
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.value-card h4 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Founder's Section - Ultra Luxury Redesign */
.about-founder {
    padding: 15rem 0;
    background: var(--bg-dark);
}

.founder-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.founder-image {
    position: relative;
    z-index: 1;
}

.founder-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: drop-shadow(30px 30px 60px rgba(0,0,0,0.8));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.founder-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid var(--primary-gold);
    z-index: -1;
    transform: translate(40px, 40px);
}

.founder-text {
    position: relative;
    z-index: 2;
    background: var(--bg-mid);
    padding: 6rem;
    margin-left: -15%; /* Overlap effect */
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    border-left: 3px solid var(--primary-gold);
}

.founder-text::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-size: 12rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.founder-text h2 {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: white;
    font-weight: 400;
}

.founder-name {
    font-size: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.founder-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .founder-flex {
        grid-template-columns: 1fr;
    }
    .founder-image img {
        height: 500px;
    }
    .founder-text {
        margin-left: 0;
        margin-top: -5rem;
        padding: 4rem 2rem;
    }
    .founder-image::before {
        display: none;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 5rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--bg-light);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

.time-year {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    color: var(--primary-gold);
    transform: rotate(-90deg) translateX(-10px);
    width: 60px;
    text-align: right;
}

.time-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.time-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.process-card {
    padding: 4rem;
    background: var(--bg-mid);
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
}

.process-card:hover {
    border-bottom-color: var(--primary-gold);
    background: #151515;
}

.step-num {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.process-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.process-card p {
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .founder-flex {
        flex-direction: column;
        padding: 3rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Market Rates Bar */
.market-rates-bar {
    background: rgba(15, 15, 15, 0.9);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    z-index: 90;
    position: relative;
    margin-top: -3rem; /* Overlap with hero slightly for style */
}

.market-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 2rem;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.status-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.live-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #4CAF50;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rate-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.rate-change {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.rate-change.up {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.rate-change.down {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

@media (max-width: 768px) {
    .market-rates-bar {
        margin-top: 0;
    }
    .market-flex {
        justify-content: center;
        text-align: center;
    }
    .market-status {
        border-right: none;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* Product Catalog / Filtering */
.products-hero {
    padding: 15rem 0 5rem 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.catalog-container {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.product-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
    position: relative;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.4s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.filter-btn:hover {
    color: white;
}

.filter-btn.active {
    color: var(--primary-gold);
}

.filter-btn.active::after {
    width: 100%;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
}

.product-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.product-img-box {
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.product-info {
    padding: 3rem 2rem;
    text-align: center;
}

.product-cat {
    font-size: 0.7rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.product-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 400;
}

.product-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.product-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .product-filters {
        gap: 1.5rem;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .product-img-box {
        height: 350px;
    }
}
