/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-green: #47A347;       /* Logo Green */
    --primary-green-dark: #2F7C2F;  /* Deep Brand Green */
    --primary-green-light: #F0F7F0; /* Soft Green Background */
    --accent-mango: #FF9F0A;        /* Golden Mango skin */
    --accent-mango-dark: #E08700;   /* Deep Gold Accent */
    --accent-mango-light: #FFF6E6;  /* Soft Gold Tint */
    --bg-cream: #FCFBF8;            /* Warm Premium Off-White */
    
    /* Neutral Colors */
    --text-dark: #1A2E20;           /* Luxury Forest Charcoal */
    --text-muted: #566E5D;          /* Softened Green-Gray */
    --white: #FFFFFF;
    --border-color: rgba(71, 163, 71, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(26, 46, 32, 0.05), 0 2px 4px -1px rgba(26, 46, 32, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(26, 46, 32, 0.08), 0 4px 6px -2px rgba(26, 46, 32, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(26, 46, 32, 0.1), 0 10px 10px -5px rgba(26, 46, 32, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(47, 124, 47, 0.15);
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ==========================================================================
   COMMON LAYOUTS & COMPONENT CLASSES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-mango);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 159, 10, 0.35);
}

.btn-primary:hover {
    background-color: var(--accent-mango-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 10, 0.45);
}

.btn-secondary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(71, 163, 71, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 163, 71, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-mango);
    margin: 20px 0;
    border-radius: var(--radius-full);
}

.divider.center {
    margin: 20px auto;
}

.section-tag {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

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

/* Icons */
.icon-whatsapp {
    width: 20px;
    height: 20px;
}

.icon-phone {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   LOGO SYSTEM
   ========================================================================== */
.nav-logo {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.about-watermark-logo {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.9;
}

.footer-logo {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Converts the green logo to a clean premium white silhouette on dark background */
    margin-bottom: 20px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(252, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-green);
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle .bar {
    width: 26px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(240, 247, 240, 0.7) 0%, rgba(252, 251, 248, 1) 90%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-mango-light) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    border: 1px solid rgba(71, 163, 71, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-premium);
    background-color: var(--white);
    padding: 12px;
}

.hero-img {
    border-radius: calc(var(--radius-lg) - 6px);
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary-green);
    animation: floatingBadge 4s ease-in-out infinite;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Shape Divider styling */
.custom-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider .shape-fill {
    fill: var(--bg-cream);
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    height: 480px;
}

.grid-img {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.grid-img.img-1 {
    grid-column: 1 / span 8;
    top: 0;
    width: 100%;
    height: 380px;
    z-index: 2;
}

.grid-img.img-2 {
    grid-column: 5 / span 8;
    bottom: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    border: 8px solid var(--white);
}

.about-logo-watermark {
    position: absolute;
    bottom: -30px;
    left: -20px;
    z-index: 3;
    opacity: 0.9;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-content {
    padding-left: 20px;
}

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

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.8rem;
    background-color: var(--primary-green-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   MANGO VARIETIES SECTION
   ========================================================================== */
.varieties-section {
    padding: 100px 0;
    background-color: var(--primary-green-light);
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.varieties-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.variety-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(71, 163, 71, 0.08);
}

.variety-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(71, 163, 71, 0.2);
}

.variety-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.variety-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(26, 46, 32, 0.75);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.variety-info {
    padding: 24px;
}

.variety-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.variety-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* ==========================================================================
   PRODUCT BOXES SECTION
   ========================================================================== */
.products-section {
    padding: 120px 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.product-card.featured {
    border: 3px solid var(--accent-mango);
    position: relative;
    transform: scale(1.03);
}

.product-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.product-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.product-tag.popular {
    background-color: var(--accent-mango);
    box-shadow: 0 4px 10px rgba(255, 159, 10, 0.4);
}

.product-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
}

.price-unit {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 4px;
}

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

.product-delivery {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 12px;
    background-color: var(--primary-green-light);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
    padding: 100px 0;
    background: radial-gradient(circle at 90% 10%, rgba(240, 247, 240, 0.6) 0%, rgba(252, 251, 248, 1) 80%);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.why-us-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon-wrapper {
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.why-icon {
    width: 24px;
    height: 24px;
}

.why-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.why-us-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    max-width: 100%;
}

.decor-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--accent-mango-light);
    border-radius: var(--radius-full);
    top: -30px;
    right: -30px;
    z-index: 1;
    filter: blur(20px);
}

/* ==========================================================================
   CALL TO ACTION SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-green);
    color: var(--white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-whatsapp {
    background-color: var(--accent-mango);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 159, 10, 0.3);
}

.cta-whatsapp:hover {
    background-color: var(--accent-mango-dark);
    box-shadow: 0 15px 30px rgba(255, 159, 10, 0.5);
}

.cta-phone {
    border-color: var(--white);
    color: var(--white);
}

.cta-phone:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #0F1C13; /* Very dark rich forest shade */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent-mango);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
}

.footer-contact {
    text-align: right;
    max-width: 400px;
}

.footer-label {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-phone {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-mango);
    transition: var(--transition-fast);
}

.footer-phone:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 0 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING & STICKY WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Color */
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes floatingBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll reveal initial states */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left.revealed, .reveal-right.revealed, .reveal-up.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

/* Laptop / Small Desktop */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .about-container, .why-us-container {
        gap: 40px;
    }
    .products-container {
        gap: 24px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .site-header {
        padding: 15px 0;
        background-color: var(--bg-cream);
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-cream);
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .main-nav.open {
        max-height: 350px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    
    .nav-cta {
        display: none; /* Hide nav CTA on tablet/mobile since floating button is always there */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-img {
        max-width: 400px;
        aspect-ratio: 16/10;
        object-fit: cover;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .product-card.featured {
        transform: scale(1);
    }
    
    .product-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
    }
    
    .why-us-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-image-grid {
        height: 380px;
    }
    
    .grid-img.img-1 {
        height: 280px;
    }
    
    .grid-img.img-2 {
        height: 220px;
        border: 4px solid var(--white);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-phone {
        font-size: 1.5rem;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}
