* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f6f8fa;
    font-family: "Roboto", Arial, sans-serif;
    color: #202b36;
}


/* =========================================
   MAIN WEBSITE
========================================= */

.website {
    width: 100%;
     
    margin: auto;
    background: #ffffff;
}


/* =========================================
   LOGO
========================================= */

.logo-area {
    height: 98px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
}

.logo-area img {
    max-width: 200px;
     
    object-fit: contain;
}


/* =========================================
   TOP BANNER
========================================= */

.top-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   HERO
========================================= */

.hero {
    background: #000;
    color: #ffffff;

    text-align: center;

    padding: 22px 15px 20px;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.25;

    margin-bottom: 3px;
}

.hero p {
    font-size: 16px;

    margin-bottom: 15px;
}

.call-button {
    display: inline-block;

    background: #f08a24;

    color: #ffffff;

    padding: 14px 23px;

    border-radius: 3px;

    font-size: 16px;

    font-weight: 500;

    transition: 0.3s;
    text-decoration: none;
}

.call-button:hover {
    background: #d96f0d;
}


/* =========================================
   MAIN CONTENT
========================================= */

.main-content {
    background: #edf5f8;

    padding: 16px 14px 25px;
}

.main-content > h2 {
    text-align: center;

    font-size: 30px;

    color: #252525;

    margin-bottom: 16px;
}

.subtitle {
    text-align: center;

    font-size: 15px;

    margin-bottom: 17px;

    color: #222;
}


/* =========================================
   SERVICE INTRO
========================================= */

.service-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

    align-items: start;
}

.service-image img {
    width: 100%;

  

    object-fit: cover;

    border-radius: 7px;
}

.service-content {
    padding: 0 5px;
}

.main-heading {
    font-size: 18px;

    line-height: 1.4;

    margin-bottom: 14px;

    color: #222;
}

.service-item {
    margin-bottom: 16px;
}

.service-item h4 {
    font-size: 15px;

    color: #142f46;

    margin-bottom: 2px;
}

.service-item p {
    font-size: 16px;

    line-height: 1.45;

    color: #303030;
}

.bottom-text {
    font-size: 14px;

    line-height: 1.5;

    margin-top: 7px;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    padding: 45px 20px;

    background: #ffffff;

    text-align: center;
}

.services-section h2,
.gallery-section h2,
.booking-section h2,
.why-section h2 {
    font-size: 25px;

    color: #000;

    margin-bottom: 6px;
}

.section-description {
    font-size: 15px;

    color: #69747d;

    margin-bottom: 25px;
}


/* =========================================
   SERVICE CARDS
========================================= */

.service-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    background: #ffffff;

    border: 1px solid #dce5ea;

    border-radius: 6px;

    overflow: hidden;

    text-align: left;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(23, 63, 95, 0.12);
}

.service-card img {
    width: 100%;

    height: 200px;

    object-fit: cover;
}

.service-card h3 {
    font-size: 15px;

    color: #000;

    padding: 13px 14px 4px;
}

.service-card p {
    font-size: 15px;

    color: #69747d;

    line-height: 1.5;

    padding: 0 14px 16px;
}


/* =========================================
   WHY SECTION
========================================= */

.why-section {
    background: #edf5f8;

    padding: 45px 20px;

    text-align: center;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 25px;
}

.why-box {
    background: #ffffff;

    padding: 25px 18px;

    border-radius: 6px;

    border: 1px solid #dce5ea;
}

.why-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: auto auto 16px;

    border-radius: 50%;

    background: #f08a24;

    color: #ffffff;

    font-weight: bold;
}

.why-box h3 {
    color: #000;

    font-size: 15px;

    margin-bottom: 6px;
}

.why-box p {
    font-size: 15px;

    color: #69747d;
}


/* =========================================
   GALLERY
========================================= */

.gallery-section {
    background: #ffffff;

    padding: 45px 20px;

    text-align: center;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    max-width: 900px;

    margin: auto;
}

.gallery-item {
    height: 190px;

    overflow: hidden;

    border-radius: 5px;

    background: #e5e5e5;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* =========================================
   BOOKING
========================================= */

.booking-section {
    background: #edf5f8;

    padding: 45px 20px;

    text-align: center;
}

.booking-section > p {
    font-size: 15px;

    color: #69747d;

    margin-bottom: 20px;
}

.booking-form {
    max-width: 650px;

    margin: auto;

    background: #ffffff;

    padding: 25px;

    border-radius: 6px;

    box-shadow:
        0 5px 25px rgba(23, 63, 95, 0.08);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;

    border: 1px solid #d8e0e5;

    border-radius: 4px;

    padding: 11px 16px;

    margin-bottom: 16px;

    font-family: inherit;

    font-size: 16px;

    outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #f08a24;
}

.booking-form textarea {
    height: 100px;

    resize: vertical;
}

.booking-form button {
    width: 100%;

    border: 0;

    background: #000;

    color: #ffffff;

    padding: 16px;

    border-radius: 4px;

    font-family: inherit;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;
}

.booking-form button:hover {
    background: #102e46;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #000;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr 1.4fr 1fr;

    gap: 30px;

    padding: 35px 15px;
}

.footer-column h3 {
    font-size: 17px;

    margin-bottom: 16px;

    color: #ffffff;
}

.footer-column p {
    font-size: 14px;

    line-height: 1.6;

    color: #d8e4eb;

    margin-bottom: 8px;
}

.footer-column a {
    color: #ffffff;
    text-decoration:none;
}

.support-image {
    width: 100px;

    height: 100px;

    object-fit: contain;

    background: #ffffff;

    border-radius: 3px;

    margin-bottom: 16px;
}


/* =========================================
   SOCIAL
========================================= */

.social-links {
    display: flex;

    gap: 8px;

    margin-top: 16px;
}

.social-links a {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f08a24;

    color: #ffffff;

    border-radius: 50%;

    font-size: 15px;
}


/* =========================================
   CITIES
========================================= */

.city-text {
    max-width: 360px;
}


/* =========================================
   SUBSCRIBE
========================================= */

.subscribe-box {
    display: flex;

    margin-top: 15px;
}

.subscribe-box input {
    width: 100%;

    border: 0;

    padding: 14px;

    outline: none;

    font-size: 15px;
}

.subscribe-box button {
    border: 0;

    background: #f08a24;

    color: #ffffff;

    padding: 0 16px;

    font-size: 14px;

    cursor: pointer;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);

    padding: 15px;

    text-align: center;
}

.footer-bottom p {
    font-size: 14px;

    color: #c7d5de;

    margin-bottom: 4px;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp {
    position: fixed;

    right: 15px;

    top: 260px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25d366;

    color: #ffffff;

    border-radius: 7px;

    font-size: 22px;

    box-shadow:
        0 3px 16px rgba(0,0,0,0.2);

    z-index: 9999;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .website {
        max-width: 100%;
    }

    .service-cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .top-banner {
        height: 105px;
    }

    .hero h1 {
        font-size: 23px;
    }

    .hero p {
        font-size: 14px;
    }

    .main-content > h2 {
        font-size: 23px;
    }


    .service-intro {
        grid-template-columns: 1fr;
    }

    .service-image img {
        height: 250px;
    }


    .service-cards {
        grid-template-columns: 1fr;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .gallery-item {
        height: 150px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .city-text {
        max-width: 100%;
    }


    .whatsapp {
        right: 14px;

        top: 240px;

        width: 40px;
        height: 40px;
    }

}


/* =========================================
   VERY SMALL SCREEN
========================================= */

@media (max-width: 400px) {

    .logo-area {
        height: 50px;
    }

    .logo-area img {
        max-width: 85px;
    }

    .top-banner {
        height: 180px;
    }

    .hero {
        padding: 18px 14px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .main-content {
        padding: 14px 8px 20px;
    }

    .service-image img {
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 214px;
    }

}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 85px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.btn-whatsapp-pulse {
    background: #e63839;
    color: white;
    position: fixed;
    bottom: 85px;
    right: 20px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
   
}

.btn-whatsapp-pulse i.fa.fa-phone {
    transform: rotate(0deg);
}

  
.call-button .call-flex {
    position: fixed;
    background: #f08a24;
    color: #000000;
    width: 100%;
    padding: 10px 0;
    right: 0;
    bottom: 0;
    transition: background 0.5s;
    z-index: 9;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.call-button .call-flex p {
    margin: 0;
    margin-right: 15px;
}

.call-flex p, .call-flex a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.call-flex p:hover,  .call-flex a:hover {
    color: #fff;
    letter-spacing: 2px;
}



/* ================================
   MODERN HERO SECTION
================================ */

.hero-section {
    width: 100%;
    background: linear-gradient(135deg, #f4f9fc 0%, #ffffff 55%, #e9f7f6 100%);
    padding: 75px 20px;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #d9f0ed;
    top: -140px;
    right: -80px;
    opacity: 0.7;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #fff0df;
    bottom: -90px;
    left: -70px;
}

.hero-container {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */

.hero-content {
    width: 52%;
}

.hero-tag {
    display: inline-block;
    background: #e1f3f0;
    color: #087f76;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
    color: #172b3a;
}

.hero-content h1 strong {
    color: #078477;
}

.hero-content p {
    max-width: 590px;
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #61717d;
}

/* BUTTONS */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-call {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    background: #087f76;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(8, 127, 118, 0.20);
    transition: 0.3s ease;
}

.hero-call:hover {
    background: #056b63;
    transform: translateY(-2px);
}

.call-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 18px;
}

.hero-call small {
    display: block;
    font-size: 11px;
    opacity: 0.85;
    margin-bottom: 2px;
}

.hero-call span:last-child {
    font-size: 17px;
    font-weight: 700;
}

.hero-book {
    display: inline-block;
    padding: 16px 25px;
    border: 2px solid #087f76;
    border-radius: 8px;
    color: #087f76;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.hero-book:hover {
    background: #087f76;
    color: #fff;
}

/* FEATURES */

.hero-features {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #52636d;
    font-weight: 600;
}

.hero-features span {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dff3ef;
    color: #087f76;
    font-size: 12px;
    font-weight: bold;
}

/* RIGHT IMAGE */

.hero-image {
    width: 48%;
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 390px;
    height: 390px;
    object-fit: cover;
    border-radius: 35px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(35, 65, 75, 0.18);
}

/* IMAGE BACKGROUND CIRCLE */

.image-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #d9efeb;
    position: absolute;
    right: 25px;
    top: 10px;
}

/* FLOATING CARD */

.hero-card {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(30, 60, 70, 0.15);
}

.hero-card > span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0df;
    border-radius: 10px;
    font-size: 22px;
}

.hero-card strong {
    display: block;
    font-size: 14px;
    color: #253744;
    margin-bottom: 3px;
}

.hero-card small {
    color: #78858d;
    font-size: 12px;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .hero-container {
        flex-direction: column;
        gap: 45px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        min-height: 400px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .hero-section {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-call,
    .hero-book {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-image {
        min-height: 330px;
    }

    .hero-image img {
        width: 280px;
        height: 280px;
        border-radius: 25px;
    }

    .image-circle {
        width: 290px;
        height: 290px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5px;
        width: max-content;
    }
}