/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5a27;
    --light-green: #4a7c59;
    --lighter-green: #a8c6a8;
    --cream: #f8f6f0;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Horizontal with Large Font */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.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: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    font-size: 2.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 4px;
    background: var(--white);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section - Center Aligned */
.hero {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Mission Section - Center Aligned & Justified */
.mission-section {
    padding: 100px 0;
    background: var(--white);
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    font-size: 3rem;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
}

.mission-content p {
    margin-bottom: 2rem;
}

.mission-highlight {
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    text-align: center;
    border-left: 5px solid var(--primary-green);
}

.mission-highlight p {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-green);
    font-weight: 600;
    font-style: italic;
}

/* Products Grid Section */
.products-grid-section {
    padding: 100px 0;
    background: var(--cream);
}

.products-grid-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-green);
    font-size: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card-grid {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--lighter-green);
}

.product-card-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-green);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-grid:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.view-details {
    color: var(--light-green);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.product-card-grid:hover .view-details {
    color: var(--primary-green);
    transform: translateX(8px);
}

/* Benefits Section - Center Aligned */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-green);
    font-size: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--light-green);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer - Center Aligned */
.footer {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand .logo-icon {
    font-size: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin: 0;
}

.footer-brand p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    opacity: 0.9;
}

/* Product Detail Page Styles */
.product-detail-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.product-detail-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-detail-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    opacity: 0.9;
    transition: var(--transition);
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
}

.back-button:hover {
    opacity: 1;
    transform: translateX(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.product-detail-content {
    padding: 80px 0;
    background: var(--cream);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-main-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--white);
}

.detail-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.detail-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.detail-info h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-align: center;
}

/* Professional Tables */
.comparison-table {
    margin: 3rem 0;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.comparison-table h3 {
    margin-bottom: 2rem;
    color: var(--primary-green);
    font-size: 1.8rem;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--lighter-green);
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border: 2px solid var(--lighter-green);
    font-size: 1rem;
}

th {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

tr:nth-child(even) {
    background: var(--cream);
}

tr:hover {
    background: rgba(168, 198, 168, 0.2);
}

/* Benefits Tags */
.benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.benefit-tag {
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    color: var(--primary-green);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.benefit-tag:hover {
    transform: translateY(-2px);
    border-color: var(--primary-green);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.feature {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-green);
}

.feature h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.feature ul {
    list-style: none;
}

.feature li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    text-align: left;
}

.feature li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Packaging Section */
.packaging-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid var(--lighter-green);
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.packaging-section h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.packaging-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.packaging-image {
    text-align: center;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-green);
    transition: var(--transition);
}

.packaging-image:hover {
    transform: translateY(-5px);
    border-color: var(--light-green);
}

.packaging-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.packaging-image p {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.packaging-features {
    margin-top: 2rem;
    text-align: center;
}

.packaging-features ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.packaging-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.packaging-features li:before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Storage Instructions */
.storage-info {
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
    border-left: 5px solid var(--primary-green);
}

.storage-info h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detail-main-image img {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-green), var(--light-green));
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .mission-section h2,
    .products-grid-section h2,
    .benefits-section h2 {
        font-size: 2.5rem;
    }
    
    .product-detail-hero h1 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .packaging-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .mission-section h2,
    .products-grid-section h2,
    .benefits-section h2 {
        font-size: 2rem;
    }
    
    .product-card-grid {
        margin: 0 1rem;
    }
}
/* Full Width Elements */
.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

/* Enhanced Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Packaging Intro */
.packaging-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Features Grid for full width */
.features-grid.full-width {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
}

/* Table width improvements */
.comparison-table.full-width {
    width: 100%;
    margin: 3rem 0;
}

.comparison-table.full-width table {
    min-width: 100%;
}

/* Better image sizing */
.detail-main-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--white);
    padding: 1rem;
}

.packaging-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: var(--white);
    padding: 1rem;
    border: 2px solid var(--lighter-green);
}

/* Enhanced packaging features */
.packaging-features h4 {
    color: var(--primary-green);
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.4rem;
}

.packaging-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    text-align: left;
}

.packaging-features li {
    padding: 0.8rem 1rem;
    background: var(--cream);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-green);
}

/* Responsive improvements for laptop */
@media (min-width: 1024px) {
    .detail-grid {
        gap: 5rem;
    }
    
    .features-grid.full-width {
        gap: 3rem;
    }
    
    .packaging-images {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
    }
    
    .packaging-features ul {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }
}

/* Ensure tables use full width on laptops */
@media (min-width: 768px) {
    .comparison-table {
        overflow-x: visible;
    }
    
    .comparison-table table {
        min-width: 100%;
    }
}
/* ============================================ */
/* WATER KEFIR PAGE SPECIFIC STYLES */
/* Add these styles to the END of your CSS file */
/* ============================================ */
/* Full Width Container */
.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Product Section - Full Width Layout */
.product-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-product-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--white);
}

.main-product-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--white);
    padding: 2rem;
}

.product-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.badge {
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    color: var(--primary-green);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-2px);
    border-color: var(--primary-green);
}

.product-details-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-highlights h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-green);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-green);
}

.info-box h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.info-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

/* Full Width Sections */
.full-width-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Enhanced Comparison Table */
.comparison-container {
    width: 100%;
    overflow-x: auto;
}

.comparison-table-full {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--lighter-green);
    min-width: 800px;
}

.comparison-table-full th,
.comparison-table-full td {
    padding: 1.5rem;
    border: 2px solid var(--lighter-green);
    vertical-align: top;
}

.comparison-table-full th {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.comparison-item {
    padding: 1rem;
}

.comparison-item.negative {
    border-left: 4px solid #e53e3e;
    background: rgba(229, 62, 62, 0.05);
}

.comparison-item.positive {
    border-left: 4px solid var(--light-green);
    background: rgba(168, 198, 168, 0.1);
}

.comparison-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.comparison-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Packaging Display */
.packaging-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.packaging-option {
    display: flex;
    gap: 2rem;
    align-items: start;
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-green);
    transition: var(--transition);
}

.packaging-option:hover {
    transform: translateY(-5px);
    border-color: var(--light-green);
}

.packaging-image {
    flex: 0 0 150px;
}

.packaging-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-green);
}

.packaging-info h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.packaging-info .size {
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.packaging-info ul {
    list-style: none;
}

.packaging-info li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.packaging-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

/* Packaging Features */
.packaging-features-full {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--lighter-green);
}

.packaging-features-full h4 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--light-green);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex: 0 0 auto;
}

.feature-item h5 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Info Sections Grid */
.info-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-green);
}

.info-section h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.info-section ul {
    list-style: none;
}

.info-section li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--lighter-green);
}

.info-section li:last-child {
    border-bottom: none;
}

.info-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-full {
        padding: 0 30px;
    }
    
    .product-main-section {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .product-main-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .highlight-cards {
        grid-template-columns: 1fr;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .packaging-display {
        grid-template-columns: 1fr;
    }
    
    .packaging-option {
        flex-direction: column;
        text-align: center;
    }
    
    .packaging-image {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .container-full {
        padding: 0 20px;
    }
    
    .full-width-section {
        padding: 2rem;
    }
    
    .product-badges {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-sections-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Section Styles */
.video-section {
    text-align: center;
    background: linear-gradient(135deg, var(--white), var(--cream));
}

.video-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 1.5rem;
    border: 3px solid var(--lighter-green);
}

.video-container iframe {
    border-radius: 12px;
    border: 2px solid var(--light-green);
}

.video-description {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--light-green);
    box-shadow: var(--shadow);
}

.video-description p {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.video-description ul {
    list-style: none;
    margin-top: 1rem;
}

.video-description li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2.5rem;
    border-bottom: 1px solid var(--lighter-green);
    font-size: 1rem;
    line-height: 1.6;
}

.video-description li:last-child {
    border-bottom: none;
}

.video-description li:before {
    content: "🌿";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Video responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        padding: 1rem;
        margin: 0 auto 1.5rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .video-description {
        padding: 1.5rem;
        margin: 1.5rem auto 0;
    }
    
    .video-description li {
        padding: 0.6rem 0;
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        height: 250px;
    }
    
    .video-description {
        padding: 1rem;
    }
    
    .video-description li {
        font-size: 0.9rem;
        padding-left: 1.8rem;
    }
}
/* Blue Color Scheme for Milk Kefir */
:root {
    --primary-blue: #1e40af;
    --light-blue: #3b82f6;
    --lighter-blue: #93c5fd;
    --blue-cream: #f0f9ff;
}

/* Additional Styles for Milk Kefir Page */
.features-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-large {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--blue-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-blue);
    transition: var(--transition);
}

.feature-item-large:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-icon-large {
    font-size: 2.5rem;
    flex: 0 0 auto;
}

.feature-item-large h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-item-large p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.health-note {
    background: linear-gradient(135deg, var(--lighter-blue), var(--light-blue));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-blue);
}

.health-note p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Enhanced info sections for milk kefir */
.info-sections-grid .info-section li {
    border-bottom-color: var(--lighter-blue);
}

.info-sections-grid .info-section li:before {
    color: var(--light-blue);
}

/* Video section enhancements for blue theme */
.video-description li {
    border-bottom-color: var(--lighter-blue);
}

.video-description li:before {
    content: "🥛";
}

/* Packaging features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--blue-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--light-blue);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex: 0 0 auto;
}

.feature-item h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustments for milk kefir page */
@media (max-width: 968px) {
    .features-grid-full {
        grid-template-columns: 1fr;
    }
    
    .feature-item-large {
        padding: 1.5rem;
    }
    
    .feature-icon-large {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-item-large {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .health-note {
        padding: 1.5rem;
    }
    
    .health-note p {
        font-size: 1.1rem;
    }
}
/* Full Width Quick Info Grid - Outside the main section */
.quick-info-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
    padding: 0;
}

.info-box-full {
    background: linear-gradient(135deg, var(--white), var(--blue-cream));
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 3px solid var(--lighter-blue);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.info-box-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
}

.info-box-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--light-blue);
}

.info-box-full h4 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.info-box-full h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--light-blue);
    border-radius: 2px;
}

.info-box-full ul {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.info-box-full li {
    padding: 1rem 1.5rem 1rem 3rem;
    position: relative;
    font-size: 1.1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--lighter-blue);
    transition: all 0.3s ease;
    text-align: left;
}

.info-box-full li:before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-blue);
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.info-box-full li:hover {
    color: var(--primary-blue);
    transform: translateX(8px);
    background: var(--blue-cream);
    border-color: var(--light-blue);
}

.info-box-full li:hover:before {
    transform: translateY(-50%) scale(1.2);
    color: var(--primary-blue);
}

/* Responsive Design for Full Width Quick Info Grid */
@media (max-width: 1200px) {
    .quick-info-grid-full {
        gap: 2rem;
    }
    
    .info-box-full {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 1024px) {
    .quick-info-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .quick-info-grid-full {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .info-box-full {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .info-box-full h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .info-box-full li {
        padding: 0.8rem 1.2rem 0.8rem 2.5rem;
        font-size: 1rem;
    }
    
    .info-box-full li:before {
        left: 0.8rem;
    }
}

@media (max-width: 480px) {
    .quick-info-grid-full {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .info-box-full {
        padding: 1.5rem 1rem;
    }
    
    .info-box-full h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .info-box-full li {
        padding: 0.7rem 1rem 0.7rem 2.2rem;
        font-size: 0.95rem;
    }
    
    .info-box-full li:before {
        left: 0.7rem;
        font-size: 1rem;
    }
}
/* Fix for water-kefir table headers */
.comparison-table-full th {
    background: linear-gradient(135deg, #8B4513, #A0522D) !important;
    color: white !important;
}

.comparison-item.positive {
    border-left-color: #A0522D !important;
    background: rgba(210, 180, 140, 0.1) !important;
}
/* Earthy Brown Color Scheme for Sorghum Flour */
:root {
    --primary-earth: #6D4C41;
    --light-earth: #8D6E63;
    --lighter-earth: #BCAAA4;
    --earth-cream: #EFEBE9;
}

/* Benefits Grid for Sorghum Flour */
.benefits-grid-sorghum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item-sorghum {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--earth-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-earth);
    transition: var(--transition);
}

.benefit-item-sorghum:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-earth);
}

.benefit-icon {
    font-size: 2.5rem;
    flex: 0 0 auto;
}

.benefit-item-sorghum h4 {
    color: var(--primary-earth);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit-item-sorghum p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Earth theme for table headers */
.comparison-table-full th[style*="primary-earth"] {
    background: linear-gradient(135deg, var(--primary-earth), var(--light-earth)) !important;
    color: white !important;
}

/* Responsive design for sorghum flour page */
@media (max-width: 768px) {
    .benefits-grid-sorghum {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item-sorghum {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid-sorghum {
        gap: 1rem;
    }
    
    .benefit-item-sorghum {
        padding: 1rem;
    }
    
    .benefit-item-sorghum h4 {
        font-size: 1.1rem;
    }
    
    .benefit-item-sorghum p {
        font-size: 0.9rem;
    }
}
/* Purple/Lavender Color Scheme for Kefir Grains */
:root {
    --primary-purple: #6B46C1;
    --light-purple: #9F7AEA;
    --lighter-purple: #D6BCFA;
    --purple-cream: #FAF5FF;
}

/* Features Grid for Kefir Grains */
.features-grid-kefir {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-kefir {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--purple-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-purple);
    transition: var(--transition);
}

.feature-kefir:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-purple);
}

.feature-kefir-icon {
    font-size: 2.5rem;
    flex: 0 0 auto;
}

.feature-kefir h4 {
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-kefir p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Popularity Grid */
.popularity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.popularity-item {
    text-align: center;
    background: var(--purple-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-purple);
    transition: var(--transition);
}

.popularity-item:hover {
    transform: translateY(-5px);
    border-color: var(--light-purple);
}

.popularity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.popularity-item h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.popularity-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Benefits Grid for Kefir */
.benefits-grid-kefir {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.benefit-kefir {
    background: var(--purple-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-purple);
    line-height: 1.6;
}

.benefit-kefir strong {
    color: var(--primary-purple);
}

/* Purple theme for table headers */
.comparison-table-full th[style*="primary-purple"] {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple)) !important;
    color: white !important;
}

/* Responsive design for kefir grains page */
@media (max-width: 768px) {
    .features-grid-kefir {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-kefir {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .popularity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid-kefir {
        grid-template-columns: 1fr;
    }
    
    .feature-kefir-icon {
        font-size: 2rem;
    }
    
    .popularity-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid-kefir,
    .popularity-grid {
        gap: 1rem;
    }
    
    .feature-kefir,
    .popularity-item {
        padding: 1rem;
    }
}
/* Light Green/Olive Color Scheme for Sauerkraut */
:root {
    --primary-olive: #689F38;
    --light-olive: #8BC34A;
    --lighter-olive: #C5E1A5;
    --olive-cream: #F1F8E9;
}

/* Product Info Grid for Sauerkraut */
.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--olive-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-olive);
}

.info-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.storage-info, .allergy-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lighter-olive);
}

.storage-info h5, .allergy-info h5 {
    color: var(--primary-olive);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.country-item {
    background: var(--olive-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--lighter-olive);
    transition: var(--transition);
    text-align: center;
}

.country-item:hover {
    transform: translateY(-5px);
    border-color: var(--light-olive);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.country-item h4 {
    color: var(--primary-olive);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.country-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Grid for Sauerkraut */
.benefits-grid-sauerkraut {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-sauerkraut {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--olive-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-olive);
    transition: var(--transition);
}

.benefit-sauerkraut:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-olive);
}

.benefit-icon {
    font-size: 2.5rem;
    flex: 0 0 auto;
}

.benefit-sauerkraut h4 {
    color: var(--primary-olive);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit-sauerkraut p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Olive theme for table headers */
.comparison-table-full th[style*="primary-olive"] {
    background: linear-gradient(135deg, var(--primary-olive), var(--light-olive)) !important;
    color: white !important;
}

/* Responsive design for sauerkraut page */
@media (max-width: 768px) {
    .product-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid-sauerkraut {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-sauerkraut {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .country-flag {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .product-info-grid,
    .countries-grid,
    .benefits-grid-sauerkraut {
        gap: 1rem;
    }
    
    .info-card,
    .country-item,
    .benefit-sauerkraut {
        padding: 1rem;
    }
}
/* Logo Image Styles */
.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-logo:hover .logo-image {
    transform: scale(1.1);
}

/* Responsive Logo Sizes */
@media (max-width: 768px) {
    .logo-image {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 32px;
        height: 32px;
    }
}
.footer-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 6px;
}
/* Contact Options in Footer */
.contact-options {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-options h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.whatsapp-btn, .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
    transform: translateY(-2px);
}

.call-btn {
    background: var(--white);
    color: var(--primary-green);
}

.call-btn:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.float-text {
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 1rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.call {
    background: var(--white);
    color: var(--primary-green);
}

.contact-btn.email {
    background: #EA4335;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn, .call-btn {
        width: 200px;
        justify-content: center;
    }
    
    .float-btn {
        padding: 0.8rem 1.2rem;
    }
    
    .float-text {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}
/* Footer Address Styles */
.footer-address {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-address p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Adjust footer bottom spacing */
.footer-bottom {
    margin-top: 1rem;
}
/* Social Media Styles */
.social-links {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}