* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: REM, sans-serif;
}

body {
    background-color: rgb(26, 26, 26);
    color: rgb(255, 255, 255);
    line-height: 1.6;
    padding-bottom: 50px;
}

a {
    color: rgb(255, 202, 255);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 100%;
    margin: 0px auto;
    padding: 0px 20px;
}

header {
    background-color: rgb(0, 99, 38);
    color: rgb(255, 255, 255);
    padding: 15px 0px;
    position: sticky;
    top: 0px;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    transition: max-height 0.3s ease-in-out;
}

.nav-links a {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: rgb(255, 255, 255);
}

.top-video {
    width: 100%;
    background: rgb(26, 26, 26);
}

.top-video video {
    width: 100%;
    height: auto;
}

section {
    padding: 20px 0px;
}

h2 {
    color: rgb(255, 231, 0);
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
}

h1 {
    color: rgb(255, 231, 0);
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
}

h3 {
    color: rgb(255, 231, 0);
    margin: 20px 0px 10px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}

ul {
    margin: 10px 0px;
    padding-left: 20px;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0px;
}

.profile {
    background: rgb(17, 17, 17);
    border: 3px ridge rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.profile:hover {
    transform: scale(1.05);
    box-shadow: rgba(255, 0, 0, 0.3) 0px 8px 16px;
}

.profile img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .profiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .profiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .profiles {
        grid-template-columns: 1fr;
    }
}

.areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0px;
}

.areas span {
    background: rgb(120, 0, 80);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.faq {
    margin-top: 40px;
}

.faq details {
    background: rgb(17, 17, 17);
    margin-bottom: 10px;
    border-radius: 6px;
    padding: 10px;
}

summary {
    font-weight: bold;
    cursor: pointer;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0px 10px;
}

.carousel-container .testimonial {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    background: rgb(17, 17, 17);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: rgba(255, 0, 0, 0.2) 0px 4px 15px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.7);
    color: white;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgb(255, 0, 0);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    scrollbar-width: none;
}

@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

.footer-bg {
    background: url("#") center center / cover no-repeat;
    padding: 40px 0px;
    color: rgb(255, 255, 255);
    position: relative;
}

.footer-bg::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.7);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
}

.footer-column {
    flex: 1 1 0%;
    margin: 0px 10px;
}

.footer-column h3 {
    color: rgb(255, 0, 0);
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0px;
}

.footer-column ul li a {
    color: rgb(255, 255, 255);
    display: block;
    margin-bottom: 5px;
}

.bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
}

.phone {
    background-color: rgb(145, 0, 69);
    color: rgb(0, 0, 0);
    padding: 10px;
    flex: 1 1 0%;
    text-align: center;
}

.whatsapp {
    background-color: rgb(0, 99, 38);
    color: rgb(0, 0, 0);
    padding: 10px;
    flex: 1 1 0%;
    text-align: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0px;
        right: 0px;
        background-color: rgb(255, 0, 0);
        padding: 20px;
        text-align: center;
    }
    h2 {
        font-size: 28px;
    }
    .profiles {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .footer-columns {
        flex-direction: column;
    }
    .bottom-bar {
        flex-direction: column;
    }
}

.rates-section,
.categories-section {
    padding: 60px 0px;
    background: rgb(26, 26, 26);
}

.rates-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: rgb(221, 221, 221);
}

.rates-table {
    overflow-x: auto;
    margin: 0px auto 40px;
    max-width: 100%;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgb(17, 17, 17);
    border: 1px solid rgb(255, 0, 0);
    border-radius: 8px;
    overflow: hidden;
}

.rates-table th,
.rates-table td {
    padding: 15px 12px;
    text-align: center;
    border: 1px solid rgb(51, 51, 51);
    color: rgb(255, 255, 255);
}

.rates-table th {
    background: rgb(255, 0, 0);
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 16px;
}

.rates-table tr:nth-child(2n) {
    background: rgb(26, 26, 26);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: rgb(17, 17, 17);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(255, 0, 0, 0.25) 0px 15px 30px;
    border-color: rgb(255, 68, 68);
}

.category-card h3 {
    color: rgb(255, 231, 0);
    margin-bottom: 15px;
    font-size: 22px;
}

.category-card p {
    font-size: 15px;
    color: rgb(187, 187, 187);
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    background: rgb(255, 231, 0);
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .rates-table th,
    .rates-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    .category-card {
        padding: 20px 15px;
    }
}

.contact-map-section {
    padding: 60px 0px;
    background: rgb(10, 10, 10);
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: rgb(204, 204, 204);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.map-column,
.form-column {
    background: rgb(17, 17, 17);
    border: 1px solid rgb(255, 0, 0);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(255, 0, 0, 0.15) 0px 8px 20px;
}

.map-wrapper {
    height: 450px;
}

.map-wrapper iframe {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
}

.contact-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgb(255, 0, 0);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(68, 68, 68);
    border-radius: 6px;
    background: rgb(26, 26, 26);
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(255, 0, 0);
    box-shadow: rgba(255, 0, 0, 0.4) 0px 0px 8px;
}

.submit-btn {
    background: rgb(255, 0, 0);
    color: rgb(0, 0, 0);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: rgb(255, 68, 68);
    transform: translateY(-3px);
}

.form-note {
    padding: 0px 30px 30px;
    color: rgb(170, 170, 170);
    font-size: 15px;
}

@media (max-width: 768px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
    .map-wrapper {
        height: 350px;
    }
    .contact-form {
        padding: 25px;
    }
}