/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.w-full {
    width: 100%;
}

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

.text-left {
    text-align: left;
}

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

.mb-3 {
    margin-bottom: 0.75rem;
}

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

.mb-6 {
    margin-bottom: 1.5rem;
}

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

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

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

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

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

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-6 {
    margin-right: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.p-6 {
    padding: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-white {
    color: #fff;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-800 {
    color: #1f2937;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-900 {
    color: #1e3a8a;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-blue-900 {
    background-color: #1e3a8a;
}

.opacity-90 {
    opacity: 0.9;
}

.rounded-full {
    border-radius: 9999px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-800 {
    border-color: #1f2937;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Top Header */
.top-header {
    background-color: #1e3a8a;
    color: #fff;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

/* Navigation Styles */
.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-icon {
    background-color: #2563eb;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Navigation Menu - Simplified */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
    text-align: center;
}

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

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Header */
.header-image {
    background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.header-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
}

/* Form Container */
.form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.blue-button {
    background-color: #2563eb;
    color: #fff;
}

.blue-button:hover {
    background-color: #1d4ed8;
}

.blue-button-dark {
    background-color: #1e40af;
    color: #fff;
}

.blue-button-dark:hover {
    background-color: #1e3a8a;
}

.yellow-button {
    background-color: #f59e0b;
    color: #fff;
}

.yellow-button:hover {
    background-color: #d97706;
}

.transparent-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.transparent-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.call-button {
    background-color: #2563eb;
    color: #fff;
}

.call-button:hover {
    background-color: #1d4ed8;
}

.whatsapp-button {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-button:hover {
    background-color: #20bd5c;
}

/* Services Section */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: #2563eb;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.learn-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #1d4ed8;
}

/* Features Section */
.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-icon {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* Brands Section */
.brands-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex: 0 0 20%;
    min-width: 200px;
    padding: 1rem;
}

.brand-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Packages Section */
.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.package-header {
    padding: 1.5rem;
    color: #fff;
}

.basic {
    background-color: #2563eb;
}

.standard {
    background-color: #1e40af;
}

.premium {
    background-color: #7c3aed;
}

.popular {
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f59e0b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 8px;
}

/* Testimonials */
.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stars {
    color: #f59e0b;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact-form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background-color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

/* Footer */
.logo-icon-footer {
    background-color: #2563eb;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-wrapper {
        flex-wrap: nowrap;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .nav-menu {
        width: auto;
        justify-content: flex-end;
    }
    
    .nav-links {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:w-auto {
        width: auto;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:w-auto {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:w-1\/2 {
        width: 50%;
    }

    .lg\:mb-0 {
        margin-bottom: 0;
    }

    .lg\:pl-12 {
        padding-left: 3rem;
    }

    .lg\:text-left {
        text-align: left;
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
    }

    .lg\:text-5xl {
        font-size: 3rem;
    }

    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .lg\:justify-start {
        justify-content: flex-start;
    }
}
/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #64748b;
    transition: transform 0.3s;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding: 0 0 1.5rem;
    color: #64748b;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 300px; /* Increased max-height to ensure content fits */
}
/* ===== GALLERY ===== */
.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    height: 250px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Fix for iPhone view */
@media (max-width: 480px) {
    .header-image {
        background-position: center;
    }

    .form-container, .contact-form-container {
        padding: 1.5rem;
    }

    .text-3xl {
        font-size: 1.5rem;
    }

    .text-4xl, .text-5xl {
        font-size: 1.875rem;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-cta .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .service-card, .feature-card, .package-card, .testimonial-card {
        padding: 1.25rem;
    }

    .popular {
        transform: none;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .nav-buttons .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}