/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2F9E44;
    /* Vivid Green */
    --secondary-green: #5c9e36;
    /* Lighter Green */
    --cta-red: #D32F2F;
    /* Rich Red */
    --white: #ffffff;
    --text-brown: #5D4037;
    /* Dark Brown */
    --mango-orange: #FFB74D;
    --background-color: #FDFBF7;
    /* Creamy White */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-brown);
    background-color: var(--background-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;

    /* Wood texture from Unsplash for realistic look */
    background-color: #f4e4bc;
    background-image: url('https://images.unsplash.com/photo-1579762593175-202260549619?ixlib=rb-4.0.3&auto=format&fit=crop&w=2670&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
}

.logo-stack {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--text-brown);
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--cta-red);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-brown);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cta-red);
}

.nav-right {
    display: flex;
    align-items: center;
}

.btn-register {
    background-color: var(--cta-red);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-register:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-brown);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-title-top {
    font-family: 'Kaushan Script', cursive;
    /* Script font for top */
    font-size: 3.5rem;
    color: var(--white);
    /* White color */
    margin-bottom: 0rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-title-main {
    font-family: 'Kaushan Script', cursive;
    /* Script font for main too */
    font-size: 3.5rem;
    /* Reduced size */
    font-weight: 700;
    color: var(--mango-orange);
    /* Gold/Orange color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    margin-bottom: 2rem;
    white-space: nowrap;
    /* Force one line */
    position: relative;
    display: inline-block;
}

/* Decorative line */
.hero-title-main::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 10px auto 0;
    border-radius: 50%;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(to bottom, #f57c00, #e65100);
    /* Orange */
    color: var(--white);
    border: 1px solid #ff9800;
}

.hero-buttons .btn-secondary {
    background: linear-gradient(to bottom, #43a047, #2e7d32);
    /* Green */
    color: var(--white);
    border: 1px solid #4caf50;
    backdrop-filter: none;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-color));
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Hero Social Icons */
.hero-socials {
    position: absolute;
    top: 100px;
    /* Adjust based on navbar height */
    right: 5%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Subtle heavy border for glass effect */
    backdrop-filter: blur(5px);
}

.hero-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

/* Specific Brand Colors */
.hero-social-icon.tiktok {
    background: #000000;
}

.hero-social-icon.youtube {
    background: #FF0000;
}

.hero-social-icon.instagram {
    background: #E1306C;
}

.hero-social-icon.facebook {
    background: #1877F2;
}

/* Responsive Adjustments for Socials */
@media (max-width: 768px) {
    .hero-socials {
        top: auto;
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        gap: 10px;
    }
}

/* About Us */
.about-us {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--background-color);
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    /* Responsive wrapping */
}

/* Text Card Styling */
/* Text Card Styling - Modern Redesign */
/* Text Card Styling - Modern Redesign */
.about-card {
    background: transparent;
    /* Removed white background */
    padding: 3rem;
    box-shadow: none;
    /* Removed shadow */
    flex: 1;
    min-width: 300px;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Brush Stroke Highlight (Green) */
.about-card h2 {
    color: var(--cta-red);
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    /* Larger for impact */
    font-weight: 700;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Stroke 1: Behind Title */
.about-card h2::after {
    content: '';
    position: absolute;
    left: -30px;
    bottom: 5px;
    width: calc(100% + 60px);
    height: 60%;
    background-color: #A2D149;
    /* Fresh Banana Leaf Green */
    z-index: -1;
    transform: rotate(-2deg) skewX(-15deg);
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    opacity: 0.6;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Stroke 2: Behind Paragraph (Covering full content area) */
/* Stroke 2: Behind Paragraph (Removed as requested) */
.about-card::before {
    display: none;
}

/* Stroke 3: Additional Accent Line */
/* Stroke 3: Additional Accent Line (Removed as requested) */
.about-card::after {
    display: none;
}

.about-card p {
    color: var(--text-brown);
    font-size: 1.4rem;
    /* Larger for readability */
    line-height: 1.8;
    font-weight: 600;
    /* Bold for hand-written feel */
    max-width: 90%;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    /* Changed font style as requested */
    font-style: italic;
    /* Classy touch */
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Map Styling & Animation (REVERTED) */
.about-map {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Reverted to center/space-between balance */
    min-width: 300px;
    perspective: 1000px;
}

.floating-map {
    width: 100%;
    max-width: 600px;
    /* User liked larger size */
    height: auto;
    /* 3D Transform to angle it */
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg) translateX(50px);
    /* Strong shadow for depth */
    filter: drop-shadow(-20px 20px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
    animation: floatMap3D 6s ease-in-out infinite;
    margin-right: -50px;
}

@keyframes floatMap3D {

    0%,
    100% {
        transform: translateY(0) rotateY(-15deg) rotateX(10deg) translateX(50px);
    }

    50% {
        transform: translateY(-20px) rotateY(-10deg) rotateX(5deg) translateX(50px);
    }
}

.about-map:hover .floating-map {
    animation-play-state: paused;
    transform: rotateY(0) rotateX(0) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    margin-right: 0;
}

/* Products */
.section {
    padding: 4rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-brown);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    display: block;
    /* Ensure anchor tag behaves like a block */
    text-decoration: none;
    /* Remove underline */
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    height: 400px;
    /* Taller card for modern look */
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.product-card:hover .card-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    /* More spacing */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    /* Gradient overlay */
    color: var(--white);
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.product-card:hover .card-content {
    transform: translateY(0);
}

.product-card h3 {
    margin: 0 0 0.5rem;
    color: var(--white);
    /* White text on dark overlay */
    padding: 0;
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Kaushan Script', cursive;
    transform: rotate(-2deg);
}

.product-card p {
    margin-bottom: 0;
    color: #ffd700;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

/* Special Product Styling */
.special-product-card {
    grid-column: 1 / -1;
    /* Spans full width of the grid */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fffbe6, #fff);
    /* Light gold tint */
    border: 2px solid #FFD700;
    /* Gold Border */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.special-product-card:hover {
    transform: scale(1.02);
}

.special-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.special-image {
    flex: 1;
    height: 350px;
    /* Increased height */
    background-size: contain;
    /* Show full image */
    background-repeat: no-repeat;
    background-position: center;
    /* clip-path removed */
}

.special-content {
    flex: 1;
    padding: 2rem;
    text-align: left;
}

.special-content h3 {
    font-family: 'Kaushan Script', cursive;
    font-size: 3.5rem;
    /* Larger for script */
    font-weight: 700;
    text-transform: none;
    /* Script looks better mixed/normal case */
    letter-spacing: normal;
    color: var(--text-brown);
    margin-bottom: 1rem;
    transform: rotate(-3deg);
    /* Slight tilt for consistency */
}

.special-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.btn-special {
    display: inline-block;
    padding: 10px 30px;
    background: var(--mango-orange);
    color: white;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-special:hover {
    background: #e65100;
}

@media (max-width: 768px) {
    .special-product-card {
        flex-direction: column;
    }

    .special-image {
        width: 100%;
        height: 250px;
        clip-path: none;
    }

    .special-content {
        text-align: center;
    }
}

/* Footer */
/* Footer */
.footer {
    background: linear-gradient(to right, #1a4d1a, #2e7d32);
    /* Deep Green Gradient */
    color: var(--white);
    padding: 3rem 5%;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--mango-orange);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col ul li i {
    color: var(--mango-orange);
    width: 20px;
}

/* Social Column - Right Aligned */
.footer-col.social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    justify-content: flex-end;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Colors for specific brands (Always Colored) */
.social-icon.tiktok {
    background: #000000;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.instagram {
    background: #E1306C;
}

.social-icon.facebook {
    background: #1877F2;
}

/* Footer Links */
.footer-links {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--mango-orange);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-col.social-col {
        align-items: center;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: var(--transition);
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
}

/* --- Showcase Section Styling (Seller & Item Code) --- */

/* --- Showcase Section Styling (Seller & Item Code) --- */

.seller-system,
.item-code-system {
    padding: 3rem 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
}

/* Turn the containers into Centered Showcase Cards */
.seller-system .container,
.item-code-system .container {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    /* Constrain width for showcase look */
    width: 90%;
    margin: 0 auto;
    /* Center the card */
    text-align: center;
    /* Center the content */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
}

.seller-system .container {
    border-top: 6px solid var(--mango-orange);
    /* Top accent */
}

.item-code-system .container {
    border-top: 6px solid var(--cta-red);
    /* Top accent */
}

.seller-system .container:hover,
.item-code-system .container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Feature Icon Background (Decorative - Adjusted for Center) */
.seller-system .container::after {
    content: '\f290';
    /* FontAwesome Shopping Bag */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-size: 12rem;
    color: var(--mango-orange);
    opacity: 0.05;
    /* Very subtle */
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
}

.item-code-system .container::after {
    content: '\f02a';
    /* FontAwesome Barcode */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -10px;
    /* Switch sides for variety */
    bottom: -30px;
    font-size: 12rem;
    color: var(--cta-red);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

/* Typography Updates */
.seller-system h2,
.item-code-system h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    /* Larger title */
    margin-bottom: 1.5rem;
    color: var(--text-brown);
    position: relative;
    z-index: 1;
}

.seller-system p,
.item-code-system p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    /* Center paragraph */
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Button & Code Styling */
.seller-system .btn {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--mango-orange), #ff9800);
    color: white;
    padding: 15px 40px;
    /* Larger button */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.item-code-system .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}



.item-code-system .btn-item-lists {
    background: rgba(75, 0, 130, 0.08);
    /* Subtle Purple Tint */
    color: #4b0082;
    /* Deep Indigo */
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid rgba(75, 0, 130, 0.1);
    margin-left: 15px;
    border-radius: 50px;
    /* Modern Pill Shape */
    letter-spacing: 0.5px;
}

.item-code-system .btn-item-lists i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.item-code-system .btn-item-lists:hover {
    transform: translateY(-3px);
    background: #4b0082;
    /* Solid Purple on Hover */
    color: white;
    box-shadow: 0 8px 20px rgba(75, 0, 130, 0.25);
    border-color: #4b0082;
}

.item-code-system .btn-item-lists:hover i {
    transform: rotate(10deg);
    /* Playful icon tilt */
}



.seller-system .btn:hover {
    transform: translateY(-3px);
}

.item-code-section .sample-code {
    background: var(--text-brown);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    color: var(--white);
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(62, 39, 35, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
        margin-left: 20px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-title-top {
        font-size: 2rem;
    }

    .hero-title-main {
        font-size: 3rem;
        white-space: normal;
        /* Allow wrap on mobile */
    }

    .about-container {
        flex-direction: column;
    }

    .about-map {
        justify-content: center;
    }

    /* Revert positioning on mobile */
    .floating-map {
        max-width: 250px;
        margin-right: 0;
        transform: none;
        filter: none;
        animation: none;

    }
}

/* --- Modern Contact Section --- */
/* --- Modern Contact Section --- */
.contact {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background blur blobs */
.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8D6E63;
    /* Earthy muted brown */
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #f3f4f6;
    /* Light gray fill */
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--secondary-color);
    /* Green border on focus */
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}


.contact-form .btn-primary {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    /* WhatsApp Gradient */
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    /* Glowing Green Shadow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect */
.contact-form .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.contact-form .btn-primary:hover::after {
    left: 100%;
}

.contact-form .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

.contact-form .btn-primary i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover i {
    transform: rotate(-15deg) scale(1.2);
}

/* --- Overseas Shipping Section --- */
.overseas {
    padding: 2rem 5%;
    background-color: #f7f3e8;
    /* Light warm background */
    background-image: url('https://images.unsplash.com/photo-1579762593175-202260549619?ixlib=rb-4.0.3&auto=format&fit=crop&w=2670&q=80');
    /* Matching Wood Texture */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    /* Light overlay to ensure text readability */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

.overseas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Whitewash effect for lighter look */
    z-index: 0;
}

.overseas-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    background: transparent !important;
    /* Override default container bg */
    box-shadow: none !important;
    /* Override default container shadow */
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem !important;
}

.overseas-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 450px;
}

.overseas-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.overseas-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.overseas-content-text {
    flex: 1;
    text-align: left;
}

.overseas-content-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #2e7d32;
    /* Deep Green */
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.separator-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    /* Gold fade */
    margin: 10px 0 15px 0;
}

.overseas-content-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.btn-shipping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #689F38, #33691E);
    /* 3D Green Button */
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(51, 105, 30, 0.4);
    border: 1px solid #558b2f;
    transition: all 0.3s ease;
}

.btn-shipping:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(51, 105, 30, 0.6);
    background: linear-gradient(to bottom, #7cb342, #558b2f);
}

.btn-shipping i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-shipping:hover i {
    transform: translateX(5px);
}

/* Response for Mobile */
@media (max-width: 768px) {
    .overseas-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .overseas-content-text {
        text-align: center;
    }

    .overseas-content-text h2 {
        font-size: 2.5rem;
    }

    .separator-line {
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
        margin: 10px auto 15px auto;
        width: 80%;
    }
}

/* --- Sub-Page Styles --- */

/* Sub-Hero Section */
.sub-hero {
    position: relative;
    height: 40vh;
    /* Shorter than main hero */
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 60px;
    /* Offset for fixed navbar */
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Slightly lighter overlay */
    backdrop-filter: blur(8px);
    /* Blurs the background image */
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

.btn-back {
    position: absolute;
    top: 110px;
    left: 5%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .btn-back {
        top: 90px;
        left: 20px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

.sub-hero h1 {
    position: relative;
    z-index: 1;
    font-family: 'Kaushan Script', cursive;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Item Grid for Sub-Pages */
.sub-page-products {
    padding: 4rem 5%;
}

.item-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.item-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    /* Placeholder bg */
}

.item-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-brown);
}

.item-price {
    font-size: 1.2rem;
    color: var(--cta-red);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.item-code {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.2rem;
    font-family: monospace;
    letter-spacing: 1px;
}

.btn-item {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-item:hover {
    background-color: #128C7E;
}

.btn-item i {
    margin-right: 8px;
}