/* MHX General Trading LLC - Premium Design System */
/* Converted from Tailwind CSS to Vanilla CSS */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables - Design Tokens */
:root {
    /* MHX Brand Colors */
    --gold: hsl(38, 62%, 45%);
    --gold-light: hsl(38, 70%, 55%);
    --gold-dark: hsl(38, 55%, 35%);
    --burgundy: hsl(359, 60%, 30%);
    --burgundy-light: hsl(359, 50%, 40%);
    --premium-black: hsl(0, 0%, 4%);
    --off-white: hsl(40, 23%, 97%);
    --cream: hsl(38, 30%, 94%);

    /* QAYN Brand Colors */
    --forest: hsl(160, 43%, 21%);
    --forest-light: hsl(154, 40%, 31%);
    --forest-dark: hsl(160, 50%, 15%);

    /* Semantic Colors */
    --background: var(--off-white);
    --foreground: var(--premium-black);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(38, 20%, 90%);
    --muted-foreground: hsl(0, 0%, 35%);
    --border: hsl(38, 20%, 85%);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(38, 55%, 35%), hsl(38, 70%, 55%), hsl(38, 55%, 35%));
    --gradient-gold-horizontal: linear-gradient(90deg, hsl(38, 55%, 35%), hsl(38, 70%, 55%), hsl(38, 62%, 45%), hsl(38, 70%, 55%), hsl(38, 55%, 35%));
    --gradient-hero-overlay: linear-gradient(90deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.5) 50%, rgba(11, 11, 11, 0.3) 100%);
    --gradient-forest: linear-gradient(135deg, hsl(160, 50%, 15%), hsl(160, 43%, 21%), hsl(154, 40%, 31%));

    /* Shadows */
    --shadow-gold: 0 4px 20px -4px hsla(38, 62%, 45%, 0.3);
    --shadow-elegant: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 24px -4px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul,
ol {
    list-style: none;
}

/* Container */
.luxury-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

@media (min-width: 1024px) {
    .luxury-container {
        padding: 0 3rem;
    }
}

/* Section Spacing */
.section-padding {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 7rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.header.transparent {
    background: transparent;
}

.header.scrolled,
.header.dark {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elegant);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

@media (min-width: 768px) {
    .header-inner {
        height: 6rem;
    }
}

.header-logo img {
    height: 5rem;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

@media (min-width: 768px) {
    .header-logo img {
        height: 5rem;
    }
}

.header-logo:hover img {
    transform: scale(1.02);
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--off-white);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--gold), 0.2);
    border-radius: 2px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--off-white);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    color: var(--gold);
    background: rgba(var(--gold), 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--off-white);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--premium-black);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 6rem 1.5rem 2rem;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-family: var(--font-serif);
    color: var(--off-white);
    transition: color 0.3s ease;
}

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

.mobile-nav-submenu {
    padding-left: 1rem;
    border-left: 1px solid rgba(var(--gold), 0.2);
}

.mobile-nav-submenu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.mobile-nav-submenu a:hover {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-hero {
    background: var(--gradient-gold);
    color: var(--premium-black);
    box-shadow: var(--shadow-gold);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px -4px hsla(38, 62%, 45%, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--premium-black);
}

.btn-gold:hover {
    background: var(--gold-light);
}

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

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--premium-black);
}

.btn-white-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
    border-color: var(--off-white);
    background: var(--off-white);
    color: var(--premium-black);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 0;
}

.hero-label {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .gold {
    color: var(--gold);
}

.text-gold-gradient {
    background: var(--gradient-gold-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(var(--gold), 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
    animation: bounce 1.5s infinite;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.5rem;
    background: var(--gold);
    border-radius: 9999px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Trust Indicators */
.trust-bar {
    background: var(--premium-black);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-grid {
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.trust-item span {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.section-title.text-white {
    color: var(--off-white);
}

.section-description {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Service Card */
.service-card {
    display: block;
}

.service-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.2);
    transition: background 0.3s ease;
}

.service-card:hover .service-card-image::after {
    background: rgba(11, 11, 11, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--premium-black);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.service-card:hover .learn-more {
    gap: 1rem;
}

/* Feature Card */
.feature-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-elegant);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(var(--gold), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--premium-black);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Split Section */
.split-section {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.split-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: var(--shadow-elegant);
}

/* Background Utilities */
.bg-off-white {
    background-color: var(--off-white);
}

.bg-premium-black {
    background-color: var(--premium-black);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-forest {
    background-color: var(--forest);
}

/* Text Colors */
.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--off-white);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Quote Block */
.quote-block {
    background: var(--premium-black);
    padding: 3rem;
    border-radius: 2px;
}

.quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(var(--gold), 0.3);
    margin-bottom: 1rem;
}

.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.quote-author {
    color: var(--gold);
    font-family: var(--font-serif);
}

.quote-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.value-number {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(var(--gold), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-year {
    width: 5rem;
    flex-shrink: 0;
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
}

.timeline-content {
    flex: 1;
    border-left: 2px solid rgba(var(--gold), 0.2);
    padding-left: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -0.4375rem;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-item:last-child .timeline-content {
    padding-bottom: 0;
}

/* Contact Info Cards */
.contact-cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: var(--shadow-card);
}

.contact-card .icon {
    width: 3rem;
    height: 3rem;
    background: rgba(var(--gold), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card .icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.125rem;
    color: var(--premium-black);
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--premium-black);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(var(--gold), 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Map Container */
.map-container {
    background: var(--premium-black);
    border-radius: 2px;
    overflow: hidden;
    height: 20rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* WhatsApp CTA */
.whatsapp-cta {
    background: var(--forest);
    padding: 2rem;
    border-radius: 2px;
}

.whatsapp-cta-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.whatsapp-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--off-white);
}

.whatsapp-cta h3 {
    font-size: 1.25rem;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.whatsapp-cta p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--premium-black);
    color: var(--off-white);
}

.footer-main {
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
}

.footer-brand img {
    height: 3.5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(var(--gold), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--premium-black);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(var(--gold), 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Region Cards */
.region-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--gold), 0.1);
    padding: 2rem;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.region-card:hover {
    border-color: rgba(var(--gold), 0.3);
}

.region-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.region-card .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.region-card .value {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.region-card .products {
    color: var(--gold);
}

/* Date Variety Cards */
.variety-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 2px;
    border: 1px solid rgba(var(--gold), 0.1);
    transition: box-shadow 0.3s ease;
}

.variety-card:hover {
    box-shadow: var(--shadow-card);
}

.variety-card h3 {
    font-size: 1.5rem;
    color: var(--premium-black);
    margin-bottom: 0.5rem;
}

.variety-card .origin {
    font-size: 0.875rem;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.variety-card .flavor {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Process Steps */
.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.process-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(var(--gold), 0.3);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--premium-black);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Product List */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-list .dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gold);
    border-radius: 50%;
}

.product-list span {
    color: var(--off-white);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-box {
    background: var(--premium-black);
    border-radius: 2px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 5rem;
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold-horizontal);
    opacity: 0.1;
}

.cta-box>* {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-box h2 {
        font-size: 2.5rem;
    }
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Stat Cards for light backgrounds */
.stat-card {
    border-left: 2px solid var(--forest);
    padding-left: 1rem;
}

.stat-card .value {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--forest);
}

.stat-card.gold {
    border-left-color: var(--gold);
}

.stat-card.gold .value {
    color: var(--gold);
}

.stat-card .label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Dark Feature Card */
.feature-card-dark {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid rgba(var(--gold), 0.1);
    transition: border-color 0.3s ease;
}

.feature-card-dark:hover {
    border-color: rgba(var(--gold), 0.3);
}

.feature-card-dark .icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(var(--gold), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card-dark .icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--gold);
}

.feature-card-dark h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.feature-card-dark p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}

.image-grid img:nth-child(2) {
    margin-top: 3rem;
}

/* Gold Badge */
.gold-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-gold);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gold-badge span {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--premium-black);
    line-height: 1.3;
}

/* Trade Info Box */
.trade-info-box {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 2px;
    border: 1px solid rgba(var(--gold), 0.2);
}

.trade-info-box h3 {
    font-size: 1.125rem;
    color: var(--premium-black);
    margin-bottom: 0.75rem;
}

.trade-info-box p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.trade-info-box .highlight {
    color: var(--gold);
    font-size: 0.875rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

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

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

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

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

/* 404 Page */
.not-found {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.not-found h1 {
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.not-found h2 {
    font-size: 2rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.not-found p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}