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

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5fbf;
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5fbf;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-links-mobile {
    display: none;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-links-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #8b5fbf;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 4rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        max-width: 48rem;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 56rem;
        padding: 0 2rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Business Overview */
.business-overview {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.section-content-center {
    text-align: center;
    max-width: 100%;        /* ✅ full width by default */
    margin: 0 auto;
    padding: 0 1rem;        /* ✅ side padding for mobile readability */
}



@media (min-width: 1024px) {
    .section-content-center {
        max-width: 56rem;   /* ✅ same as before for desktop */
    }
}

.section-title {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.75rem;     /* ✅ better size across devices */
    line-height: 1.3;
}

.section-description {
    color: #4a5568;
    font-size: 1rem;        /* ✅ slightly smaller for mobile */
    line-height: 1.6;
    text-align: left;       /* ✅ left-align reads easier on phones */
}

/* Product Showcase */
.product-showcase {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.125rem; /* back to larger size on tablets/desktops */
        text-align: justify; /* optional: justify for wider screens */
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.product-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.product-moq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.moq-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.875rem;
}

.moq-badge {
    background-color: #e6f3ff;
    color: #8b5fbf;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.features-title {
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.features-list i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0e6ff, #e6f7ff);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #8b5fbf, #b794f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

.benefit-title {
    color: #1a202c;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

.stats-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

@media (min-width: 768px) {
    .stats-card {
        padding: 3rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number:nth-child(1) {
    color: #8b5fbf;
}

.stat-item:nth-child(2) .stat-number {
    color: #10b981;
}

.stat-item:nth-child(3) .stat-number {
    color: #f59e0b;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-card-title {
    color: #1a202c;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1.5rem;
}

.contact-details {
    padding: 0 1.5rem 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #8b5fbf;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #6b7280;
}

.quote-card {
    background: linear-gradient(135deg, #8b5fbf, #b794f6);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

.quote-card h3 {
    margin-bottom: 1rem;
}

.quote-card p {
    margin-bottom: 1rem;
}

.quote-card ul {
    list-style: none;
}

.quote-card ul li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    flex-grow: 1;
}

.form-title {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5fbf;
    box-shadow: 0 0 0 3px rgba(139, 95, 191, 0.1);
}

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

.form-submit-btn {
    background: linear-gradient(135deg, #8b5fbf, #b794f6);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(139, 95, 191, 0.3);
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 95, 191, 0.4);
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.company-info {
    max-width: 28rem;
}

.footer-title {
    color: #b794f6;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item i {
    color: #b794f6;
    width: 1.25rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: #a0aec0;
}

.footer-section-title {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #8b5fbf;
    transform: translateY(-2px);
}

.certifications h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.certifications p {
    color: #718096;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #718096;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #b794f6;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 20rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-message {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-content {
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .stats-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1rem;
    }
}

/* Animations and Transitions */
.product-card,
.benefit-card,
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

.p-4 {
    padding: 1rem;
}

.rounded {
    border-radius: 0.5rem;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
