@charset "utf-8";

/* --- 1. RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
}

h1 {
font-family: "Montserrat", sans-serif;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }


/* --- 3. TRANSPARENT NAVIGATION --- */
.navbar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
}

.logo-img {
    height: 100px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #F4A5A0;
	text-decoration: underline
}

.btn-nav {
    background: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
	color: #F4a5a0
}

/* --- 4. HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url("images/book-hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-left: 80px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    color: white;
    margin-top: 60px; 
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    line-height: 1.2;
    margin-bottom: 80px;
}


/* --- 5. FIXED FLOATING BUTTONS --- */
.floating-buttons {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: translateY(-3px);
}


.whatsapp {
    background: transparent; 
    padding: 0; 
    overflow: hidden; 
}

.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.contact-split-section {
    width: 100%;
    background-color: white;
}

.contact-container {
    display: flex;
    width: 100%;
    align-items: stretch; 
}

/* --- LEFT SIDE (Purple) --- */
.contact-left {
    background-color: #a394b4; 
    width: 40%; 
    padding: 80px 60px;
    color: white;
}

.contact-title {
    font-family: "Montserrat", sans-serif; 
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-title.white { color: white; }
.contact-title.purple { color: #522662; }

/* Flow Cards (The White Boxes) */
.flow-card {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 20px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flow-card h4 {
    color: #522662;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.separator-line {
    width: 100%;
    height: 2px;
    background-color: #D9D4EC;
    margin-bottom: 15px;
}

.flow-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* --- RIGHT SIDE (White Form) --- */
.contact-right {
    background-color: white;
    width: 60%; /* Right side takes 60% width */
    padding: 80px 80px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

/* Common Input Styles */
.booking-form input, 
.booking-form select, 
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 2.5px solid #F4A5A0;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    color: #333333;
    outline: none;
    background: white;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #aaa;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1; /* Both take equal width */
}

/* Submit Button */
.btn-submit {
    background-color: #F4A5A0;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    float: right; 
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
}

.btn-submit:hover {
    background-color: #522662;
	color: white;
    transform: translateY(-2px);
}


.cta-banner {
    background-color: #E6E0E9; 
    padding: 40px 0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h4 {
    color: #522662;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
}

.btn-white-cta {
    background-color: white;
    color: #583a5e; 
    padding: 12px 40px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.btn-white-cta:hover {
    transform: scale(1.05);
	background-color: #522662;
	color: white;
}


.site-footer {
    background-color: #a394b4; 
    color: white;
    padding: 70px 0 50px; 
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    /* 5-Column Grid Layout */
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- COL 1: Brand --- */
.footer-logo {
    height: 100px; 
    margin-bottom: 25px;
    display: block;
}

.brand-desc {
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.8rem;
    max-width: 250px;
}

.copyright {
    opacity: 0.5;
    font-size: 0.75rem;
    margin-top: 20px;
}

/* --- COL 2: Subscribe & Socials --- */
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    margin-bottom: 40px; 
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    border: 1px solid rgba(255,255,255,0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icons a img {
    width: 16px;  
    height: 16px;
    object-fit: contain;
    display: block;
}

.social-icons a:hover {
    background-color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* --- COL 3 & 4: Links --- */
.links-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.links-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.85rem;
    display: inline-block;
}

.links-col ul li a:hover {
    color: white;
    padding-left: 5px; 
}

/* --- COL 5: Badges --- */
.badges-col {
    display: flex;
    flex-direction: column;
}

.payment-icons {
    display: flex;
    gap: 5px; 
    align-items: center; 
}

.payment-icons img {
    margin: 0; 
    display: block;  
	width: auto;
	height: 50px; 
    margin-bottom: 10px;
}

.trust-badge img {
    height: 100px; 
    margin-bottom: 10px;
    display: block;
}


.modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content-simple {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 380px; 
    width: 85%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-out;
}

.modal-content-simple h3 {
    color: #583a5e; 
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
}

.modal-content-simple p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-modal {
    background: #F4A5A0; 
    color: white;
    border: none;
    padding: 10px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-modal:hover {
    background: #d67a7a;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- RESPONSIVE NAVIGATION --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column; 
        gap: 15px;
        position: relative; 
        background: #a394b4; 
    }

    .logo-img {
        height: 60px; 
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .btn-nav {
        display: flex; 
    }

    /* --- HERO SECTION MOBILE --- */
    .hero {
        padding-left: 20px; 
        padding-right: 20px;
        height: auto;
        min-height: 60vh;
        align-items: center; 
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem; 
    }

    .hero-content p {
        margin-bottom: 40px;
    }
}

/* --- CONTACT SECTION MOBILE --- */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column; 
    }
    
    .contact-left, .contact-right {
        width: 100%; 
        padding: 40px 20px; 
    }

    .contact-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .btn-submit {
        width: 100%; 
        float: none;
    }
}

/* --- BANNER & FOOTER MOBILE --- */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-text h4 {
        font-size: 1.1rem;
    }

    .footer-container {
		display: flex;
		flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .newsletter-form input {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}