
        :root {
            --primary: #e50914;
            --secondary: #000000;
            --accent: #ffffff;
            --light: #f8f9fa;
            --success: #27ae60;
            --info: #3498db;
            --warning: #f39c12;
            --header-height: 70px;
            --mobile-header-height: 60px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

header {
    background: var(--secondary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo-container {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo {
    height: 45px;
    width: auto;
    display: block;
}


.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.desktop-nav .menu-link {
    color: var(--accent);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.desktop-nav .menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.desktop-nav .menu-link:hover::after {
    width: 100%;
}


.desktop-nav .has-dropdown {
    position: relative;
}

.desktop-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.desktop-nav .has-dropdown:hover .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.desktop-dropdown a:last-child {
    border-bottom: none;
}

.desktop-dropdown a:hover {
    background: #f8f8f8;
    color: var(--primary);
    padding-left: 25px;
}


.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-content::-webkit-scrollbar {
    width: 5px;
}

.mobile-nav-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-item {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s ease forwards;
}

.mobile-nav.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-item:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--primary);
    transform: translateX(5px);
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: white;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-list {
    list-style: none;
    padding-left: 20px;
}

.mobile-submenu-item {
    margin-bottom: 8px;
}

.mobile-submenu-link {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: white;
    background: rgba(229, 9, 20, 0.15);
    border-left-color: var(--primary);
    transform: translateX(5px);
}


.mobile-nav-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.mobile-contact-info a:hover {
    background: var(--primary);
    transform: scale(1.1);
}

        body {
            background-color: #ffffff;
            color: var(--secondary);
            line-height: 1.6;
            font-family: 'Roboto', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--secondary);
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 28px;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .btn:hover {
            background: #c10510;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .btn-whatsapp {
            background: #25D366;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        header {
            background: var(--secondary);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }

        .logo-container {
            display: flex;
            align-items: center;
            z-index: 1002;
        }

        .logo {
            height: 45px;
            width: auto;
            display: block;
        }

      
        .desktop-nav {
            display: flex;
            align-items: center;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .desktop-nav .menu-link {
            color: var(--accent);
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        .desktop-nav .menu-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .desktop-nav .menu-link:hover::after {
            width: 100%;
        }

  
        .desktop-nav .has-dropdown {
            position: relative;
        }

        .desktop-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 260px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .desktop-nav .has-dropdown:hover .desktop-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .desktop-dropdown a {
            display: block;
            padding: 12px 20px;
            color: var(--secondary);
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .desktop-dropdown a:last-child {
            border-bottom: none;
        }

        .desktop-dropdown a:hover {
            background: #f8f8f8;
            color: var(--primary);
            padding-left: 25px;
        }

   
        .mobile-menu-btn {
            display: none;
            width: 30px;
            height: 30px;
            position: relative;
            cursor: pointer;
            z-index: 1002;
            background: none;
            border: none;
            padding: 0;
        }

        .hamburger {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 22px;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--accent);
            margin: 5px 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 2px;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

    
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 400px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 20px;
        }

        .mobile-menu-list {
            list-style: none;
        }

        .mobile-menu-item {
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 0.5s ease forwards;
        }

        .mobile-nav.active .mobile-menu-item {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: white;
            font-size: 18px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-link:hover {
            background: rgba(229, 9, 20, 0.2);
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .mobile-close-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1003;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }

        .mobile-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .page-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image8.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 120px;
            margin-top: var(--header-height);
        }

        .page-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .page-hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--accent);
        }

        
        .service-process {
            padding: 80px 0;
        }

        .service-process:nth-child(even) {
            background: var(--light);
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-size: 36px;
            text-align: center;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary);
        }

        .step-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--info));
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .step-description {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 20px;
        }

        .step-features {
            list-style: none;
            margin: 20px 0;
        }

        .step-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #555;
        }

        .step-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--success);
            font-size: 14px;
        }

       
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .benefit-card {
            background: white;
            padding: 30px 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
            border-color: var(--primary);
        }

        .benefit-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), #ff4757);
            color: white;
            border-radius: 50%;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .benefit-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

       
        .why-choose {
            background: var(--secondary);
            color: white;
            padding: 80px 0;
        }

        .why-choose .section-title {
            color: var(--accent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--primary);
            border-radius: 50%;
            color: var(--primary);
            font-size: 32px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .feature-description {
            font-size: 16px;
            color: #ccc;
            line-height: 1.6;
        }

        .cta {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 36px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--accent);
}

footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.contact-info i {
    margin-right: 12px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 14px;
}

.footer-bottom a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

       
        @media (max-width: 992px) {
            .header-container {
                height: var(--mobile-header-height);
            }

            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-nav {
                display: block;
            }

            .page-hero {
                margin-top: var(--mobile-header-height);
                padding: 120px 0 80px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .page-hero p {
                font-size: 18px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 280px;
            }
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 28px;
            }

            .section-title {
                font-size: 28px;
            }

            .step-container {
                grid-template-columns: 1fr;
            }

            .contact-item {
                font-size: 16px;
            }
        }

.mobile-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1003;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}


@media (max-width: 992px) {
    .header-container {
        height: var(--mobile-header-height);
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        margin-top: var(--mobile-header-height);
        padding: 120px 0 100px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .services-grid,
    .blog-posts {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}