/* ===== PGC Exports - Premium Black & Gold Theme ===== */
/* Custom CSS to complement Tailwind CDN */

@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=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
    --gold-primary: #C8A84E;
    --gold-light: #E8D48B;
    --gold-dark: #A68B3C;
    --gold-gradient: linear-gradient(135deg, #C8A84E 0%, #E8D48B 50%, #C8A84E 100%);
    --gold-gradient-hover: linear-gradient(135deg, #E8D48B 0%, #C8A84E 50%, #E8D48B 100%);
    --black-primary: #000000;
    --black-rich: #0A0A0A;
    --black-card: #111111;
    --black-card-hover: #1A1A1A;
    --gray-dark: #1A1A1A;
    --gray-medium: #2A2A2A;
    --gray-border: #333333;
    --text-white: #F5F5F5;
    --text-muted: #999999;
    --text-subtle: #666666;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Outfit', system-ui, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

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

::selection {
    background: var(--gold-primary);
    color: var(--black-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

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

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

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

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

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 180px;
    animation: pulse-gold 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: loading-bar 1.2s ease-in-out infinite;
}

@keyframes loading-bar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(200, 168, 78, 0.3));
    }

    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 20px rgba(200, 168, 78, 0.6));
    }
}

/* ===== Navigation ===== */
/* Override Tailwind preflight visibility:collapse on Bootstrap navbar elements */
.navbar,
.navbar *,
.navbar-collapse,
.navbar-collapse *,
.navbar-nav,
.navbar-nav *,
.nav-item,
.nav-link,
.navbar-brand,
.navbar-toggler {
    visibility: visible !important;
}

.navbar-collapse:not(.show):not(.collapsing) {
    display: none !important;
}

.navbar-collapse.collapsing,
.navbar-collapse.show {
    display: block !important;
}

@media (min-width: 992px) {

    .navbar-collapse,
    .navbar-collapse:not(.show):not(.collapsing) {
        display: flex !important;
    }

    .navbar-toggler {
        display: none !important;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.15);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    height: 70px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(200, 168, 78, 0.3));
}

.navbar.scrolled .nav-logo {
    height: 58px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white) !important;
    position: relative;
    padding: 8px 0 !important;
    margin: 0 12px;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.nav-link.active {
    color: var(--gold-primary) !important;
}

/* Mobile menu toggle */
.navbar-toggler {
    border: 1px solid var(--gold-primary) !important;
    padding: 8px 12px;
    outline: none !important;
    box-shadow: none !important;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(200, 168, 78, 0.3) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C8A84E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px;
    height: 24px;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.25);
    transform: scale(1.1);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.6) 70%,
            rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border: 1px solid rgba(200, 168, 78, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: rgba(200, 168, 78, 0.08);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.3s both;
    min-width: 200px;
    justify-content: center;
    white-space: nowrap;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(200, 168, 78, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(200, 168, 78, 0);
    }
}

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

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.7s both;
}

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

/* ===== Buttons ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--gold-gradient);
    color: var(--black-primary) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 78, 0.35);
    color: var(--black-primary) !important;
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold span {
    position: relative;
    z-index: 1;
}

.btn-gold i {
    position: relative;
    z-index: 1;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--gold-primary) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: rgba(200, 168, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 78, 0.15);
    color: var(--gold-primary) !important;
}

/* ===== Section Styling ===== */
.section {
    padding: 80px 0;
    position: relative;
    overflow-x: hidden;
}

.section-dark {
    background: var(--black-rich);
}

.section-darker {
    background: var(--black-primary);
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold-primary);
    opacity: 0.5;
}

.section-label::before {
    right: 100%;
}

.section-label::after {
    left: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== Gold Divider ===== */
.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.about-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-text strong {
    color: var(--gold-primary);
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 8px;
    background: rgba(200, 168, 78, 0.04);
    border: 1px solid rgba(200, 168, 78, 0.1);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(200, 168, 78, 0.08);
    border-color: rgba(200, 168, 78, 0.25);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== Products Section ===== */
.product-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(200, 168, 78, 0.08);
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(200, 168, 78, 0.15);
    border: 1px solid rgba(200, 168, 78, 0.4);
    color: var(--gold-primary);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.product-body {
    padding: 28px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.15);
    color: var(--gold-light);
    border-radius: 3px;
}

/* ===== Markets Section ===== */
.market-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.market-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.market-flag {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.market-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.market-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Why Us Section ===== */
.why-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: rgba(200, 168, 78, 0.15);
    border-color: var(--gold-primary);
    transform: scale(1.1);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-info-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200, 168, 78, 0.08);
}

.contact-item > div:not(.contact-icon) {
    min-width: 0;
    flex: 1;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    background: rgba(200, 168, 78, 0.15);
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-subtle);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-value a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    overflow-wrap: break-word;
    word-break: break-word;
}

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

/* Contact Form */
.contact-form-card {
    background: var(--black-card);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

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

.form-floating .form-control,
.form-floating .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gray-border);
    color: var(--text-white);
    border-radius: 4px;
    padding: 16px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    background: rgba(200, 168, 78, 0.04);
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
    outline: none;
    color: var(--text-white);
}

.form-floating label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-floating .form-control:focus~label,
.form-floating .form-control:not(:placeholder-shown)~label {
    color: var(--gold-primary);
}

/* Select dropdown - custom arrow & option styling */
.form-floating .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C8A84E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 10px;
    padding-right: 40px;
    cursor: pointer;
}

.form-floating .form-select option {
    background-color: #111111;
    color: #F5F5F5;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.form-floating .form-select option:hover,
.form-floating .form-select option:checked {
    background-color: #1A1A1A;
    color: #C8A84E;
}

.form-floating .form-select option:disabled {
    color: #666666;
}

.form-floating .form-select:focus~label,
.form-floating .form-select:not([value=""]):valid~label {
    color: var(--gold-primary);
}

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

/* ===== Footer ===== */
.footer {
    background: var(--black-primary);
    border-top: 1px solid rgba(200, 168, 78, 0.1);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(200, 168, 78, 0.2));
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 350px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    overflow: hidden;
}

.footer-links li a {
    max-width: 100%;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

.footer-bottom {
    border-top: 1px solid rgba(200, 168, 78, 0.1);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-subtle);
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

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

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

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

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

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ===== Gold shimmer text effect ===== */
.shimmer-text {
    background: linear-gradient(90deg,
            var(--gold-dark) 0%,
            var(--gold-light) 25%,
            var(--gold-primary) 50%,
            var(--gold-light) 75%,
            var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ===== Particles / Grain overlay ===== */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Toast notification ===== */
.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 30px;
    background: var(--black-card);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    color: var(--gold-primary);
    font-weight: 500;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 168, 78, 0.15);
}

.toast-notification.show {
    bottom: 100px;
}

/* ===== Responsive ===== */

/* Tablet & below */
@media (max-width: 991px) {
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-card {
        padding: 24px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }

    .navbar {
        padding: 8px 0;
    }

    .navbar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-logo {
        height: 50px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
    }

    .navbar.scrolled .nav-logo {
        height: 42px;
        width: auto;
    }

    /* Mobile navbar collapse menu */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 24px;
        border-radius: 12px;
        border: 1px solid rgba(200, 168, 78, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }

    .navbar-nav {
        gap: 0 !important;
    }

    .nav-link {
        margin: 0 !important;
        padding: 12px 8px !important;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(200, 168, 78, 0.06);
    }

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

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .nav-item .btn-gold {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        min-height: 100svh;
    }

    .hero-bg {
        transform: scale(1.02);
    }

    @keyframes hero-zoom {
        0% {
            transform: scale(1.02);
        }

        100% {
            transform: scale(1.06);
        }
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 18px;
        letter-spacing: 2px;
        margin-bottom: 20px;
        min-width: 180px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 14px 24px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

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

    .product-card {
        margin-bottom: 0;
    }

    .product-card:hover {
        transform: none;
    }

    .market-card:hover,
    .why-card:hover {
        transform: none;
    }

    .footer-logo {
        height: 50px;
    }

    .cta-banner {
        padding: 50px 0;
    }
}

/* Mobile - small screens */
@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .hero-section {
        min-height: 100svh;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.6rem;
        min-width: 160px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .section-label::before,
    .section-label::after {
        width: 20px;
    }

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

    .stat-label {
        font-size: 0.65rem;
    }

    .product-img-wrapper {
        height: 200px;
    }

    .product-body {
        padding: 20px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-desc {
        font-size: 0.8rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .about-card {
        padding: 20px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .contact-value a {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .market-card {
        padding: 24px 20px;
    }

    .market-flag {
        font-size: 2.5rem;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    #backToTop {
        bottom: 20px !important;
        left: 20px !important;
        width: 38px !important;
        height: 38px !important;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        height: 45px;
        width: auto;
        max-width: 130px;
        object-fit: contain;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-desc {
        font-size: 0.8rem;
    }

    .iec-badge {
        flex-direction: column;
        text-align: center;
    }

    .iec-badge span {
        font-size: 0.75rem;
    }

    .toast-notification {
        left: 20px;
        right: 20px;
        transform: none;
        text-align: center;
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .toast-notification.show {
        bottom: 80px;
    }

    .gold-divider {
        margin: 14px auto;
    }

    .form-floating .form-control,
    .form-floating .form-select {
        font-size: 0.85rem;
        padding: 14px;
    }

    .form-floating label {
        font-size: 0.8rem;
    }
}

/* ===== IEC Badge ===== */
.iec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(200, 168, 78, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 6px;
    margin-top: 20px;
}

.iec-badge i {
    color: var(--gold-primary);
}

.iec-badge span {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.08) 0%, transparent 50%, rgba(200, 168, 78, 0.05) 100%);
    border-top: 1px solid rgba(200, 168, 78, 0.1);
    border-bottom: 1px solid rgba(200, 168, 78, 0.1);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 168, 78, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}