body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: #ffffff;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .nav-left .logo {
        font-size: 24px;
        font-weight: bold;
        color: #000000;
    }

    .nav-left a {
        text-decoration: none;
        color: #000000;
        font-size: 16px;
        padding: 20px;
    }

    .nav-left a:hover {
        background-color: #e1e2e3;
        transition: 1s;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang {
    font-weight: bold;
    color: #000000;
}

/* BUTTONS */
.btn-primary {
    background: #5fbf8f; 
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

    .btn-primary:hover {
        background: #4aa97b;
    }

    .btn-primary.small {
        padding: 8px 16px;
    }

    .btn-primary.wide {
        width: 100%;
        padding: 18px 10px;
        font-size: 18px;
    }

.campaign-section {
    margin: 0px 0;
}

.campaign-image {
    position: relative;
    height: 400px;
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.campaign-badge {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 260px;
    height: 260px;
    background: #f3e6c8;
    color: #000000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .campaign-badge strong {
        font-size: 22px;
    }

    .campaign-badge p {
        font-size: 16px;
        margin: 0;
    }

    .campaign-badge span {
        font-weight: bold;
        font-size: 18px;
    }

/* FEATURES SECTION */


.features {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #ffffff;
}

.feature-spacer {
    margin-top: 80px;
}

.feature-item {
    width: 30%;
    text-align: center;
    padding: 40px;
}

    .feature-item h3 {
        margin-top: 15px;
        font-size: 20px;
        color: #000000;
        margin-bottom: 14px;
    }

    .feature-item p {
        margin-top: 8px;
        color: #333333;
        font-size: 15px;
    }

    .feature-item:hover {
        background-color: #e1e2e3;
        transition: 1s;
    }

.booking-section {
    background-color: #ffffff; 
    padding: 90px 0;
    text-align: center;
}

    .booking-section h2 {
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 1px;
        line-height: 1.2;
        color: #0a1f44; 
        margin-bottom: 40px;
    }

.booking-btn {
    display: inline-block;
    background-color: #0a1f44;
    color: #ffffff;
    padding: 18px 44px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

    .booking-btn:hover {
        background-color: #122c63;
        transform: translateY(-2px);
    }

/* SERVICES SECTION */
.help-section {
    background: #f4efe9;
    padding: 80px 20px;
    margin-top: 0px;
    margin-bottom: 80px;
}

.help-container {
    max-width: 900px;
    margin: 0 auto;
}

    .help-container h2 {
        font-size: 36px;
        margin-bottom: 16px;
    }

.help-intro {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    max-width: 700px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .service-card h3 {
        margin: 0 0 6px 0;
        font-size: 18px;
    }

    .service-card p {
        margin: 0;
        font-size: 14px;
        color: #444;
    }

    .service-card span {
        font-size: 26px;
    }

    .service-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }


/* HEADER BASE */
.site-header {
    font-family: Arial, sans-serif;
    color: #111;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    background-color: #f4efe9;
}

    .site-header a {
        color: #1a1a1a;
        text-decoration: none;
        padding: 12px 18px;
        border-radius: 999px;
        transition: background-color 0.2s ease, color 0.2s ease;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
    }

.site-header a:hover {
    background-color: #e8e3db; 
    color: #000;
}


/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* TOP BAR */
.top-bar {
    padding-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0dbd3;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .header-flex {
        justify-content: center;
    }

    .brand {
        margin: 0 auto;
    }
}

.brand-logo {
    height: 136px; 
    width: auto;
    display: block;
}

/* TOP ACTIONS */
.top-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 18px;
}

.main-nav {
    background-color: #f4efe9;
    border-bottom: 1px solid #eaeaea;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
    height: 56px;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: #111;
        font-size: 18px;
        font-weight: 500;  
    }

.btn-book {
    margin-left: auto;
}

.btn-book {
    background-color: #f3e6c8; 
    font-weight: 600;
}

    .btn-book:hover {
        background-color: #ecd9a8; 
    }

@media (max-width: 768px) {

    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 6px;
        padding: 12px 0;
    }

        
        .nav-links a {
            width: 100%;
            padding: 14px 18px;
            font-size: 16px;
            align-content: center;
            align-items: center;
            text-align: center;
        }

    
    .container {
        padding: 0 20px;
    }
}



/*CONTACT*/
.contact-info {
    padding-bottom: 300px;
    
}

.contact-text {
    background: #f4efe9;
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-responsive {
        padding-bottom: 70%; 
    }

    .contact-info {
        padding-bottom: 80px;
    }
}

/* FEATURE ICONS */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000000;
}


.bg-sage {
    background-color: #dff3ea;
}

.bg-sky {
    background-color: #e6f2fb;
}

.bg-mint {
    background-color: #e9f7f2;
}

.bg-lavender {
    background-color: #f1ecfb;
}

/* FOOTER */
.footer {
    background-color: #f4efe9;
}

.footer-link {
    text-decoration: none;
    color: #000000;
}

    .footer-link:hover {
        text-decoration: underline;
    }

.about-us {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-us .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.about-us p {
    max-width: 850px;
    margin: 0 auto 16px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.booking-page {
    background-color: #f4efe9;
    padding: 80px 0;
    padding-bottom: 200px;
    margin-bottom: 0px;
}

.booking-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 50px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

    .booking-card h1 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #111;
    }

.booking-intro {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.booking-phone {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label {
        font-size: 14px;
        font-weight: 500;
        color: #222;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        border-radius: 12px;
        border: 1px solid #ddd;
        font-size: 15px;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c9c2b8;
            box-shadow: 0 0 0 2px rgba(201,194,184,0.25);
        }

.btn-submit {
    margin-top: 10px;
    background-color: #e6d6a8; 
    color: #111;
    border: none;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

    .btn-submit:hover {
        background-color: #dbc995;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .booking-card {
        padding: 35px 25px 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card h1 {
        font-size: 26px;
    }
}

.price-examples {
    background-color: #ffffff;
    padding: 80px 0;
}

.price-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f4ef;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 40px;
    gap: 40px;
}

.price-content {
    max-width: 520px;
}

    .price-content h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

.price-main {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-sub {
    font-size: 16px;
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

.price-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background-color: #e6d8a2; 
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .price-btn:hover {
        background-color: #dccb8a;
    }

.price-card img {
    width: 420px;
    max-width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.price-calculator {
    margin: 16px 0;
}

    .price-calculator label {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
    }

    .price-calculator input {
        width: 70px;
        padding: 0px 8px;
        border: 1px solid #d6cfc6;
        border-radius: 6px;
        font-size: 15px;
    }

    .price-calculator small {
        font-size: 13px;
        color: #454545;
        margin-top: 0px;
    }

.total-price {
    margin-top: 8px;
    font-size: 16px;
    margin-bottom: 0px;
}

@media (max-width: 900px) {
    .price-card {
        flex-direction: column-reverse;
        text-align: center;
    }

    .price-content {
        max-width: 100%;
    }

    .price-image img {
        width: 100%;
    }
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 600;
}

    .form-message.error {
        background-color: #ffe5e5;
        color: #b00020;
        border: 1px solid #ffb3b3;
    }

    .form-message.success {
        background-color: #e6f7ec;
        color: #1e7e34;
        border: 1px solid #a3e4b8;
    }


@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 90%;
    }

    .features {
        flex-direction: column;
        text-align: center;
    }

    .feature-item {
        width: 100%;
    }

    .service-card {
        min-width: 45%;
    }
}

@media (max-width: 700px) {
    .service-card {
        min-width: 80%;
    }
}
