:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4e1072d *//* =========================
   BASIC RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #172033;
    background: #ffffff;
}

a {
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    height: 120px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    position: relative;
    z-index: 10;
}

.nav-container {
    width: 100%;
    max-width: 1450px;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    color: #172033;
    letter-spacing: -1.2px;
}


/* Logo Icon */

.logo-icon {
    width: 58px;
    height: 58px;
    position: relative;
}

.logo-icon span {
    position: absolute;
    width: 40px;
    height: 22px;

    left: 9px;

    border: 5px solid #12958e;
    transform: rotate(30deg) skewX(-5deg);
}

/* Top shape */
.logo-icon span:nth-child(1) {
    top: 4px;
}

/* Middle shape */
.logo-icon span:nth-child(2) {
    top: 19px;
}

/* Bottom shape */
.logo-icon span:nth-child(3) {
    top: 34px;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: 80px;
}

.navbar a {
    color: #4d5665;
    font-size: 20px;
    font-weight: 500;

    transition: 0.3s ease;
}

.navbar a:hover {
    color: #12958e;
}

.resources {
    display: flex;
    align-items: center;
    gap: 8px;
}

.resources i {
    font-size: 13px;
}


/* =========================
   RIGHT HEADER
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 38px;
}


/* Moon Button */

.theme-btn {
    border: none;
    background: transparent;
    cursor: pointer;

    font-size: 25px;
    color: #4d5665;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Book Now */

.book-btn {
    background: #12958e;
    color: white;

    font-size: 20px;
    font-weight: 600;

    padding: 17px 30px;

    border-radius: 12px;

    transition: 0.3s ease;
}

.book-btn:hover {
    background: #0d7f79;
    transform: translateY(-2px);
}


/* =========================
   CONTACT HERO
========================= */

.contact-hero {
    width: 100%;
    min-height: 515px;

    background:
        linear-gradient(
            135deg,
            #159890 0%,
            #138d86 35%,
            #116e69 100%
        );

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
    overflow: hidden;
}


/* Subtle background effect */

.contact-hero::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    left: -250px;
    top: 80px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 50%;

    filter: blur(30px);
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 2;

    margin-top: -5px;
}

.hero-content h1 {
    color: #ffffff;

    font-size: 72px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -2.5px;

    margin-bottom: 25px;
}

.hero-content p {
    color: #d9f4f1;

    font-size: 28px;
    line-height: 1.45;

    font-weight: 400;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 25px;
        margin-left: 20px;
    }

    .navbar a {
        font-size: 17px;
    }

    .logo-text {
        font-size: 30px;
    }

    .header-right {
        gap: 20px;
    }

    .book-btn {
        font-size: 17px;
        padding: 14px 22px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content p {
        font-size: 23px;
    }
}


@media (max-width: 800px) {

    .header {
        height: auto;
        padding: 20px 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .navbar {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 0;
        gap: 20px;
        flex-wrap: wrap;
    }

    .header-right {
        margin-left: auto;
    }

    .contact-hero {
        min-height: 450px;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .desktop-break {
        display: none;
    }
}


@media (max-width: 500px) {

    .logo-text {
        font-size: 25px;
    }

    .logo-icon {
        transform: scale(0.8);
        transform-origin: left center;
        width: 48px;
    }

    .theme-btn {
        font-size: 21px;
    }

    .book-btn {
        font-size: 15px;
        padding: 12px 16px;
    }

    .navbar a {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-246afaa *//* =========================
   CONTACT FORM
========================= */

.contact-form-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 0;
}

.contact-form-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}


/* Heading */

.contact-form-container h2 {
    margin: 0 0 15px;

    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;

    color: #172033;
}


/* Description */

.form-description {
    margin: 0 0 48px;

    font-family: Arial, sans-serif;
    font-size: 23px;
    line-height: 1.45;

    color: #59636e;
}


/* =========================
   FORM
========================= */

form {
    width: 100%;
}


/* First + Last Name */

.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}


/* Form Group */

.form-group {
    margin-bottom: 32px;
}


/* Labels */

.form-group label {
    display: block;

    margin-bottom: 13px;

    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 500;

    color: #273444;
}


/* Inputs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #d8dce0;
    border-radius: 12px;

    background: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 21px;

    color: #273444;

    outline: none;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}


/* Text Inputs */

.form-group input {
    height: 68px;
    padding: 0 22px;
}


/* Select */

.form-group select {
    height: 64px;
    padding: 0 22px;

    cursor: pointer;
}


/* Textarea */

.form-group textarea {
    height: 200px;

    padding: 20px 22px;

    resize: vertical;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #858d96;
    opacity: 1;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #12958e;

    box-shadow: 0 0 0 3px rgba(18, 149, 142, 0.10);
}


/* =========================
   SEND BUTTON
========================= */

.send-btn {
    border: none;

    background: #12958e;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;

    padding: 18px 34px;

    border-radius: 11px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #0d7f79;
    transform: translateY(-2px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-container {
        padding: 0 20px;
    }

    .contact-form-container h2 {
        font-size: 28px;
    }

    .form-description {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .name-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 17px;
    }

    .form-group input,
    .form-group select {
        height: 58px;
        font-size: 18px;
    }

    .form-group textarea {
        height: 170px;
        font-size: 18px;
    }

    .send-btn {
        width: 100%;
        font-size: 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6864542 *//* =========================
   CONTACT INFORMATION
========================= */

.contact-info-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 0;
}

.contact-info-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}


/* =========================
   HEADING
========================= */

.contact-info-container h2 {
    margin: 0 0 15px;

    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;

    color: #172033;
}

.contact-intro {
    margin: 0 0 48px;

    font-family: Arial, sans-serif;
    font-size: 23px;
    line-height: 1.5;

    color: #59636e;
}


/* =========================
   CONTACT ITEM
========================= */

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 22px;

    margin-bottom: 42px;
}


/* =========================
   ICON BOX
========================= */

.contact-icon {
    width: 66px;
    height: 66px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #cdf8f1;

    border-radius: 11px;

    color: #159b94;

    font-size: 27px;
}


/* =========================
   DETAILS
========================= */

.contact-details {
    padding-top: 2px;
}

.contact-details h3 {
    margin: 0 0 6px;

    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;

    color: #172033;
}

.contact-details p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1.5;

    color: #59636e;
}


/* =========================
   MAP
========================= */

.map-container {
    width: 100%;
    height: 360px;

    margin-top: 60px;

    overflow: hidden;

    border-radius: 18px 18px 0 0;

    border: 1px solid #eeeeee;
}

.map-container iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================
   VIEW LARGER MAP
========================= */

.larger-map {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px 25px;

    background: #f5f7f8;

    border-radius: 0 0 18px 18px;

    color: #159b94;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.larger-map i {
    font-size: 18px;
}

.larger-map:hover {
    color: #0d7f79;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {

    .contact-info-section {
        padding: 50px 0;
    }

    .contact-info-container {
        padding: 0 20px;
    }

    .contact-info-container h2 {
        font-size: 29px;
    }

    .contact-intro {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .contact-item {
        gap: 16px;
        margin-bottom: 32px;
    }

    .contact-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .contact-details h3 {
        font-size: 19px;
    }

    .contact-details p {
        font-size: 18px;
    }

    .map-container {
        height: 300px;
        margin-top: 40px;
    }
}/* End custom CSS */