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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #10b981;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-align: center;
}

.nav-link:hover,
.nav-link.active {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.action-btn i {
    font-size: 0.875rem;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-icon {
    color: #fff;
    font-size: 18px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon:hover {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #10b981;
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
}

/* Menu Toggle Button */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle:hover span {
    background: #10b981;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.mobile-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.mobile-nav-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    transform: translateX(8px);
}

.mobile-nav-link i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    background: #f8fafc;
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #374151;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title-accent {
    color: #10b981;
    display: block;
    font-size: 4rem;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-weight: 700;
    border: 1.5px solid #059669;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.18), 0 1.5px 6px rgba(16,185,129,0.10);
    letter-spacing: 0.02em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.25), 0 2px 8px rgba(16,185,129,0.13);
    transform: translateY(-2px) scale(1.04);
    border-color: #10b981;
}

.btn-outline {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-outline:hover {
    background-color: #10b981;
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.trust-number {
    font-size: 2rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
}

.image-container {
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 90vw;
  aspect-ratio: 1/1;
  border: none !important;
  border-image: none !important;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(16,185,129,0.10), 0 2px 8px rgba(16,185,129,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative !important;
  transition: box-shadow 0.3s, border-image 0.3s;
}

.image-container:hover {
  box-shadow: 0 16px 48px rgba(16,185,129,0.18), 0 4px 16px rgba(16,185,129,0.13);
  border-image: linear-gradient(135deg, #3b82f6, #10b981, #f59e42) 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@media (max-width: 600px) {
  .image-container {
    width: 100vw;
    height: auto;
    max-width: 100vw;
    max-height: none;
    min-width: 0;
    min-height: 0;
    aspect-ratio: unset;
    border-radius: 24px !important;
  }
  .hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px !important;
    object-fit: cover;
  }
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(15, 198, 137, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18dc9a;
    font-size: 20px;
}

.badge-title {
    font-weight: bold;
    color: #141414;
}

.badge-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}
@media (max-width: 600px) {
    .features-grid {
        gap: 10px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 20px 28px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.feature-icon i {
    font-size: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-content {
    flex: 1 1 auto;
}
.product-footer {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 18px 0 18px;
    min-height: 56px;
}
@media (max-width: 600px) {
    .product-card {
        max-width: 100%;
        margin: 0 0 18px 0;
    }
    .product-card .product-image {
        height: 120px;
    }
    .product-content, .product-footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    animation: levitate 3s ease-in-out infinite;
}

.product-badge.fresh, .product-badge.organic {
    background-color: #10b981;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16,185,129,0.13);
    letter-spacing: 0.01em;
    display: inline-block;
}

.product-badge.seeds {
    background-color: #3b82f6;
}

.product-badge.bulk {
    background-color: #ef4444;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
    flex-shrink: 0;
}

.add-to-cart {
    min-width: 130px;
    max-width: 130px;
    height: 42px;
    padding: 0;
    font-size: 0.98rem;
    font-weight: 500;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-sizing: border-box;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.1;
    gap: 7px;
    white-space: nowrap;
    align-self: center;
}
.add-to-cart i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    height: 1em;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    gap: 30px;
}

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

.feature i {
    font-size: 2rem;
    color: #10b981;
    margin-top: 5px;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.5;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-form {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #181818;
    color: #fff;
    padding: 18px 0 8px 0;
}
.footer-content {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1 1 0;
    min-width: 120px;
    text-align: left;
}
.footer-logo {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}
.footer-section p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.97rem;
}
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}
.social-link {
    color: #10b981;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.social-link:hover {
    color: #059669;
}
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #10b981;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.97rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info-footer i {
    color: #10b981;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background-color: #e2e8f0;
    color: #1a1a1a;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #10b981;
    font-weight: bold;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background-color: #fee2e2;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes neonGlow {
    0% {
        text-shadow: 
            0 0 2px rgba(16, 185, 129, 0.3),
            0 0 4px rgba(16, 185, 129, 0.3);
    }
    50% {
        text-shadow: 
            0 0 4px rgba(16, 185, 129, 0.5),
            0 0 8px rgba(16, 185, 129, 0.5);
    }
    100% {
        text-shadow: 
            0 0 2px rgba(16, 185, 129, 0.3),
            0 0 4px rgba(16, 185, 129, 0.3);
    }
}

@keyframes levitate {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive Design */
/* Responsive Header Styles */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 16px;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .action-btn span {
        display: none;
    }
    
    .action-btn {
        padding: 8px 12px;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 12px;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .logo-title {
        font-size: 1.125rem;
    }
    
    .logo-subtitle {
        font-size: 0.625rem;
    }
    
    .action-btn {
        padding: 6px 10px;
    }
    
    .action-btn i {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        gap: 0 !important;
    }
    .hero-text {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus, .menu-toggle:focus, a:focus, .nav-link:focus, .mobile-nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px #10b981;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    border-top-color: #10b981;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}
.category-tab {
    background: #f8fafc;
    color: #10b981;
    border: 1px solid #10b981;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    box-shadow: none;
}
.category-tab.active, .category-tab:hover {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: #10b981;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(16,185,129,0.13);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.category-tab {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
@media (max-width: 600px) {
    .category-tab {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

/* Product Details */
.product-details {
    margin: 15px 0;
}

.product-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-label {
    color: #666;
    font-weight: 500;
}

.info-value {
    color: #1a1a1a;
    font-weight: 600;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge.premium {
    background-color: #f59e0b;
}

.product-badge.kit {
    background-color: #8b5cf6;
}

.product-badge.bulk {
    background-color: #ef4444;
}

/* About Page Styles */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    gap: 30px;
}

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

.feature i {
    font-size: 2rem;
    color: #10b981;
    margin-top: 5px;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.5;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.lightbox-info p {
    color: #666;
}

/* Farm Stats */
.farm-stats {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #10b981;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #059669;
}

.contact-note {
    font-size: 0.9rem;
    color: #10b981;
    font-style: italic;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.social-contact h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.social-contact .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-contact .social-link:hover {
    background: #10b981;
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.map-section {
    padding: 80px 0;
    background: white;
}

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

.map-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.map-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f8fafc;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px dashed #10b981;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    color: #10b981;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 200px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
} 
main .btn, main .btn-primary, main .btn-outline {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-weight: 700;
    border: 1.5px solid #059669;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.18), 0 1.5px 6px rgba(16,185,129,0.10);
    letter-spacing: 0.02em;
    border-radius: 50px;
    padding: 15px 32px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
main .btn:hover, main .btn-primary:hover, main .btn-outline:hover {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.25), 0 2px 8px rgba(16,185,129,0.13);
    transform: translateY(-2px) scale(1.04);
    border-color: #10b981;
} 

/* Fade-in animation for sections and cards */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Smoother button and card hover transitions */
.btn, .btn-primary, .btn-outline, .feature-card, .product-card {
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.btn:hover, .btn-primary:hover, .btn-outline:hover {
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.25), 0 2px 8px rgba(16,185,129,0.13);
  transform: translateY(-2px) scale(1.06);
}
.feature-card:hover, .product-card:hover {
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.18);
  transform: translateY(-8px) scale(1.03);
} 

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .container { padding: 0 10px; }
  .features-grid, .products-grid, .gallery-grid { gap: 14px; }
  .footer-content { flex-direction: column; gap: 24px; text-align: center; }
}
@media (max-width: 768px) {
  .features-grid, .products-grid, .gallery-grid { grid-template-columns: 1fr; }
  .feature-card, .product-card { max-width: 100%; margin: 0 0 18px 0; }
  .footer-content { flex-direction: column; gap: 18px; text-align: center; }
  .hero-title { font-size: 2rem; }
  section, .gallery-section, .cta-section { padding: 40px 0 !important; }
  .btn, .btn-primary, .btn-outline { padding: 12px 20px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 5px; }
  .hero-title { font-size: 1.3rem; }
  .section-title, .gallery-title { font-size: 1.2rem; }
  .feature-card, .product-card { padding: 16px 8px; }
  .btn, .btn-primary, .btn-outline { padding: 10px 10px; font-size: 0.95rem; }
  .footer-content { gap: 10px; }
}
img, .product-img, .gallery-img { max-width: 100%; height: auto; display: block; } 

/* Mobile menu visibility fix */
/* Mobile menu visibility */
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
  .menu-toggle { display: flex !important; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-btn { display: none !important; }
} 
.menu-toggle, .menu-toggle:focus, .menu-toggle:active, .menu-toggle:hover {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: none;
}
.menu-toggle i {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
} 

/* Ensure light green color for Founder and Co-Founder titles in Meet the Team section */
.meet-the-team .feature-card h4.feature-title {
  color: #10b981 !important;
  -webkit-text-fill-color: initial !important;
  background: none !important;
  background-clip: border-box !important;
} 

/* Add gap between feature cards in about page's Why Choose Us section */
.why-choose-us .features-grid {
  gap: 32px !important;
}

.why-choose-us .feature-card {
  margin-bottom: 18px;
} 

/* Add gap between team member cards in Meet Our Team section on about page */
.our-team .horizontal-team {
  gap: 40px !important;
}

.our-team .team-member {
  margin-bottom: 24px;
} 

/* Add vertical gap below the content in Meet Our Team cards */
.our-team .team-member .member-info > *:last-child {
  margin-bottom: 32px;
} 

/* Creative fade-in and hover animation for Meet Our Team cards */
.our-team .team-member {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: teamFadeIn 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: 0.2s;
  transition: box-shadow 0.3s, transform 0.3s;
}
.our-team .team-member:hover {
  box-shadow: 0 8px 32px rgba(16,185,129,0.18), 0 2px 8px rgba(16,185,129,0.13);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.our-team .horizontal-team .team-member:nth-child(1) {
  animation-delay: 0.2s;
}
.our-team .horizontal-team .team-member:nth-child(2) {
  animation-delay: 0.4s;
}
@keyframes teamFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
} 
.nav-logo:focus, .nav-logo:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
} 

/* Optional: Custom subtle focus for accessibility */
.nav-logo a:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #10b98133;
} 

/* Mobile Menu Button - Initially hidden on larger screens, shown on small */
.mobile-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: none;
}
.menu-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu {
    display: none;
    background-color: #f8f8f8;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a:hover {
    background-color: #e0e0e0;
}
.mobile-menu.show {
    display: block;
    transform: translateX(0);
}
.mobile-menu.show,
.mobile-menu.show * {
    color: #fff !important;
    text-align: center !important;
    justify-content: center !important;
}
.mobile-menu-content, .mobile-menu-header, .mobile-menu-footer {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}
.mobile-nav-link {
    justify-content: center !important;
}
.no-scroll {
    overflow: hidden;
} 
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  height: 4px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 8px;
  z-index: 1000;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

.nav-menu ul li {
  margin: 10px 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-menu.show {
  display: block;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .nav-menu {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }
  .nav-menu ul {
    display: flex;
    gap: 20px;
    padding: 0;
  }
  .nav-menu ul li {
    margin: 0;
  }
} 

/* Force header nav links to be visible and white */
.header .nav-menu ul li a {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 22px;
  border-radius: 8px;
  letter-spacing: 0.01em;
}

.header .nav-menu ul li a:hover,
.header .nav-menu ul li a.active {
  background: #10b981;
  color: #fff !important;
} 

/* --- Responsive Navigation Menu --- */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: #232323;
    z-index: 1001;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
  }
  .nav-menu.show {
    display: flex !important;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    width: 100vw;
    padding: 30px 0;
    align-items: flex-start;
  }
  .menu-toggle {
    display: flex !important;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-left: 18px;
    cursor: pointer;
    align-items: center;
    height: 48px;
  }
}
@media (min-width: 901px) {
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    width: auto;
    justify-content: flex-end;
    align-items: center;
  }
  .nav-menu ul {
    flex-direction: row;
    gap: 48px;
    align-items: center;
    padding: 0;
  }
  .menu-toggle {
    display: none !important;
  }
} 
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #232323;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 1001;
    padding: 32px 0 24px 0;
    border-radius: 0;
  }
  .mobile-menu .nav-link {
    display: block;
    width: auto;
    max-width: 90vw;
    margin: 0 auto 18px auto;
    padding: 18px 32px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    box-sizing: border-box;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    min-width: 180px;
  }
  .mobile-menu .nav-link:last-child {
    margin-bottom: 0;
  }
  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link.active {
    background: #10b981;
    color: #fff !important;
  }
} 
/* Force big, prominent mobile menu buttons */
.mobile-nav-link {
    font-size: 1.5rem !important;
    padding: 18px 0 !important;
    margin-bottom: 16px !important;
    border-radius: 16px !important;
    min-width: 180px !important;
    max-width: 90vw !important;
    width: 100% !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 4px 16px rgba(16,185,129,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.mobile-nav-link:last-child {
    margin-bottom: 0 !important;
} 

@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }
  .hero-container {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
  .hero-content {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .hero-image {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    margin: 0 auto 0 auto !important;
    padding: 0 !important;
  }
  .image-container {
    width: 100% !important;
    max-width: 95vw !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    margin: 0 auto 18px auto !important;
  }
  .hero-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: none !important;
    margin: 0 !important;
  }
  .image-badge {
    width: 100% !important;
    max-width: 95vw !important;
    margin: 0 auto 18px auto !important;
  }
}

/* Responsive Design Enhancements */

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  html, body {
    font-size: 15px !important;
    overflow-x: hidden !important;
  }
  .container, .hero-container, .hero-content {
    padding: 0 4vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .hero-title {
    font-size: 1.3rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1rem !important;
    padding: 12px 0 !important;
    min-width: 90vw !important;
    border-radius: 32px !important;
  }
  .trust-indicators {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .features-grid, .products-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .feature-card, .product-card {
    padding: 16px 8px !important;
    font-size: 1rem !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }
}

/* Tablet (481px–900px) */
@media (min-width: 481px) and (max-width: 900px) {
  html, body {
    font-size: 16px !important;
    overflow-x: hidden !important;
  }
  .container, .hero-container, .hero-content {
    padding: 0 6vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1.1rem !important;
    padding: 14px 0 !important;
    min-width: 60vw !important;
    border-radius: 32px !important;
  }
  .trust-indicators {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .features-grid, .products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .feature-card, .product-card {
    padding: 24px 12px !important;
    font-size: 1.1rem !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
}

/* Laptop/Desktop (≥901px) */
@media (min-width: 901px) {
  html, body {
    font-size: 17px !important;
    overflow-x: hidden !important;
  }
  .container, .hero-container, .hero-content {
    padding: 0 24px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .hero-title {
    font-size: 2.8rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1.15rem !important;
    padding: 16px 32px !important;
    min-width: 180px !important;
    border-radius: 40px !important;
  }
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }
  .features-grid, .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
  }
  .feature-card, .product-card {
    padding: 32px 20px !important;
    font-size: 1.15rem !important;
  }
  .footer-content {
    flex-direction: row !important;
    gap: 24px !important;
    text-align: left !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-title-accent {
    font-size: 2rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1.1rem !important;
    padding: 14px 0 !important;
    border-radius: 28px !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }
  .features-grid, .gallery-grid, .faq-grid, .meet-the-team .features-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .feature-card, .gallery-item, .faq-item {
    padding: 16px 8px !important;
    font-size: 1.05rem !important;
    margin-bottom: 12px !important;
    border-radius: 14px !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 18px !important;
    text-align: center !important;
  }
  .footer-section {
    min-width: 0 !important;
    margin-bottom: 10px !important;
  }
  .footer-logo {
    width: 56px !important;
    margin-bottom: 8px !important;
  }
  .social-links {
    gap: 18px !important;
    margin-top: 10px !important;
    justify-content: center !important;
  }
  .social-link {
    font-size: 1.7rem !important;
    min-width: 44px;
    min-height: 44px;
  }
  .footer-bottom {
    font-size: 1rem !important;
    padding-top: 12px !important;
  }
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container, .hero-container, .hero-content, .gallery-section .container {
    padding: 0 4vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  /* Center hero buttons on mobile */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 24px 0 24px 0 !important;
    gap: 12px !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 350px !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 auto 8px auto !important;
    display: flex !important;
  }
}

.cta-section .btn {
  text-align: center !important;
  justify-content: center !important;
}
@media (max-width: 768px) {
  .cta-section {
    text-align: center !important;
  }
  .cta-section .btn {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto 16px auto !important;
    display: flex !important;
  }
}

.about .btn, .about .contact-link {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  padding-left: 0 !important;
}
.about .btn span, .about .contact-link span {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  justify-content: center !important;
  align-items: center !important;
}
@media (max-width: 768px) {
  .about .btn, .about .contact-link {
    width: 100% !important;
    max-width: 350px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    padding: 16px 0 !important;
    border-radius: 32px !important;
    box-shadow: 0 4px 16px rgba(16,185,129,0.10);
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    margin: 0 auto 16px auto !important;
  }
}
@media (min-width: 769px) {
  .about .btn, .about .contact-link {
    width: auto !important;
    min-width: 180px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    border-radius: 32px !important;
    box-shadow: 0 4px 16px rgba(16,185,129,0.10);
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    margin: 0 auto 16px auto !important;
  }
}

.about .btn, .about .contact-link, .about .btn *, .about .contact-link * {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  padding-left: 0 !important;
  margin: 0 auto !important;
}

.farm-visit-btn {
  /* ...all styles... */
}
@media (min-width: 600px) {
  .farm-visit-btn {
    width: 300px;
  }
}

.visit-farm-section .farm-visit-btn-unique {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 16px 48px !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  border-radius: 32px !important;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(16,185,129,0.10) !important;
  min-width: 180px !important;
  max-width: 600px !important;
  border: none !important;
  width: 100% !important;
  margin: 0 auto !important;
  line-height: 1 !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
}

.visit-farm-section .farm-visit-btn-unique span,
.visit-farm-section .farm-visit-btn-unique {
  width: 100%;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;
}
.visit-farm-section .farm-visit-btn-unique:hover {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%) !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.25), 0 2px 8px rgba(16,185,129,0.13) !important;
}

/* Default heading style */
.heading {
  font-size: 4rem;
  text-shadow: 0 0 20px #00c389;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
  .heading {
    font-size: 2rem; /* Smaller font for mobile */
    text-shadow: 0 0 8px #00c389; /* Softer glow */
    padding: 0 10px; /* Add some horizontal padding if needed */
  }
}

@media (max-width: 600px) {
  html, body {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    background: #fff !important;
  }
  .container,
  .hero-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .hero-image,
  .image-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .image-container {
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
  }
  .image-badge {
    position: static !important;
    margin: 16px auto 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    left: auto !important;
    right: auto !important;
    width: 90vw !important;
    max-width: 400px !important;
    z-index: 1 !important;
    transform: none !important;
    box-shadow: 0 4px 16px rgba(16,185,129,0.10);
  }
  .badge-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }
}

/* --- MOBILE OPTIMIZATION ENHANCEMENTS --- */
@media (max-width: 480px) {
  /* Header & Navigation */
  .nav-container {
    flex-direction: row;
    height: 56px;
    padding: 0 6px;
  }
  .nav-logo .logo {
    height: 28px;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-subtitle {
    font-size: 0.6rem;
  }
  .menu-toggle {
    font-size: 2rem;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }
  .nav-link, .mobile-nav-link {
    font-size: 1.1rem !important;
    padding: 18px 0 !important;
    min-width: 100vw !important;
    text-align: center !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
  }
  .mobile-menu {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    padding-top: 56px !important;
    border-radius: 0 !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
  .mobile-menu-header {
    padding: 12px 0 0 0 !important;
  }
  .mobile-menu-close {
    font-size: 2rem;
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-contact-btn {
    font-size: 1.1rem;
    padding: 16px 0 !important;
    min-width: 100vw !important;
    border-radius: 0 !important;
  }
  /* Hero Section */
  .hero {
    padding: 32px 0 18px 0 !important;
  }
  .hero-title {
    font-size: 1.2rem !important;
    margin-bottom: 10px;
  }
  .hero-title-accent {
    font-size: 1.5rem !important;
  }
  .hero-description {
    font-size: 1rem !important;
    margin-bottom: 18px;
  }
  .hero-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }
  .btn, .btn-primary, .btn-outline {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 1.1rem !important;
    padding: 14px 0 !important;
    border-radius: 28px !important;
    margin-bottom: 8px !important;
  }
  .image-container, .hero-image {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
  .hero-img {
    width: 92vw !important;
    max-width: 92vw !important;
    height: auto !important;
    border-radius: 16px !important;
  }
  .image-badge {
    width: 90vw !important;
    left: 0 !important;
    bottom: -10px !important;
    border-radius: 12px !important;
    padding: 10px 8px !important;
    font-size: 0.9rem !important;
  }
  /* Features, Gallery, Team, FAQ */
  .features-grid, .gallery-grid, .faq-grid, .meet-the-team .features-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    flex-direction: column !important;
  }
  .feature-card, .gallery-item, .faq-item {
    padding: 12px 6px !important;
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    border-radius: 12px !important;
  }
  .feature-title {
    font-size: 1.1rem !important;
  }
  .feature-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.2rem !important;
    margin-bottom: 6px !important;
  }
  .gallery-img {
    width: 90vw !important;
    height: 120px !important;
    border-radius: 10px !important;
  }
  /* Team Section */
  .meet-the-team .features-grid {
    gap: 10px !important;
  }
  .meet-the-team .feature-card {
    padding: 10px 4px !important;
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
  }
  /* Footer */
  .footer-content {
    flex-direction: column !important;
    gap: 18px !important;
    text-align: center !important;
  }
  .footer-section {
    min-width: 0 !important;
    margin-bottom: 10px !important;
  }
  .footer-logo {
    width: 48px !important;
    margin-bottom: 6px !important;
  }
  .footer-links li {
    margin-bottom: 8px !important;
  }
  .social-links {
    gap: 18px !important;
    margin-top: 10px !important;
    justify-content: center !important;
  }
  .social-link {
    font-size: 1.7rem !important;
    min-width: 44px;
    min-height: 44px;
  }
  .footer-bottom {
    font-size: 0.95rem !important;
    padding-top: 10px !important;
  }
  /* Remove horizontal scroll */
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  /* Remove fixed widths that cause overflow */
  .container, .hero-container, .hero-content, .gallery-section .container {
    padding: 0 4vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  /* FAQ Section */
  .faq-section {
    padding: 32px 0 !important;
  }
  .faq-question {
    padding: 12px !important;
    font-size: 1rem !important;
  }
  .faq-answer p {
    padding: 0 12px 12px !important;
    font-size: 0.98rem !important;
  }
  /* Future Expansion Section */
  .future-expansion {
    padding: 32px 0 18px 0 !important;
  }
  .future-title {
    font-size: 1.2rem !important;
  }
  .future-block {
    padding: 12px 6px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
  }
  .future-block h3 {
    font-size: 1rem !important;
  }
  .future-block p {
    font-size: 0.98rem !important;
  }
}

/* Slightly larger mobile (≤768px) tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-title-accent {
    font-size: 2rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1.1rem !important;
    padding: 14px 0 !important;
    border-radius: 28px !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }
  .features-grid, .gallery-grid, .faq-grid, .meet-the-team .features-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .feature-card, .gallery-item, .faq-item {
    padding: 16px 8px !important;
    font-size: 1.05rem !important;
    margin-bottom: 12px !important;
    border-radius: 14px !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 18px !important;
    text-align: center !important;
  }
  .footer-section {
    min-width: 0 !important;
    margin-bottom: 10px !important;
  }
  .footer-logo {
    width: 56px !important;
    margin-bottom: 8px !important;
  }
  .social-links {
    gap: 18px !important;
    margin-top: 10px !important;
    justify-content: center !important;
  }
  .social-link {
    font-size: 1.7rem !important;
    min-width: 44px;
    min-height: 44px;
  }
  .footer-bottom {
    font-size: 1rem !important;
    padding-top: 12px !important;
  }
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container, .hero-container, .hero-content, .gallery-section .container {
    padding: 0 4vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  /* Center hero buttons on mobile */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 24px 0 24px 0 !important;
    gap: 12px !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 350px !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 auto 8px auto !important;
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .section-title,
  .gallery-title,
  .future-title,
  .faq-section .section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  .hero-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding-left: 18px !important;
    padding-right: 8px !important;
    box-sizing: border-box !important;
  }
  .hero-text {
    padding-left: 10px !important;
    padding-right: 0 !important;
  }
  .hero-image, .image-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }
  .hero-img {
    width: 90vw !important;
    max-width: 90vw !important;
    height: auto !important;
    display: block !important;
    border-radius: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-fit: contain !important;
  }
}

@media (min-width: 601px) {
  .image-container {
    width: 380px;
    height: 380px;
    max-width: 95vw;
    max-height: 95vw;
    aspect-ratio: 1/1;
    border: 10px solid #10b981;
    border-radius: 50%;
    box-shadow: 0 0 32px 8px #10b98166, 0 8px 32px rgba(16,185,129,0.10), 0 2px 8px rgba(16,185,129,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative !important;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
}

@keyframes levitateBadge {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-10px); }
}

@media (min-width: 601px) {
  .image-container {
    /* already set for circle, keep as is */
    position: relative !important;
  }
  .image-badge {
    position: absolute !important;
    left: 50% !important;
    bottom: 60px !important;
    transform: translateX(-50%) translateY(0%) !important;
    z-index: 2 !important;
    min-width: 120px !important;
    max-width: 60%;
    padding: 2px 18px !important;
    min-height: unset !important;
    font-size: 0.98rem !important;
    background: #fff !important;
    border-radius: 14px !important;
    opacity: 0.98;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    animation: levitateBadge 2.5s ease-in-out infinite alternate;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow:
      0 0 32px 8px #10b98188,
      0 8px 32px rgba(16,185,129,0.18),
      0 2px 8px rgba(16,185,129,0.13);
  }
  .image-badge:hover {
    box-shadow:
      0 0 48px 16px #10b981cc,
      0 16px 48px rgba(16,185,129,0.25),
      0 4px 16px rgba(16,185,129,0.18);
    transform: translateX(-50%) scale(1.05) !important;
  }
  .badge-text {
    font-size: 0.98rem !important;
  }
  .badge-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
}

@media (min-width: 601px) {
  .image-badge {
    bottom: -30px !important; /* Negative value to overlap below the image */
    transform: translateX(-50%) translateY(0%) !important;
  }
}

@media (min-width: 601px) {
  .image-container {
    overflow: visible !important;
  }
  .image-badge {
    bottom: -30px !important;
    transform: translateX(-50%) translateY(0%) !important;
  }
}

.gallery-section .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.gallery-section .gallery-grid img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}