* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
header {
    background: #fff;
    border-bottom: 2px solid #2d5016;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
}

.logo-image::before {
    content: '🦐';
    font-size: 28px;
    position: absolute;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 18px;
    font-weight: bold;
    color: #2d5016;
    line-height: 1.2;
}

.logo-text-sub {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-btn {
    background: none;
    border: 2px solid #2d5016;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    color: #2d5016;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-btn:hover {
    background: #2d5016;
    color: #fff;
}

/* Navigation */
.nav-menu {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease-out;
}

.nav-menu.active {
    max-height: 300px;
    border-top: 1px solid #e0e0e0;
    padding: 16px;
}

.nav-menu a {
    display: block;
    padding: 14px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: padding-left 0.2s;
}

.nav-menu a:hover {
    padding-left: 10px;
    color: #2d5016;
}

/* Hero Section with Floating Elements */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: #fff;
    padding: 48px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating decorative elements */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 17px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.hero-contact {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.btn-primary {
    background: #ffd700;
    color: #2d5016;
}

.btn-primary:hover {
    background: #ffed4e;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    min-width: 200px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Floating product images */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    animation: floatAround 10s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(10px, 10px) rotate(3deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 40px 0 28px;
}

.section-header h2 {
    font-size: 28px;
    color: #2d5016;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 15px;
    margin-top: 12px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 28px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.category-tab {
    padding: 12px 24px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.category-tab:hover {
    border-color: #4a7c2c;
    color: #4a7c2c;
}

.category-tab.active {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: #fff;
    border-color: #2d5016;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.product-content {
    padding: 20px;
}

.product-category {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2d5016;
    font-size: 11px;
    font-weight: 700;
    border-radius: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.product-benefit {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.product-benefits {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.product-benefits.active {
    max-height: 500px;
    margin: 12px 0;
}

.product-benefits ul {
    list-style: none;
    padding: 0;
}

.product-benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.product-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c2c;
    font-weight: bold;
    font-size: 16px;
}

.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.product-details.active {
    max-height: 500px;
    margin: 12px 0;
    padding: 16px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 12px;
    font-size: 14px;
}

.product-details p {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
}

.product-details strong {
    color: #2d5016;
    font-weight: 600;
}

.product-pack {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-small {
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
    border-radius: 10px;
}

.btn-details {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-details:hover {
    background: #e9e9e9;
    border-color: #ccc;
}

.btn-enquire {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: #fff;
}

.btn-enquire:hover {
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 48px 16px;
    margin: 48px 0;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.trust-item-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.trust-item-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: #fff;
    padding: 48px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.contact-info {
    margin: 32px 0;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    margin: 20px 0;
    font-size: 16px;
}

.contact-addresses {
    text-align: left;
    max-width: 650px;
    margin: 32px auto;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.address-block {
    margin: 20px 0;
}

.address-block h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ffd700;
    font-weight: 600;
}

.address-block p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #1a2f0d;
    color: #fff;
    padding: 32px 16px;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 19px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    margin: 32px 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
    padding: 40px 20px;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-slide p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 500px;
}

.banner-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: #ffd700;
    width: 28px;
    border-radius: 5px;
}

/* Contact Form Modal */
.contact-form-container {
    background: #2d2d2d;
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 500px;
    margin: 32px auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.contact-form-container h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.contact-form-container > p {
    text-align: center;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 10px;
    background: #3a3a3a;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: #404040;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.form-submit:hover {
    background: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.form-submit:active {
    transform: translateY(2px);
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 16px;
}

.contact-section {
    background: linear-gradient(135deg, #2d5016, #4a7c2c);
    padding: 64px 16px;
  }
  
  .contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
  }
  
  .contact-info-box {
    color: #fff;
  }
  
  .contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .contact-sub {
    opacity: 0.9;
    margin-bottom: 24px;
  }
  
  .contact-highlight {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .contact-highlight a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contact-address h4 {
    color: #ffd700;
    margin-top: 20px;
  }
  
  .contact-address p {
    font-size: 14px;
    opacity: 0.9;
  }
  
  /* Form */
  .contact-form-box {
    background: #2e2e2e;
    padding: 32px;
    border-radius: 16px;
    color: #fff;
  }
  
  .contact-form-box h3 {
    color: #ffd700;
    margin-bottom: 8px;
  }
  
  .contact-form-box p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .contact-form-box input,
  .contact-form-box textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    background: #3a3a3a;
    color: #fff;
  }
  
  .contact-form-box button {
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  
  /* Desktop */
  @media (min-width: 768px) {
    .contact-wrapper {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }

  .form-status1 {
    margin-top: 12px;
    font-size: 14px;
    color: #9cff9c;
    display: none;
    text-align: center;
  }
  
  
  .product-image {
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

