* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    text-align: center;

    padding: 0 24px;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.phone {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
    margin-bottom: 40px;
    margin-top: 40px;

}

.phone:hover {
    background: #25D366;
    border-color: #25D366;
}

.fa-whatsapp {
    color: #25D366;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.phone:hover .fa-whatsapp {
    color: white;
}

.tagline {
    margin-top: 18px;
    font-size: clamp(1rem, 3vw, 1.8rem);
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0,0,0,.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 15vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    opacity: .8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translate(-50%,0);
    }
    40% {
        transform: translate(-50%,-5px);
    }
    60% {
        transform: translate(-50%,-3px);
    }
}

.destinations {
    margin-top: -10vh;
    position: relative;
    z-index: 2;

    background: #edf6f8;

    padding: 90px 8vw;
}

.destinations-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.destinations-header h2 {
    margin: 16px 0 24px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1f2937;
}

.destinations-header p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.destination-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .3s;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.destination-content {
    padding: 28px;
}

.destination-content h3 {
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: #1f2937;
}

.destination-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

.destination-content ul {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
}

.destination-content li {
    position: relative;
    padding-left: 22px;
    color: #444;
}

.destination-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3ba9c9;
    font-size: 1.3rem;
    line-height: 1;
}
.about {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 8vw;

    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.about-content {
    flex: 1;
}

.section-label {
    color: #3ba9c9;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
}

.about-content h2 {
    margin: 16px 0 24px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-content ul {
    list-style: none;
    margin: 30px 0;
    display: grid;
    gap: 12px;
}

.about-content li {
    font-size: 1rem;
}

.about-button {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 30px;

    background: #3ba9c9;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: .25s;
}

.about-button:hover {
    background: #2d8ba6;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .about {
        flex-direction: column;
    }

    .about-image img {
        height: 320px;
    }
}

.services {
    background: #f5f9fb;
    padding: 90px 8vw;
}

.services-content {
    max-width: 900px;
    margin: auto;
}

.services h2 {
    margin: 16px 0 28px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.services h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.services p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: #555;
}

.services ul {
    margin-left: 22px;
    line-height: 2;
}







.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    transition: .25s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h4 {
    margin-bottom: 10px;
    color: #3ba9c9;
}

.service-card p {
    margin: 0;
    line-height: 1.6;
}

footer {
    background: #002e4f;
    color: white;
    text-align: center;
    padding: 20px 20px;
    margin-top: 40;
}

footer h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

footer p {
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    margin-bottom: 12px;
}

footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;
    padding: 14px 28px;

    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 999px;

    font-weight: 600;
    transition: .25s;
}

footer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

footer .fa-whatsapp {
    font-size: 1.2rem;
    color: white;
}

footer .copyright {
    margin-top: 40px;
    font-size: .9rem;
    opacity: .7;
}


.destinations-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px;
    margin-bottom: -20px;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: .25s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .25);
}

.whatsapp-cta:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, .35);
}

.whatsapp-cta .fa-whatsapp {
    color: #fff;
    font-size: 1.2rem;
}