/* Taviano Premium Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary: #3d2314;       /* Deep chocolate */
    --primary-light: #5a3822; /* Soft chocolate */
    --secondary: #cfa862;     /* Warm gold */
    --secondary-dark: #b8914d;
    --accent: #fcf9f5;        /* Creamy ivory */
    --accent-dark: #f0e6da;   /* Soft warm gray/beige */
    --text-main: #2b1f1d;     /* Dark charcoal brown */
    --text-muted: #6e605d;    /* Muted chocolate brown */
    --white: #ffffff;
    --success: #52796f;
    
    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 12px rgba(61, 35, 20, 0.06);
    --shadow-md: 0 12px 32px rgba(61, 35, 20, 0.1);
    --shadow-lg: 0 24px 48px rgba(61, 35, 20, 0.15);
    
    /* Layout Constants */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--accent);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

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

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

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary);
    color: var(--accent);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-dark .text-muted {
    color: var(--accent-dark);
    opacity: 0.8;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    animation: fadeInUp 1s ease;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(61, 35, 20, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(207, 168, 98, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(207, 168, 98, 0.2);
}

.btn-gold:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 35, 20, 0.3);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
}

header.scrolled .nav-container {
    height: 75px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--secondary-dark);
    transition: var(--transition);
}

header.scrolled .logo-icon {
    fill: var(--secondary-dark);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-dark);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--secondary-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-dark);
}

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

.nav-link.active {
    color: var(--secondary-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-dark);
    margin-bottom: 6px;
    transition: var(--transition);
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

/* Mobile Drawer Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--accent);
    z-index: 1050;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    transition: var(--transition);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.mobile-nav-link.active {
    color: var(--secondary);
}

.mobile-nav-footer {
    border-top: 1px solid var(--accent-dark);
    padding-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(61, 35, 20, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 1;
    transform: scale(1.05);
    animation: fadeIn 2s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 35, 20, 0.9) 30%, rgba(61, 35, 20, 0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
    background-color: rgba(207, 168, 98, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(207, 168, 98, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--secondary);
    font-style: italic;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--accent-dark);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-dec {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(207, 168, 98, 0.3);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
    z-index: 1;
}

.hero-img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-dark);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary);
}

.feature-card:hover::before {
    opacity: 0.15;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
}

.feature-card:hover .feature-icon svg {
    fill: var(--secondary);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
}

/* Product Categories on Home */
.category-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(61, 35, 20, 0.95) 10%, rgba(61, 35, 20, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition);
}

.category-card-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.category-card-desc {
    color: var(--accent-dark);
    font-size: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.category-card:hover .category-card-desc {
    opacity: 0.9;
    max-height: 80px;
    margin-top: 8px;
}

.category-card:hover .category-card-title {
    color: var(--secondary);
}

/* Story/Kitchen Section */
.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.story-images {
    position: relative;
}

.story-img-main {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    width: 85%;
}

.story-img-sub {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    border-radius: var(--border-radius-md);
    border: 8px solid var(--accent);
    box-shadow: var(--shadow-lg);
    animation: float 8s ease-in-out infinite;
}

.story-content h3 {
    font-size: 1.6rem;
    color: var(--secondary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    border-top: 1px solid var(--accent-dark);
    padding-top: 30px;
}

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

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-num span {
    color: var(--secondary);
}

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

/* Products Catalog Page */
.catalog-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--accent-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-dark);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--accent-dark);
    padding-top: 16px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-order-btn {
    background: none;
    border: none;
    color: var(--secondary-dark);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.product-order-btn:hover {
    color: var(--primary);
}

/* Outlets & Export Page */
.outlets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.outlet-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-rows: 240px auto;
}

.outlet-map-mock {
    background-color: #e5e3df;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.outlet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.outlet-details {
    padding: 40px;
}

.outlet-name {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.outlet-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.outlet-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-dark);
    flex-shrink: 0;
    margin-top: 3px;
}

.outlet-info-item p {
    color: var(--text-muted);
}

/* Export Section layout */
.export-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.export-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1;
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.benefit-content p {
    color: var(--text-muted);
}

.export-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.export-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-panel > p {
    color: var(--accent-dark);
    margin-bottom: 40px;
    opacity: 0.8;
}

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

.contact-detail-card {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}

.contact-detail-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-detail-content p, .contact-detail-content a {
    color: var(--accent-dark);
    opacity: 0.8;
}

.contact-detail-content a:hover {
    color: var(--secondary);
    opacity: 1;
}

.contact-form-panel {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--accent-dark);
    background-color: var(--accent);
    border-radius: var(--border-radius-sm);
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-dark);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(207, 168, 98, 0.15);
}

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

/* Alert Notification styles */
.form-response {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    display: none;
}

.form-response.success {
    background-color: rgba(82, 121, 111, 0.15);
    color: var(--success);
    border: 1px solid rgba(82, 121, 111, 0.3);
    display: block;
}

.form-response.error {
    background-color: rgba(186, 45, 33, 0.1);
    color: #ba2d21;
    border: 1px solid rgba(186, 45, 33, 0.2);
    display: block;
}

/* Footer Styles */
footer {
    background-color: var(--primary);
    color: var(--accent);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--accent-dark);
    opacity: 0.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--secondary);
}

.social-btn:hover svg {
    fill: var(--primary);
    transform: scale(1.1);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--accent-dark);
    opacity: 0.8;
}

.footer-links-list a:hover {
    color: var(--secondary);
    opacity: 1;
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    color: var(--accent-dark);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom p {
    color: var(--accent-dark);
    opacity: 0.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .story-grid, .export-showcase-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .nav-menu, .nav-actions .btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrap {
        order: -1;
    }
    
    .category-showcase {
        grid-template-columns: 1fr;
    }
    
    .outlets-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
}
