/* Keenfruits Global Fruit Export Design System */

:root {
    /* Color System */
    --bg-primary: #ffffff;
    --bg-secondary: #f4fbf6;
    --bg-card: #ffffff;
    
    --bg-dark: #071c10;
    --bg-dark-card: #0f2f1d;
    --bg-dark-secondary: #0a2415;
    
    --text-main: #112419;
    --text-muted: #5d7867;
    --text-light: #e5f5eb;
    
    --accent-gold: #d49b27;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    --accent-red: #ef4444;
    
    --border-light: rgba(16, 185, 129, 0.12);
    --border-dark: rgba(212, 155, 39, 0.2);
    
    --shadow-sm: 0 4px 12px rgba(7, 28, 16, 0.04);
    --shadow-md: 0 12px 30px rgba(7, 28, 16, 0.08);
    --shadow-lg: 0 20px 50px rgba(7, 28, 16, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark mode overrides */
body.dark-mode {
    --bg-primary: #05140b;
    --bg-secondary: #081d11;
    --bg-card: #0c2717;
    --text-main: #f0faf4;
    --text-muted: #82a591;
    --border-light: rgba(255, 255, 255, 0.08);
}

/* Dual Language Visibility Rules */
html.lang-en .lang-zh {
    display: none !important;
}

html:not(.lang-en) .lang-en {
    display: none !important;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Header & Glass Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-glass {
    background: rgba(7, 28, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 155, 39, 0.15);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #d49b27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.logo-k {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.brand-title .dot {
    color: var(--accent-gold);
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--accent-gold);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
    color: #071c10 !important;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(212, 155, 39, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 155, 39, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    transition: var(--transition);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
}

.lang-opt {
    color: rgba(255, 255, 255, 0.5);
}

.lang-opt.active {
    color: var(--accent-gold);
}

.lang-slash {
    color: rgba(255, 255, 255, 0.3);
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 24px;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 28, 16, 0.92) 0%, rgba(7, 28, 16, 0.75) 60%, rgba(7, 28, 16, 0.88) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(120deg, #f59e0b 0%, var(--accent-gold) 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    margin: 0 auto 30px auto;
    font-weight: 300;
}

.hero-seasonal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: #ffedd5;
    margin-bottom: 40px;
}

.badge-fire {
    color: var(--accent-orange);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b47f15 100%);
    color: #071c10;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(212, 155, 39, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 155, 39, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: #ffffff;
    color: #071c10;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Common Section Layout */
.section-padding {
    padding: 100px 0;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.align-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge-gold, .section-badge-orange, .section-badge-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge-gold {
    background: rgba(212, 155, 39, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 155, 39, 0.3);
}

.section-badge-orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.section-badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.section-title {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.bg-dark-eco {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.bg-dark-eco .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.bg-light-eco {
    background-color: var(--bg-secondary);
}

/* Flagship Product Showcase Tabs */
.product-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.tab-title-en {
    font-size: 0.95rem;
}

.tab-title-cn {
    font-size: 0.75rem;
    opacity: 0.7;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b47f15 100%);
    color: #071c10;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(212, 155, 39, 0.3);
}

.tab-btn:hover .tab-title-cn, .tab-btn.active .tab-title-cn {
    opacity: 0.9;
}

.product-panels-container {
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.product-panel {
    display: none;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    padding: 60px;
    align-items: center;
}

.product-panel.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-visual {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-md);
}

.panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.panel-visual:hover .panel-img {
    transform: scale(1.05);
}

.panel-badge-green {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.product-sku-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}

.panel-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.panel-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.spec-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: var(--radius-sm);

}

.spec-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.spec-label i {
    color: var(--accent-gold);
}

.spec-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.highlight-gold {
    color: var(--accent-gold);
}

.btn-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: #25d366; /* WhatsApp Green */
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-panel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Seasonal Spotlight Card */
.seasonal-hero-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    margin-bottom: 50px;
}

.seasonal-hero-visual {
    position: relative;
    aspect-ratio: 4 / 3;
}

.seasonal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seasonal-tag-hot {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(249, 115, 22, 0.95);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.seasonal-hero-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.origin-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 12px;

}

.seasonal-hero-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.seasonal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.seasonal-mini-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-secondary);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.btn-seasonal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-seasonal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
}

/* Upcoming Fruits Grid */
.upcoming-fruits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.upcoming-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.upcoming-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.upcoming-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.upcoming-icon {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.upcoming-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.upcoming-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.upcoming-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    cursor: pointer;
}

/* Calendar Table */
.calendar-table-responsive {
    overflow-x: auto;
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    padding: 20px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.calendar-table th, .calendar-table td {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-table th {
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.03);
}

.calendar-table td.active {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.highlight-row {
    background: rgba(212, 155, 39, 0.05);
}

.seasonal-row {
    background: rgba(249, 115, 22, 0.05);
}

/* Logistics Grid */
.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.logistics-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logistics-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.log-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.logistics-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.logistics-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* B2B Inquiry Section */
.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.inquiry-left h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.inquiry-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.direct-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(212, 155, 39, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-info h4 {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.c-info p {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
}

.c-info a:hover {
    color: var(--accent-gold);
}

.inquiry-form-card {
    background: var(--bg-dark-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-lg);
}

.inquiry-form-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

option {
    background: #0f2f1d;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b47f15 100%);
    color: #071c10;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 155, 39, 0.3);
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 155, 39, 0.5);
}

.form-success-msg {
    display: none;
    text-align: center;
    padding: 30px 20px;
    color: var(--accent-green);
}

.form-success-msg.active {
    display: block;
}

.form-success-msg i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success-msg h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Footer */
.footer-section {
    background: #041009;
    color: #a8c2b3;
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--accent-gold);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;

}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.domain-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.domain-badges span {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(212, 155, 39, 0.15);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.contact-line {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent-gold);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-panel {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .seasonal-hero-card {
        grid-template-columns: 1fr;
    }
    
    .inquiry-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-divider {
        width: 80%;
        height: 1px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}
