* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2332;
    --secondary: #2c3e50;
    --accent: #f39c12;
    --light-gray: #ecf0f1;
    --dark-gray: #7f8c8d;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .header.scrolled {
        padding: 10px 0;
        background: rgba(26, 35, 50, 0.95);
        backdrop-filter: blur(10px);
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

    .logo span {
        color: var(--accent);
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

    .nav-menu a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: color 0.3s;
        position: relative;
    }

        .nav-menu a:hover {
            color: var(--accent);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

.cta-button {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

    .cta-button:hover {
        background: #e67e22;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(44, 62, 80, 0.85)), linear-gradient(45deg, #1a2332 25%, transparent 25%, transparent 75%, #1a2332 75%, #1a2332), linear-gradient(45deg, #1a2332 25%, transparent 25%, transparent 75%, #1a2332 75%, #1a2332);
    background-size: cover, 60px 60px, 60px 60px;
    background-position: center, 0 0, 30px 30px;
    background-color: #2c3e50;
    padding: 180px 0 120px;
    margin-top: 70px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(243, 156, 18, 0.1), transparent);
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .highlight {
    color: var(--accent);
    display: block;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
}

    .btn-primary:hover {
        background: #e67e22;
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(243, 156, 18, 0.5);
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

    .btn-secondary:hover {
        background: var(--white);
        color: var(--primary);
    }

.stats {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 18px;
        color: var(--dark-gray);
        max-width: 600px;
        margin: 0 auto;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--accent), #e67e22);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border-color: var(--accent);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #e67e22);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

    .service-link:hover {
        gap: 12px;
    }

.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
}

    .why-item:hover {
        background: var(--white);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 24px;
}

.why-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    color: var(--dark-gray);
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

    .contact-item:hover {
        background: rgba(255,255,255,0.15);
        transform: translateX(5px);
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

    .contact-form h3 {
        color: var(--primary);
        font-size: 24px;
        margin-bottom: 25px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px;
        border: 2px solid var(--light-gray);
        border-radius: 10px;
        font-family: 'Montserrat', sans-serif;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.submit-btn {
    background: var(--accent);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background: #e67e22;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    }

.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.area-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s;
}

    .area-item:hover {
        background: var(--accent);
        color: var(--white);
        transform: translateY(-3px);
    }

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

    .footer-section a:hover {
        opacity: 1;
        color: var(--accent);
        padding-left: 5px;
    }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

    .float-btn.whatsapp {
        background: #25D366;
    }

    .float-btn.phone {
        background: var(--accent);
    }

    .float-btn:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    }

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    flex-shrink: 0;
}

    .modal-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .modal-header .modal-icon {
        font-size: 48px;
        margin-bottom: 15px;
        display: block;
    }

.modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.modal-section {
    margin-bottom: 30px;
}

    .modal-section h3 {
        color: var(--primary);
        font-size: 20px;
        margin-bottom: 15px;
        border-left: 4px solid var(--accent);
        padding-left: 15px;
    }

    .modal-section p {
        color: var(--dark-gray);
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .modal-section ul {
        color: var(--dark-gray);
        line-height: 1.8;
        padding-left: 20px;
    }

        .modal-section ul li {
            margin-bottom: 8px;
        }

.price-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
}

    .price-box h4 {
        color: var(--primary);
        font-size: 18px;
        margin-bottom: 10px;
    }

.price-text {
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .close:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.1);
    }

.modal-cta {
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto 0;
    text-decoration: none;
    text-align: center;
}

    .modal-cta:hover {
        background: #e67e22;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    }

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s;
    }

        .nav-menu.active {
            left: 0;
        }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .floating-buttons {
        right: 20px;
        bottom: 20px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
    }
}
