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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #374151;
    font-size: 20px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 16px 0;
}

.nav-mobile .nav-link {
    display: block;
    padding: 8px 16px;
    width: 100%;
    text-align: left;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 50%, #fed7aa 100%);
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-zones {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.zone-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 32px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s;
}

.zone-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.zone-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    transition: transform 0.3s;
}

.zone-card:hover .zone-icon {
    transform: scale(1.1);
}

.agri-icon {
    background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
}

.b2b-icon {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.zone-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.zone-card p {
    color: #6b7280;
    margin-bottom: 24px;
}

.zone-btn {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.agri-btn {
    background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
}

.agri-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #047857 100%);
    transform: scale(1.05);
}

.b2b-btn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.b2b-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
    transform: scale(1.05);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    margin: 0 auto 24px;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
}

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

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-main, .about-secondary {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

.about-main strong {
    color: #2563eb;
}

.necessity {
    color: #10b981;
}

.luxury {
    color: #a855f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.feature-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.feature-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.feature-icon.orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
}

.services-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 48px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b 0%, #f43f5e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
}

.coming-soon-card h3 {
    font-size: 28px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.coming-soon-card p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f3f4f6;
    border-radius: 9999px;
    color: #374151;
    font-weight: 500;
}

.status-badge i {
    color: #f59e0b;
}

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

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.contact-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.contact-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.contact-details p {
    color: #6b7280;
    margin-bottom: 12px;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #1d4ed8;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.footer-logo .logo-text p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 16px;
}

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

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: #2563eb;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-bottom span {
    color: #9ca3af;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s;
}

.modal-header {
    position: relative;
    margin-bottom: 24px;
}

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

.modal-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
}

.modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #6b7280;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 24px;
}

.modal-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #059669 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .business-zones {
        flex-direction: column;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-mobile.show {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .zone-card {
        max-width: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .coming-soon-card,
    .zone-card {
        padding: 24px;
    }
    
    .modal-content {
        padding: 24px;
        margin: 16px;
    }
}