/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    --gold: #D4AF37;
    --gold-light: rgba(212, 175, 55, 0.15);
    --gold-hover: #B8962E;
    
    --bg-white: #FFFFFF;
    --bg-off-white: #FDFDFD;
    
    --text-heading: #1A1A1A; /* Darkened from wireframe for readability */
    --text-body: #4A4A4A;    /* Darkened from wireframe for readability */
    --text-light: #7A7A7A;
    
    --border-light: #EAEAEA;
    --border-gold: #E8D399;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 400;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-white);
    border: 1px solid var(--gold);
}

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

.btn-text {
    background: none;
    color: var(--text-heading);
    font-weight: 600;
    padding: 0;
}

.btn-text:hover {
    color: var(--gold);
}

.btn-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    gap: 12px; /* Slight arrow slide effect */
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 40px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.main-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Invert the dark logo to white in the dark footer */
.footer-logo .logo-img {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 40px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--text-heading);
    line-height: 1.1;
}

.logo-bottom {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1.1;
}

.main-nav .nav-links {
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-heading);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Constrain width for better reading */
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-light); /* To match the wireframe style but legible */
}

.hero-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.stats-strip {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-gold);
    padding-top: 40px;
    margin-bottom: 60px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-light);
}

.compliance-logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.iec-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.iec-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

.hero-bg-lines {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

/* ==========================================================================
   Heritage / About Section
   ========================================================================== */

.heritage {
    position: relative;
    overflow: hidden;
}

.heritage-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.heritage-bg-lines {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.heritage-quote {
    border-left: 4px solid var(--gold);
    padding: 10px 0 10px 30px;
    margin: 40px 0;
}

.heritage-quote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

.heritage-text p {
    margin-bottom: 20px;
}

.compliance-section {
    margin-top: 80px;
    border-top: 1px solid var(--border-light);
    padding-top: 60px;
}

.compliance-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.compliance-card {
    border: 1px solid var(--border-gold);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.compliance-card i {
    font-size: 24px;
    color: var(--text-heading);
}

.compliance-card span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-heading);
}

.serving-text {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================================================
   Products Section
   ========================================================================== */

.products {
    background-color: var(--bg-off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-image-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.product-image-placeholder i {
    font-size: 32px;
    color: var(--gold);
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ==========================================================================
   Merchant Export Programme
   ========================================================================== */

.merchant-container {
    max-width: 800px;
}

.merchant-intro {
    margin-bottom: 60px;
}

.merchant-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.merchant-details p {
    margin-bottom: 30px;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 20px;
    border: 1px solid var(--border-gold);
    color: var(--text-heading);
    text-transform: uppercase;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-choose-us {
    background-color: var(--bg-off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background-color: var(--gold-light);
    text-align: center;
}

.cta-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    color: var(--text-heading);
    margin-bottom: 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
    background-color: var(--text-heading);
    color: var(--bg-white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-top {
    color: var(--bg-white);
}

.footer-logo p {
    color: #999;
    font-size: 14px;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #999;
    font-size: 14px;
}

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

.footer-contact p {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

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

@media (max-width: 992px) {
    .stats-strip {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 20px;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .heritage-quote p {
        font-size: 18px;
    }
    
    .products-grid, .features-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
}

/* ==========================================================================
   Inner Pages (About Us, etc.)
   ========================================================================== */

.page-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-off-white);
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Our Story */
.our-story {
    padding: 100px 0;
}

.story-container {
    max-width: 800px;
}

.story-content p {
    font-size: 18px;
    color: var(--text-body);
}

/* Dual Advantage */
.dual-advantage {
    padding: 80px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.advantage-card {
    background: var(--bg-off-white);
    padding: 50px;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gold);
}

.advantage-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.advantage-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.lead-text {
    font-size: 20px;
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-heading);
}

/* Registrations Table */
.registration-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.registration-table th, .registration-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.registration-table th {
    background-color: var(--text-heading);
    color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.registration-table td {
    font-size: 15px;
}

/* Leadership */
.leadership-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.leadership-image {
    flex: 0 0 400px;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-off-white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder i {
    font-size: 80px;
    color: var(--border-light);
}

.leadership-content {
    flex: 1;
}

.leadership-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.leadership-bio {
    font-size: 16px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 24px;
    color: var(--gold);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

/* Markets Serve */
.markets-list {
    font-size: 18px;
    color: var(--text-light);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive inner pages */
@media (max-width: 768px) {
    .advantage-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-flex {
        flex-direction: column;
    }
    
    .leadership-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ==========================================================================
   Products Page
   ========================================================================== */

.product-category {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.product-category:last-child {
    border-bottom: none;
}

.product-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 40px;
    color: var(--gold);
}

.product-intro {
    font-size: 18px;
    color: var(--text-body);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-details-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.detail-box {
    background: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.detail-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.detail-box h3 i {
    color: var(--gold);
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-body);
}

.custom-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
    top: 0;
}

.customisation-bar {
    background: var(--text-heading);
    color: var(--bg-white);
    padding: 20px 30px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.customisation-bar strong {
    color: var(--gold);
    margin-right: 10px;
    text-transform: uppercase;
}

.customisation-bar .dot {
    color: var(--gold);
    margin: 0 10px;
}

/* Process Steps for Sourcing */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-off-white);
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step p {
    font-weight: 500;
    margin: 0;
}

.step-arrow {
    text-align: center;
    color: var(--gold);
    font-size: 20px;
}

@media (max-width: 992px) {
    .product-details-grid.three-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .product-details-grid, .product-details-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .customisation-bar {
        line-height: 2;
    }
}

/* ==========================================================================
   Process Page
   ========================================================================== */

.process-steps-section {
    padding: 100px 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.timeline-card {
    background: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    z-index: 1;
    overflow: hidden;
}

.timeline-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
    opacity: 0.05;
    z-index: -1;
}

.timeline-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--gold);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.timeline-card p {
    font-size: 16px;
    color: var(--text-body);
}

.payment-terms {
    padding: 80px 0 100px;
}

@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Quality Page
   ========================================================================== */

.commitment-section {
    padding: 80px 0;
}

.commitment-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-body);
    line-height: 1.8;
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.qc-card {
    background: var(--bg-white);
    padding: 40px;
    border: 1px solid var(--border-light);
    position: relative;
}

.qc-icon {
    width: 60px;
    height: 60px;
    background: var(--text-heading);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.qc-stage {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.qc-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.packaging-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.packaging-content {
    flex: 1;
}

.packaging-item {
    margin-bottom: 30px;
}

.packaging-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.packaging-item h4 i {
    color: var(--gold);
    font-size: 24px;
}

.packaging-image {
    flex: 0 0 400px;
}

.third-party {
    padding: 80px 0;
}

.third-party-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.registrations-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 14px;
}

.registrations-strip .dot {
    color: var(--gold);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    background: var(--bg-off-white);
    padding: 40px;
    border: 1px solid var(--border-light);
    height: 100%;
}

.contact-person {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.contact-person h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--gold);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-list i {
    font-size: 32px;
    color: var(--gold);
}

.info-list strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.info-list p {
    font-size: 16px;
    color: var(--text-body);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-heading);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-light);
    background: var(--bg-off-white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-white);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    font-size: 12px;
    color: var(--gold);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.submit-btn {
    padding: 18px;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.faq-card {
    background: var(--bg-white);
    padding: 30px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-heading);
}

@media (max-width: 992px) {
    .qc-grid, .packaging-flex, .contact-grid, .faq-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .packaging-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}
