.body {
    width: 100%;
    height: 100dvh;

    background-color: #000000;
    /* background-image: url('../img/bg-img.jpg'); 
    background-repeat: no-repeat; 
    background-position: center;
    background-size: cover; */

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: white;
}

.primary-clr {
    color: #DEFF20;
}

h1, h2, h3, h4, h5, h6, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

.header {
    width: 100%;
    margin: 15px 0 0 0;
}

.logo-link, .tel {
    font-weight: 400;
    font-size: 28px;
}

.tel {
    background-color: rgba(222, 255, 32, 0.8);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.tel:hover {
    background-color: rgba(222, 255, 32, 1);
    transform: scale(1.05);
}

.logo {
    color: #DEFF20;
}


.container {
    max-width: 1920px;
    margin: 0 15px;
}

.hero {
    margin-top: 40px;
}

.title {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 28px;
    color: #DEFF20;
}

.subtitle {
    font-weight: 700;
    font-size: 36px;
}

.description {
    font-weight: 300;
    font-size: 20px;
    margin-top: 15px;
}

.emergency-badge {
    margin-top: 15px;
    background-color: rgba(255, 75, 75, 0.6);
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
}

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

.main {
    max-width: 485px;
    width: 100%;
    padding-bottom: 130px;
}

.content {
    margin-top: 30px;
}

.content__desc {
    font-weight: 300;
    font-size: 18px;
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(30px);
    background: rgba(68, 68, 68, 0.5);
    margin-top: 20px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.service-item {
    background: rgba(68, 68, 68, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    border-radius: 15px;
    border-left: 4px solid #DEFF20;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.price {
    color: #DEFF20;
    font-weight: 700;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(68, 68, 68, 0.5);
    border-radius: 50%;
}

.reviews {
    margin-top: 25px;
    background: rgba(68, 68, 68, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
}

.stars {
    color: #DEFF20;
    margin-bottom: 5px;
    font-size: 20px;
}

.review-item p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.4;
}

.utp {
    margin-top: 30px;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 15px 0;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 485px;
    margin: 0 auto;
}

.discount-text {
    font-weight: 700;
    color: #DEFF20;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
}

.buttons-container {
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 0 15px;
}

.cta-btn {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #DEFF20;
    color: black;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.cta-btn img {
    width: 22px;
    height: 22px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.wa-clr {
    display: flex;
    justify-content: center;
    background-color: #45FF67;
}

.nav-menu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu-items li {
    margin: 0;
    padding: 0;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 30px;
    display: block;
    text-align: center;
}

.menu-items a:hover {
    background-color: rgba(222, 255, 32, 0.9);
    color: black;
    transform: translateY(-2px);
}

.menu-items a.active {
    background-color: #DEFF20;
    color: black;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(222, 255, 32, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: relative;
        padding: 5px 0;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }
    
    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }
    
    .menu-items.active {
        display: flex;
    }
    
    .menu-items a {
        padding: 12px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
    }
    
    .menu-items li:last-child a {
        border-bottom: none;
    }
    
    .menu-items a:hover {
        transform: none;
        background-color: rgba(222, 255, 32, 0.2);
    }
}

/* Media Queries */
@media screen and (min-width: 320px) {
    .container {
        max-width: 290px;
    }

    .hero {
        margin-top: 30px;
    }

    .logo-link, .tel {
        font-size: 16px;
    }

    .title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 22px;
    }

    .description {
        font-size: 14px;
    }

    .emergency-badge {
        font-size: 12px;
    }

    .content__desc {
        font-size: 14px;
    }

    .service-item h3 {
        font-size: 16px;
    }

    .utp {
        font-size: 18px;
        margin: 25px 0 20px 0;
    }

    .benefit-icon {
        font-size: 20px;
        min-width: 32px;
        height: 32px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .stars {
        font-size: 16px;
    }

    .review-item p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px;
    }

    .discount-text {
        font-size: 16px;
    }
}

@media screen and (min-width: 360px) {
    .container {
        max-width: 1920px;
        margin: 0 15px;
    }

    .hero {
        margin-top: 40px;
    }

    .logo-link, .tel {
        font-size: 18px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 26px;
    }

    .description {
        font-size: 16px;
    }

    .emergency-badge {
        font-size: 14px;
    }

    .content__desc {
        font-size: 16px;
    }

    .utp {
        font-size: 20px;
        margin: 30px 0 25px 0;
    }

    .cta-btn {
        font-size: 18px;
    }
}

@media screen and (max-width: 485px) {
    .container {
        max-width: 1920px;
    }

    .hero {
        margin-top: 30px;
    }

    .logo-link, .tel {
        font-size: 18px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 26px;
    }

    .description {
        font-size: 16px;
    }

    .content__desc {
        font-size: 16px;
    }

    .utp {
        font-size: 20px;
        margin: 25px 0 20px 0;
    }

    .main {
        padding-bottom: 110px;
    }

    .footer {
        padding: 10px 0;
    }

    .discount-text {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .buttons-container {
        gap: 8px;
        padding: 0 10px;
    }

    .cta-btn {
        padding: 10px;
        font-size: 14px;
        gap: 5px;
    }

    .cta-btn img {
        width: 18px;
        height: 18px;
    }

    .menu-items {
        gap: 8px;
    }
    
    .menu-items a {
        font-size: 14px;
        padding: 4px 8px;
    }
}

