        :root {
            --primary-color: #dc4827;
            --secondary-color: #3365f9;
            --accent-color: #000000;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #374151;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-bg {
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 4rem 0;
        }

        .hero-content h1 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 2rem;
        }

        .hero-content p {
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        .btn-lg {
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .btn-lg:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-light:hover {
            background: #f8f9fa;
            border-color: #f8f9fa;
        }

        .btn-outline-light:hover {
            background: white;
            border-color: white;
            color: var(--primary-color);
        }

        .btn-success {
            background: #25d366;
            border-color: #25d366;
        }

        .btn-success:hover {
            background: #128c7e;
            border-color: #128c7e;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
            }

            .hero-bg {
                height: 80vh;
                background-attachment: scroll;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .btn-lg {
                font-size: 1rem;
                padding: 12px 24px;
            }

            .scroll-indicator {
                bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-content {
                padding: 2rem 0;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .d-flex.gap-3 {
                flex-direction: column;
                align-items: center;
            }

            .btn-lg {
                width: 100%;
                max-width: 280px;
            }
        }

        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            color: white;
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .office-slider {
            padding: 80px 0;
            background: var(--light-color);
        }

        .office-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .office-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .office-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .office-content {
            padding: 2rem;
        }

        .gallery-section {
            padding: 80px 0;
            background: white;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 300px;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
            border-radius: 15px;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        .gallery-stats .badge {
            padding: 0.6rem 1rem;
            font-weight: 500;
        }

        .gallery-next,
        .gallery-prev {
            width: 50px;
            height: 50px;
            margin-top: -25px;
            background: var(--primary-color);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .gallery-next:hover,
        .gallery-prev:hover {
            background: #b83a22;
            transform: scale(1.1);
        }

        .gallery-next::after,
        .gallery-prev::after {
            font-size: 1rem;
            font-weight: 600;
        }

        .gallery-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .gallery-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            transform: scale(1.2);
            background: var(--primary-color);
        }

        @media (max-width: 768px) {

            .gallery-next,
            .gallery-prev {
                display: none;
            }

            .gallery-item {
                height: 250px;
            }

            .gallery-stats {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 576px) {
            .gallery-item {
                height: 200px;
            }

            .gallery-section {
                padding: 60px 0;
            }
        }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #b83a22;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 72, 39, 0.3);
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }

            .contact-form {
                padding: 2rem;
            }

            .whatsapp-btn {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 1rem;
            }
        }

        .section-divider {
            height: 2px;
            background: var(--primary-color);
            margin: 4rem 0;
        }

        .stats-section {
            background: var(--dark-color);
            color: white;
            padding: 80px 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }