/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
    /* Brand Colors */
    --color-gold: #D4AF37;
    --color-gold-light: #E8C96F;
    --color-gold-dark: #B8942F;
    --color-cream: #FFF8E7;
    --color-cream-dark: #F5E6D3;
    --color-saffron: #FF9933;
    --color-brown: #5D4037;
    --color-brown-light: #8D6E63;
    --color-brown-dark: #3E2723;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray: #666666;
    --color-gray-light: #F5F5F5;

    /* Typography */
    --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-xxl: 120px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* ========================================
   Typography
   ======================================== */

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-brown-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Layout Utilities
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   Floating Contact Button
   ======================================== */

.floating-contact {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
}

/* ========================================
   Navigation Bar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    padding: 8px 0;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--color-brown-dark);
}

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

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

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

.navbar.scrolled .nav-link:hover {
    color: var(--color-gold-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar.scrolled .hamburger {
    background: var(--color-brown-dark);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(93, 64, 55, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-lg) 0;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-item {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .nav-link {
        color: var(--color-white);
        display: block;
        padding: var(--spacing-sm) 0;
    }

    .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 39, 35, 0.85), rgba(93, 64, 55, 0.75));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding: 0 var(--spacing-md);
    max-width: 1000px;
    width: 100%;
}

.logo-container {
    margin-bottom: var(--spacing-lg);
}

.brand-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    color: var(--color-gold-light);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
}

.hero-statement {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-cream-dark);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-gold-light);
    color: var(--color-brown-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Scroll Indicator
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-cream-dark);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

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

    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}

/* ========================================
   Brand Story Section
   ======================================== */

.brand-story {
    padding: var(--spacing-xxl) 0;
    background: var(--color-cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-content {
    padding-right: var(--spacing-lg);
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-brown);
}

.story-text p {
    margin-bottom: var(--spacing-md);
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-visual {
    position: relative;
}

.story-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-saffron));
    border-radius: 2px;
    overflow: hidden;
}

.story-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.decorative-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 2;
}

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

.products {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-cream) 50%, var(--color-white) 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
}

/* Product Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-cream-light, #fffbf2), #fff);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

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

.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.indicator-dot[data-color="yellow"] {
    background-color: #FFD700;
}

.indicator-dot[data-color="blue"] {
    background-color: #42A1BE;
}

.indicator-dot.active {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-color: var(--color-gold);
}

/* Product Info & Table */
.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.sku-table-container {
    margin-top: auto;
    background: var(--color-gray-light);
    border-radius: 10px;
    overflow: hidden;
}

.sku-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.sku-table th,
.sku-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sku-table th {
    background-color: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.sku-table tr:last-child td {
    border-bottom: none;
}

.sku-table td {
    color: var(--color-brown);
}

.sku-table tr:nth-child(even) {
    background-color: rgba(212, 175, 55, 0.05);
}

/* Blue variant table styling */
.sku-table.blue-variant th {
    background-color: #42A1BE;
    transition: background-color 0.4s ease;
}

/* ========================================
   Brochure Download Section
   ======================================== */

.brochure-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown) 100%);
    position: relative;
    overflow: hidden;
}

.brochure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.brochure-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.brochure-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

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

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

.brochure-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-serif);
}

.brochure-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-cream-dark);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-brochure::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-brochure:hover::before {
    width: 300px;
    height: 300px;
}

.btn-brochure:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-brochure svg {
    position: relative;
    z-index: 1;
    animation: downloadBounce 2s ease-in-out infinite;
}

@keyframes downloadBounce {

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .brochure-icon {
        width: 100px;
        height: 100px;
    }

    .brochure-icon svg {
        width: 60px;
        height: 60px;
    }

    .btn-brochure {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border-radius: 50%;
    color: var(--color-white);
}

.benefit-title {
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: var(--spacing-sm);
}

.benefit-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-brown);
}

/* ========================================
   Why Us Section
   ======================================== */

.why-us {
    padding: var(--spacing-xxl) 0;
    background: var(--color-brown-dark);
    color: var(--color-white);
}

.why-us .section-label {
    color: var(--color-gold-light);
}

.why-us .section-title {
    color: var(--color-cream);
}

.features-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.feature-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--color-gold-light);
    margin-bottom: var(--spacing-sm);
    opacity: 0.6;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: var(--spacing-sm);
}

.feature-desc {
    font-size: 1rem;
    color: var(--color-cream-dark);
    line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(93, 64, 55, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-serif);
}

.contact-link {
    display: inline-block;
    font-size: 1rem;
    color: var(--color-brown);
    text-decoration: none;
    transition: var(--transition-fast);
    word-break: break-word;
}

.contact-link:hover {
    color: var(--color-gold-dark);
}

.contact-address {
    font-size: 1rem;
    color: var(--color-brown);
    line-height: 1.8;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}


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

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: var(--color-brown-dark);
    color: var(--color-cream);
}

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

.footer-brand {
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--color-cream-dark);
    font-style: italic;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-cream-dark);
}

/* ========================================
   Animations
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

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

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
}

.reveal-up.visible {
    animation: revealUp 0.8s ease forwards;
}

.reveal-left.visible {
    animation: revealLeft 0.8s ease forwards;
}

.reveal-right.visible {
    animation: revealRight 0.8s ease forwards;
}

.reveal-scale.visible {
    animation: revealScale 0.8s ease forwards;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 1024px) {

    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .story-content,
    .contact-info {
        padding-right: 0;
    }

    .features-horizontal {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--spacing-lg);
    }

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

    .product-image {
        height: 240px;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 60px;
        --spacing-xxl: 80px;
        --spacing-lg: 32px;
        --spacing-md: 20px;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .brand-logo {
        max-width: 180px;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 32px;
        font-size: 0.9375rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }

    .product-card {
        padding: var(--spacing-sm);
    }

    .product-image {
        height: 200px;
        padding: var(--spacing-sm);
    }

    .product-name {
        font-size: 1.125rem;
    }

    .product-size {
        font-size: 1rem;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .features-horizontal {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-card {
        padding: var(--spacing-md);
    }

    .product-image {
        height: 260px;
    }

    .product-name {
        font-size: 1.25rem;
    }

    .product-size {
        font-size: 1.0625rem;
    }

    .story-text {
        font-size: 0.9375rem;
    }

    .brand-logo {
        max-width: 160px;
    }

    .hero-statement br {
        display: none;
    }

    .floating-contact {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 360px) {
    .product-image {
        height: 220px;
    }

    .products-grid {
        gap: var(--spacing-sm);
    }

    .nav-logo {
        height: 40px;
    }

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

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

@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 450px;
    }

    .brand-logo {
        max-width: 140px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-statement {
        font-size: clamp(0.875rem, 2vw, 1rem);
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {

    .floating-contact,
    .scroll-indicator,
    .hero-cta {
        display: none;
    }
}