/* --- ROOT VARIABLES & GLOBAL STYLES --- */
:root {
    --primary-color: #E91E63; /* A vibrant pink for accents */
    --secondary-color: #FFC107; /* A warm gold for offers */
    --dark-color: #333;
    --light-color: #fff;
    --grey-bg: #f9f9f9;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fullSection {
    padding: 80px 0;
}

.c-row > .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.c-column {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

.c-sub-heading h2 {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

/* --- BUTTON STYLES --- */
.btn-book-now a {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-book-now a {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}


.btn-book-now a:hover, .cliam-btn:hover {
    background-color: #c2185b;
    border-color: #c2185b;
}


/* --- HEADER --- */
#main-header {
    background: var(--light-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

#main-header > .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo img {
    max-height: 50px;
}

.header-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.header-menu a:hover, .header-menu a.active {
    color: var(--primary-color);
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.header-menu a:hover::after, .header-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}


/* --- HERO BANNER --- */
#home-banner-section { padding: 0; position: relative; color: var(--white); text-align: left; }
#home-banner img { width: 100%; height: 70vh; object-fit: cover; display: block; filter: brightness(1.0); }
#banner-content-wrapper { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); max-width: 550px; padding: 0 20px; }
#banner-content h2 { font-size: 45px; font-family: var(--playfair); line-height: 1.2; margin: 0 0 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
#banner-content h2 span { color: var(--primary-color); }
.countdown { margin-top: 20px; }
.counter { display: flex; gap: 10px; }
.counter__box { background: rgba(255, 255, 255, 0.9); color: var(--black); padding: 10px; border-radius: 10px; text-align: center; width: 70px; }
.counter__time { font-size: 28px; font-weight: 700; margin: 0; }
.counter__duration { font-size: 12px; text-transform: uppercase; margin: 0; }
#buttons-home { margin-top: 30px; display: flex; gap: 15px; }

.more-btn, .cliam-btn,.btns-book-now { padding: 12px 30px; border-radius: 5px; text-decoration: none; color: white; font-weight: bold; transition: all 0.3s; }
.more-btn { background-color: var(--secondary-color); }
.cliam-btn,.btns-book-now { background-color: var(--primary-color); }
.more-btn:hover, .cliam-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* --- ABOUT SECTION --- */
#about-section {
    background-color: var(--grey-bg);
}

#about-section .image-container img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.c-bullet-list ul {
    list-style: none;
    padding-left: 0;
}

.c-bullet-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.c-bullet-list li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* --- SERVICES SECTION --- */
.servives-box {
    background-color: var(--light-color);
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%; /* Ensure boxes are same height */
    display: flex;
    flex-direction: column;
}

.servives-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.servives-box img {
    max-width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover;
    border-radius: 5px;
    margin: 0 auto 20px;
}

.servives-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}


.servives-box .price {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.servives-box .price span {
    text-decoration: line-through;
    color: #888;
}

.servives-box .price h6 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: bold;
}

.servives-box .service-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    margin-top: auto; /* Pushes to bottom */
}
.servives-box a { background-color: var(--primary-color); color: var(--white); padding: 10px 20px; border-radius: 5px; text-decoration: none; transition: background-color 0.3s; }
.servives-box p { flex-grow: 1; margin-bottom: 15px; }
.servives-box span { text-decoration: line-through; color: #888; margin-right: 10px; }
.servives-box h6 { font-size: 24px; font-weight: 600; margin: 5px 0 15px; }
/* --- FORM SECTION --- */
#form-section {
    background-color: var(--grey-bg);
}

#form-section img {
    border-radius: 10px;
}

.form-control {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.5);
}

/* --- FOOTER --- */
#contact-section-footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 60px 0 40px;
}

#footer-menu-links h3 {
    color: var(--light-color);
    margin-bottom: 20px;
}

#footer-menu-links ul {
    list-style: none;
}

#footer-menu-links li {
    margin-bottom: 10px;
}

#footer-menu-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

#footer-menu-links a:hover {
    color: var(--light-color);
}

#footer-scial-links ul {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

#footer-scial-links a {
    color: var(--light-color);
    font-size: 1.5rem;
}

.section-vp-rWhzF0vH {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

/* --- RESPONSIVE STYLES --- */

/* Tablets and larger mobile devices */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    #banner-content h2 { font-size: 2.5rem; }

    .header-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .header-menu.active {
        display: flex;
    }

    .header-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .c-row > .inner {
        flex-direction: column;
        gap: 40px;
    }

    #about-section .c-row > .inner {
        flex-direction: column-reverse; /* Show image above text */
    }

    .servives-box {
        margin-bottom: 30px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .fullSection {
        padding: 50px 0;
    }

    .btn-book-now {
        display: none; /* Hide button in header to save space */
    }
    #home-banner img { width: 100%; height: 75vh; }
    #home-banner-section {
        height: 80vh;
    }

    #banner-content h2 {
        font-size: 1.8rem;
    }

    .counter {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .counter__box {
        min-width: 80px;
        padding: 10px;
    }
    .counter__time {
        font-size: 2rem;
    }

    #buttons-home {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    #about-section, #form-section, #contact-section-footer {
        text-align: center;
    }
    
    .c-bullet-list li {
        text-align: left;
    }

    #footer-menu-links ul, #footer-scial-links ul {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}