/* ==========================================
   CSS Variables & Global Reset
========================================== */
:root {
    /* Vibrant Brand Colors */
    --primary: #0F9D58;      /* Google Vibrant Green */
    --primary-light: #12B967; /* Brighter Green Action */
    --primary-dark: #0A7340;  /* Deeper Green */
    
    --secondary: #E8F5E9;    /* Very Soft Mint */
    --accent: #FF6D00;       /* Vibrant Deep Orange */
    --accent-hover: #FF8000;
    
    /* Elegant Neutral Colors */
    --text-main: #1A1F1C;    /* Very Dark Green-Tinted Gray */
    --text-muted: #5F6B64;   
    --bg-main: #F4F7F5;      /* Crisp Off-White */
    --bg-light: #FFFFFF;
    --border-color: #E2E8E4;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing & Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --section-pad: 80px 0;
    --container-width: 1200px;
    
    /* Enhanced Shadows & Transitions */
    --shadow-sm: 0 4px 12px rgba(15, 157, 88, 0.05);
    --shadow-md: 0 12px 24px rgba(15, 157, 88, 0.08);
    --shadow-lg: 0 24px 48px rgba(15, 157, 88, 0.12);
    --shadow-hover: 0 30px 60px rgba(15, 157, 88, 0.2);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Typography & Utilities
========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

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

.section-padding {
    padding: var(--section-pad);
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary);
}

/* ==========================================
   Buttons
========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: #FFF;
    border: none;
    box-shadow: 0 8px 16px rgba(15, 157, 88, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 157, 88, 0.35);
}

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

.btn-secondary:hover {
    background-color: #E2DFD6;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: #FFF;
}

/* ==========================================
   Header & Navigation
========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
}

.logo-text h1 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-main);
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

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

.hero-bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: 0;
    filter: blur(100px);
    opacity: 0.15;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 109, 0, 0.1);
    color: var(--accent);
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 109, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.stat-text strong {
    display: block;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.stat-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: #FFF;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-main);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.top-right {
    top: 40px;
    right: -30px;
    animation-delay: 0s;
}

.bottom-left {
    bottom: 60px;
    left: -40px;
    animation-delay: 2s;
}

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

/* ==========================================
   About Section
========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

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

.overlap-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-main);
}

.experience-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background-color: var(--primary);
    color: #FFF;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
    text-align: center;
    border: 6px solid var(--bg-main);
}

.experience-badge .years {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-list {
    margin: 32px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* ==========================================
   Products Section
========================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFF;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.product-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: #FFF;
    border-radius: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(15, 157, 88, 0.2);
}

.product-card:hover .card-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(15, 157, 88, 0.3);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   Why Choose Us Section
========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotate(0) scale(1.1);
    background: var(--gradient-primary);
    color: #FFF;
    box-shadow: 0 10px 20px rgba(15, 157, 88, 0.25);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

/* ==========================================
   Shopping Experience Section
========================================== */
.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exp-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.exp-point {
    display: flex;
    gap: 20px;
    background: #FFF;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.exp-point:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.exp-point h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.exp-point p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.experience-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: var(--transition);
}

.experience-image:hover img {
    transform: scale(1.05);
}

.overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 157, 88, 0.95), transparent);
    padding: 40px;
    color: #FFF;
}

.overlay-box h3 {
    color: #FFF;
    font-size: 1.8rem;
    margin: 0;
}

/* ==========================================
   Gallery Section
========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
    background-color: var(--bg-main);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 157, 88, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.gallery-overlay i {
    color: #FFF;
    font-size: 2.5rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(15, 157, 88, 0.4);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

.video-item::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 109, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 109, 0, 0); }
}

/* ==========================================
   Location & Contact Section
========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.contact-info {
    padding: 60px 40px;
    background-color: var(--primary);
    color: #FFF;
}

.contact-info h2 {
    color: #FFF;
}

.contact-info .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card .icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h3 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 4px;
}

.card-content a {
    color: #FFF;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.card-content a:hover {
    text-decoration-color: #FFF;
}

.sub-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-cta {
    margin-top: 40px;
}

.contact-cta .btn {
    background: #FFF;
    color: var(--primary-dark);
    width: 100%;
}

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

/* ==========================================
   Footer
========================================== */
.footer {
    background-color: #1a1a1a;
    color: #FFF;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: #FFF;
    margin-bottom: 24px;
}

.footer-logo h2 {
    color: #FFF;
}

.footer-logo .logo-text span {
    color: rgba(200, 200, 200, 0.8);
}

.footer-desc {
    color: #b3b3b3;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

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

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #FFF;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #b3b3b3;
    font-size: 0.95rem;
}

.links-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #b3b3b3;
    font-size: 0.95rem;
}

.contact-list li i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    background-color: #111;
    padding: 24px 0;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.trust-statement {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-statement::before {
    content: '❤';
    color: var(--primary);
}

/* ==========================================
   Responsive Design (Mobile First Focus)
========================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .hero-container,
    .about-container,
    .experience-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        margin-bottom: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        transform: scale(0.85);
    }
    .top-right { right: 0; }
    .bottom-left { left: 0; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFF;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        padding: 0;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding: 20px 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 15px 24px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a:hover::after {
        display: none;
    }
    
    .nav-links .btn {
        margin: 20px 24px 0;
        width: calc(100% - 48px);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
