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

:root {
    --primary-gold: #B28B00;
    --primary-navy: #2F4858;
    --emerald: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
}

body {
    font-family: 'Lato', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        border-top: 1px solid var(--gray-100);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > .btn {
        display: inline-block;
    }
    
    .nav-menu > .btn:nth-last-child(2) {
        margin-right: 12px;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px;
        text-align: left;
    }
    
    .btn {
        width: calc(50% - 6px);
        padding: 10px 12px;
        text-align: center;
        margin-right: 12px;
    }
    
    .btn:last-child {
        margin-right: 0;
    }
}

/* Buttons */
.btn {
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

.btn-primary {
    background: #fbbf24;
    color: var(--gray-900);
}

.btn-primary:hover {
    background: #f59e0b;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.btn-quote {
    background: var(--emerald);
    color: var(--white);
}

.btn-quote:hover {
    background: #059669;
}

.btn-contact {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-contact:hover {
    background: #92710b;
}

.btn-submit {
    background: var(--primary-gold);
    color: var(--white);
    width: 100%;
    padding: 12px;
}

.btn-submit:hover {
    background: #92710b;
}

.btn-dark {
    background: var(--gray-900);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-800);
}

.btn-outline {
    border: 2px solid var(--gray-900);
    color: var(--gray-900);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
}

.btn-explore {
    background: #fbbf24;
    color: var(--gray-900);
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-gold) 100%);
    color: var(--white);
    padding: 120px 20px 60px;
    margin-top: 64px;
}

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

.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #fef3c7;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.image-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.image-card img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 24px;
    border-radius: 16px;
}

.image-card h3 {
    color: var(--primary-navy);
    font-size: 24px;
    margin-bottom: 12px;
}

.image-card p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
}

.card-features i {
    color: var(--primary-gold);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

/* Certifications Section */
.certifications {
    padding: 80px 20px;
    background: var(--gray-50);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.cert-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid #22c55e;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.cert-card:hover {
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.cert-image {
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid #86efac;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    overflow: hidden;
}

.cert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.cert-card h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.cert-badge {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 80px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    grid-auto-rows: minmax(380px, auto);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 20px;
    color: var(--gray-800);
    margin: 24px 24px 12px;
}

.product-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0 24px 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 16px;
    margin-top: auto;
    background: white;
    box-sizing: border-box;
}

.product-footer span {
    color: var(--emerald);
    font-weight: 600;
}

.badge-premium {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.badge-family {
    background: #fef3c7;
    color: #b45309;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.badge-commercial {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

/* Flip Card Styles */
.flip-card-container {
    perspective: 1000px;
    cursor: pointer;
    min-height: 400px;
}

.flip-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-wrapper.flipped {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    position: absolute;
    top: 0;
    left: 0;
}

.flip-card-front {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.flip-card-back {
    transform: rotateY(180deg);
    padding: 20px;
    overflow: hidden;
    background: #f9fafb;
}

.flip-card-front img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center;
    background-color: #f5f5f5;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.flip-card-front h3 {
    font-size: 20px;
    color: var(--gray-800);
    margin: 24px 24px 12px;
}

.flip-card-front p {
    color: var(--gray-600);
    font-size: 13px;
    margin: 0 24px 16px;
    line-height: 1.4;
}

.flip-card-back h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
}

.nutrition-subtitle {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.nutrition-facts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 0;
}

.nutrition-facts-table tr {
    border-bottom: 1px solid #ddd;
}

.nutrition-facts-table tr:last-child {
    border-bottom: none;
}

.nutrition-facts-table td {
    padding: 6px 2px;
    text-align: left;
}

.nutrition-facts-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 60%;
}

.nutrition-facts-table td:last-child {
    text-align: right;
    color: #666;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 64px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-item i {
    font-size: 24px;
    color: var(--emerald);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--gray-600);
    font-size: 14px;
}

.specs-box {
    background: #f0fdf4;
    border-radius: 16px;
    padding: 32px;
}

.specs-box h3 {
    text-align: center;
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.specs-list div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #d1fae5;
}

.specs-list span:first-child {
    font-weight: 600;
    color: var(--gray-700);
}

.specs-list span:last-child {
    color: var(--emerald);
    font-weight: 600;
}

@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
    }
}

/* Facilities Section */
.facilities {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #f0fdf4, #fef3c7);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.facility-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.facility-card i {
    font-size: 32px;
    color: #3b82f6;
    margin-bottom: 16px;
}

.facility-card h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.facility-card div {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.facility-card .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--emerald);
    margin: 0;
}

.facility-card p {
    font-size: 12px;
    color: var(--gray-600);
    margin: 0;
}

/* Health Section */
.health {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #fef3c7, #fed7aa);
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.benefit-card i {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-grid h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.about-grid h3 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.about-grid > div:first-child p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features > div {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.about-features i {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.about-feature i {
    color: var(--primary-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.about-card h4 {
    font-size: 24px;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 24px;
}

.about-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-items div {
    display: flex;
    gap: 20px;
}

.about-items i {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.about-items p {
    font-size: 14px;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Partner Section */
.partner {
    padding: 80px 20px;
    background: linear-gradient(to right, #fbbf24, #f97316);
    text-align: center;
}

.partner h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.partner-description {
    font-size: 20px;
    color: var(--gray-800);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-grid > .distribution-card {
    grid-column: 1 / -1;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background-color: var(--white);
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(178, 139, 0, 0.15);
    background-color: var(--white);
}

.form-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.form-message.hidden {
    display: none;
}

.form-message.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card,
.distribution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.contact-info-card h3,
.distribution-card h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-item > i {
    font-size: 24px;
    color: var(--primary-navy);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-item.map-item {
    padding-left: 0;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: #fef3c7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-600);
}

.contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.distribution-card {
    background: var(--primary-navy);
    color: var(--white);
    padding: 24px !important;
    text-align: center;
}

.distribution-card h3 {
    color: var(--white);
    margin-bottom: 16px !important;
}

.distribution-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}

.distribution-items div {
    display: flex;
    gap: 12px;
    align-items: center;
}

.distribution-items i {
    color: #fbbf24;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 48px 20px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    align-items: start;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.footer-tagline {
    color: #fef3c7;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-grid p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-grid p i {
    width: 20px;
    text-align: center;
    color: #fbbf24;
    flex-shrink: 0;
}

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

.social-link {
    color: #fbbf24;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fef3c7;
}

.footer-grid h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin-bottom: 16px;
}

.footer-grid li:has(i) {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-grid li:not(:has(i)) {
    display: block;
}

.footer-grid li i {
    width: 20px;
    text-align: center;
    color: #fbbf24;
    flex-shrink: 0;
}

.footer-grid a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #d1d5db;
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: var(--emerald);
    color: var(--white);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.modal-body {
    padding: 32px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
    z-index: 9999;
}

.whatsapp-btn:hover {
    background: #1ebd59;
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Quote Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.required {
    color: #e74c3c;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.error-message.hidden {
    display: none;
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.country-code-select {
    flex: 0 0 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.phone-input {
    flex: 1;
}

.form-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.hidden {
    display: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--emerald);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Distribution Page Styles */
.distribution {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.distribution-intro {
    text-align: center;
    margin-bottom: 64px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.distribution-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.distribution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald) 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
}

.distribution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    text-align: center;
}

.card-description {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

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

.card-content p {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
}

.franchise-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.franchise-features li {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.franchise-features i {
    color: var(--emerald);
    font-weight: 700;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

.why-choose-section {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    margin-top: 80px;
}

.why-choose-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

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

.feature-box i {
    font-size: 40px;
    color: var(--emerald);
    margin-bottom: 16px;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Distribution Details Section */
.distribution-details {
    margin-top: 80px;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
}

.distribution-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald) 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Franchise Details Section */
.franchise-details {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 16px;
}

.franchise-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

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

.benefit-section {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--emerald) 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: white;
}

.benefit-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Market Reach Section */
.market-reach {
    margin-top: 80px;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
}

.market-reach h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

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

.stat-box {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--emerald) 0%, #10b981 100%);
    border-radius: 12px;
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .distribution {
        padding: 60px 20px;
    }

    .distribution-grid {
        gap: 24px;
    }

    .distribution-card {
        padding: 32px 24px;
    }

    .distribution-details {
        padding: 40px 24px;
    }

    .distribution-details h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .franchise-details {
        padding: 40px 24px;
    }

    .franchise-details h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .franchise-benefits {
        grid-template-columns: 1fr;
    }

    .market-reach {
        padding: 40px 24px;
    }

    .market-reach h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .reach-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-box {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .why-choose-section {
        padding: 40px 24px;
    }

    .why-choose-section h3 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .features-grid {
        gap: 24px;
    }
}

/* Email Selection Modal Styles */
.email-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.email-modal.hidden {
    display: none;
}

.email-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.email-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

.email-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.email-close-btn:hover {
    color: #333;
    background-color: #f5f5f5;
    border-radius: 50%;
}

.email-modal-body {
    padding: 24px;
}

.email-modal-subtitle {
    margin: 0 0 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.email-list {
    margin-bottom: 20px;
}

.email-option {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fafafa;
}

.email-option:hover {
    background-color: #f0f0f0;
    border-color: var(--emerald);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.email-option.selected {
    background-color: #f0fdf4;
    border-color: var(--emerald);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.2);
}

.email-option-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--emerald) 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.email-option-content {
    flex: 1;
}

.email-option-address {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.email-option-label {
    font-size: 12px;
    color: #999;
}

.email-option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-left: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.email-option.selected .email-option-radio {
    border-color: var(--emerald);
    background-color: var(--emerald);
}

.email-option.selected .email-option-radio::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.email-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #999;
    font-size: 13px;
}

.email-divider::before,
.email-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.email-divider span {
    padding: 0 12px;
}

.email-manual-entry {
    display: flex;
    gap: 8px;
}

.manual-email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}

.manual-email-input:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-use-email {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--emerald) 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-use-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-use-email:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 480px) {
    .email-modal-content {
        width: 95%;
        margin: 20% auto;
    }

    .email-modal-header {
        padding: 16px;
    }

    .email-modal-body {
        padding: 16px;
    }

    .email-manual-entry {
        flex-direction: column;
    }

    .btn-use-email {
        width: 100%;
    }
}

