﻿* {
    margin: -2px;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.loadingSpinner {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 20px;
    color: #111;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

    .phone-link:hover {
        color: #ea580c;
    }

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: #ea580c;
    color: white;
}

    .btn-primary:hover {
        background: #c2410c;
        transform: translateY(-2px);
    }

.btn-success {
    background: #16a34a;
    color: white;
}

    .btn-success:hover {
        background: #15803d;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
    }

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    transition: transform 1s ease-in-out;
}

    .hero-background-carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
        filter: brightness(0.5) contrast(1.2);
        transition: filter 0.3s ease;
    }

        .hero-background-carousel img:hover {
            filter: brightness(0.7) contrast(1.2);
        }

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay to ensure text readability */
    z-index: 0;
}

.hero-image-filename {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.hero-background-carousel img:hover + .hero-image-filename {
    opacity: 1;
}

.hero h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero .highlight {
    color: #ea580c;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 20px;
}

.bg-gray {
    background: #f9fafb;
}

.bg-white {
    background: white;
}

.bg-orange {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    color: #111;
}

.bg-orange .section-title {
    color: white;
}

.text-center {
    text-align: center;
}

.max-w-4xl {
    max-width: 900px;
    margin: 0 auto;
}

/* Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.card-icon {
    width: 50px;
    height: 50px;
    color: #ea580c;
    margin-bottom: 15px;
}

.card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.card p {
    color: #666;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    color: #ea580c;
    margin: 0 auto 15px;
}

.feature h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.feature p {
    font-size: 14px;
    color: #666;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    color: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: rgba(255,255,255,0.9);
}

/* Contact Section */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-option {
    border: 3px solid #ea580c;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

    .contact-option:hover {
        background: #fff7ed;
    }

    .contact-option.whatsapp {
        border-color: #16a34a;
    }

        .contact-option.whatsapp:hover {
            background: #f0fdf4;
        }

.contact-option-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.contact-option h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-option p {
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #ea580c;
    margin: 10px 0;
}

.price-note {
    font-size: 14px;
    color: #16a34a;
    font-weight: 600;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #ea580c;
    }

textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

    details:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

summary {
    font-weight: 700;
    font-size: 18px;
    color: #111;
    list-style: none;
    cursor: pointer;
}

    summary::-webkit-details-marker {
        display: none;
    }

details p {
    margin-top: 15px;
    color: #374151;
    line-height: 1.8;
}

/* Company Info Box */
.company-info {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

    .company-info h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .company-info p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .company-info strong {
        color: #fbbf24;
    }

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h4 {
    font-size: 20px;
}

.footer-logo p {
    font-size: 12px;
    color: #9ca3af;
}

.footer-text {
    color: #9ca3af;
    margin-top: 15px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: #ea580c;
    }

.footer-link-icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

    .whatsapp-float:hover {
        background: #15803d;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

.whatsapp-float-icon {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Modal */
.express-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

    .express-modal.active {
        display: flex; /* Show when active */
    }

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

    .modal-close:hover {
        color: #ea580c;
    }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

    .modal-close:hover {
        color: #ea580c;
    }

@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }

    .phone-link span {
        display: none;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 120px 20px 50px;
    }

    section {
        padding: 50px 20px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-actions .btn span {
        display: none;
    }
}



.bg-company {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a2e5c 0%, #1a4d8f 50%, #0d3a6d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

    .bg-company::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(26, 77, 143, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .bg-company::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(10, 46, 92, 0.4) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.containerz {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

    .containerz .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 8px 16px;
        margin-bottom: 30px;
        font-size: 14px;
        color: #ffffff;
        backdrop-filter: blur(10px);
    }

        .containerz .badge::before {
            content: '✓';
            display: inline-block;
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }



    .containerz h1 {
        font-size: 46px;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 20px;
        letter-spacing: -4.5px;
    }

        .containerz h1 .highlight {
            color: #ff8c00;
        }

    .containerz .description {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: -22px;
    }

    .containerz .price-highlight {
        color: #ff8c00;
        font-weight: 600;
    }

    .containerz .features {
        display: flex;
        gap: 12px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .containerz .feature {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        padding: 12px 4px;
        font-size: 14px;
        color: #ffffff;
        backdrop-filter: blur(10px);
    }

        .containerz .feature::before {
            content: '⏱';
            font-size: 16px;
        }

        .containerz .feature:nth-child(2)::before {
            content: '✓';
        }

        .containerz .feature:nth-child(3)::before {
            content: '🛡';
        }

    .containerz .buttons {
        display: flex;
        gap: 12px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .containerz .btn {
        flex: 1;
        min-width: 200px;
        padding: 14px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .containerz .btn-primary {
        background: #ff8c00;
        color: #ffffff;
    }

        .containerz .btn-primary:hover {
            background: #ff7700;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
        }

    .containerz .btn-secondary {
        background: transparent;
        color: #ff8c00;
        border: 2px solid #ff8c00;
    }

        .containerz .btn-secondary:hover {
            background: rgba(255, 140, 0, 0.1);
            transform: translateY(-2px);
        }

    .containerz .footer-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .containerz .footer-text::before {
            content: '✓';
            color: #ff8c00;
            font-weight: bold;
        }
