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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e3a5f;
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Top Bar */
.top-bar {
    background-color: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.phone-number svg {
    width: 16px;
    height: 16px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.nav-left, .nav-right {
    display: flex;
    gap: 0.75rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    text-align: center;
}

.logo-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.logo-subtitle {
    display: block;
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-btn-dark {
    background-color: #1e40af;
    color: white;
}
.nav-btn-dark:hover {
    background-color: #1e3a8a;
}

.nav-btn-blue {
    background-color: #2563eb;
    color: white;
}
.nav-btn-blue:hover {
    background-color: #1d4ed8;
}

.nav-btn-medium {
    background-color: #3b82f6;
    color: white;
}
.nav-btn-medium:hover {
    background-color: #2563eb;
}

.nav-btn-light {
    background-color: #38bdf8;
    color: white;
}
.nav-btn-light:hover {
    background-color: #0ea5e9;
}

.nav-btn-lighter {
    background-color: #7dd3fc;
    color: #1e3a8a;
}
.nav-btn-lighter:hover {
    background-color: #38bdf8;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: flex;
}

/* Brands Bar */
.brands-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.brands-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow-x: auto;
}

.brands-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.brands-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-logo-small {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
    cursor: pointer;
}

.brand-logo-small:hover {
    transform: scale(1.1);
}

.distribution-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0284c7;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #bae6fd;
    color: #1e3a8a;
    padding: 5rem 1rem;
    overflow: hidden;
}

.hero-bg-logos {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.hero-bg-logo {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.hero-bg-logo.logo-1 {
    top: 5rem;
    right: 5rem;
    width: 12rem;
    transform: rotate(12deg);
}

.hero-bg-logo.logo-2 {
    top: 10rem;
    left: 5rem;
    width: 11rem;
    transform: rotate(-12deg);
}

.hero-bg-logo.logo-3 {
    bottom: 5rem;
    right: 10rem;
    width: 10rem;
    transform: rotate(6deg);
}

.hero-bg-logo.logo-4 {
    bottom: 10rem;
    left: 10rem;
    width: 9rem;
    transform: rotate(-6deg);
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background-color: #1e40af;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #1e3a5f;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255,255,255,0.5);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
    background-color: #f0f9ff;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-divider {
    width: 40px;
    height: 3px;
    background-color: #1e40af;
    margin-bottom: 1.5rem;
}

.about-left p {
    margin-bottom: 1rem;
    color: #374151;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.about-item p {
    color: #374151;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.section-title-italic {
    font-style: italic;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-card {
    text-align: center;
    padding: 2rem;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background-color: #67e8f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.why-us-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e3a8a;
}

.why-us-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
    background-color: #fef9c3;
    padding: 1.5rem 1rem;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-content p {
    color: #374151;
    font-size: 0.95rem;
}

.cta-btn {
    background-color: #fde047;
    color: #1e3a8a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.cta-btn:hover {
    background-color: #facc15;
}

/* Brands Section */
.brands-section {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.filter-btn.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.brand-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.brand-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.brand-card:last-child {
    grid-column: 1;
}

.brand-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
}

.brand-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.tag-pink { background-color: #ec4899; }
.tag-green { background-color: #22c55e; }
.tag-orange { background-color: #f97316; }
.tag-purple { background-color: #a855f7; }
.tag-blue { background-color: #3b82f6; }
.tag-teal { background-color: #14b8a6; }

.brand-description {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 120px;
}

.brand-card-logo {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

/* Services Section */
.services-section {
    padding: 5rem 1rem;
    background-color: #f8fafc;
}

.section-divider-center {
    width: 40px;
    height: 3px;
    background-color: #1e40af;
    margin: 0 auto 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0284c7;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.85rem;
}

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

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

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.contact-card {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-badge {
    display: inline-block;
    background-color: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-details svg {
    color: #6b7280;
    flex-shrink: 0;
}

.coverage-info {
    background-color: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.coverage-info h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coverage-info p {
    color: #374151;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.contact-form-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-subtitle {
    color: #93c5fd;
    margin-bottom: 1.5rem;
}

.footer-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-brands .dot {
    color: #93c5fd;
}

.footer-copyright {
    color: #93c5fd;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-card:last-child {
        grid-column: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brands-bar-content {
        gap: 1rem;
    }
    
    .brands-logos {
        gap: 0.75rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title-center {
        font-size: 1.75rem;
    }
    
    .logo-title {
        font-size: 1.25rem;
    }
}
