/* ================= HERO SECTION (RESTORED) ================= */
.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); z-index: 1;
}
.hero-static-content {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; pointer-events: none;
}
.hero-text-wrapper {
    position: absolute; top: 30%; left: 5%; text-align: left; max-width: 900px;
    pointer-events: auto; /* Ensures button is clickable */
}
.hero-static-content h3 {
    font-family: 'Brush Script MT', cursive; font-size: 3rem; color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-static-content h1 {
    font-family: 'Times New Roman', Times, serif; font-weight: 700;
    font-size: 5.5rem; color: #ccb765; text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9); line-height: 1;
}
.carousel-indicators { z-index: 11; bottom: 15%; }
.carousel-indicators [data-bs-target] {
    background-color: #ccb765; width: 30px; height: 3px;
    margin: 0 3px; border: none; opacity: 0.7;
}
.carousel-indicators .active { opacity: 1; }
@media (max-width: 768px) {
    .hero-text-wrapper { left: 20px; right: 20px; top: 25%; }
    .hero-static-content h3 { font-size: 2rem; }
    .hero-static-content h1 { font-size: 3.5rem; }
}

/* ================= CTA & STRESS FREE (UPDATED) ================= */
.cta-section { padding: 3.75rem 1rem 4rem 1rem; text-align: center; font-weight: 600; }

/* Transparent Rectangle Button */
.btn-appointment {
    background-color: transparent;
    color: #ccb765;
    border: 2px solid #ccb765;
    border-radius: 0;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-appointment:hover {
    background-color: #ccb765;
    color: #fff;
    text-decoration: none;
}

/* UPDATED: Layout and Spacing */
.stress-free-section {
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 3rem;
    max-width: 1320px; 
    width: 100%; 
    margin: 10rem auto 4rem auto; 
    padding: 3rem 15px; 
}

/* UPDATED: Lifts text higher */
.stress-free-text { 
    flex: 1 1 400px; 
    text-align: left; 
    padding-bottom: 8rem; 
}

/* UPDATED: About Us Styling */
.stress-free-text h2 {
    font-size: 5.5rem;       
    font-weight: 700; 
    color: #ccb765;        
    text-transform: uppercase;
    text-align: right;     
    margin-top: 0;
    margin-bottom: 3rem;    
    line-height: 1;
}

.stress-free-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0; 
}

/* UPDATED: Image Container for Elevating Motion */
.stress-free-image {
    flex: 1 1 400px; 
    border-radius: 15px; 
    overflow: hidden;
    
    /* Initial Shadow */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transition for movement and shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease; 
}

.stress-free-image img { 
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}

/* ADDED: Elevating Motion (Move Up + Deeper Shadow) */
.stress-free-image:hover {
    transform: translateY(-15px); /* Moves the image up */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35); /* Deeper shadow simulates height */
}


/* ================= OFFERS SECTION (ADJUSTED TO ALIGN WITH CONTAINER) ================= */
.offer-section {
    max-width: 1320px; 
    width: 100%;
    margin: 6rem auto 4rem; 
    padding: 0 15px; 
}

.offer-section .subtitle h2 {
    font-weight: 700;
    font-size: 4rem;
    color: #ccb765;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0.5rem;
}

.offer-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
}

/* OFFERS: Visual Card */
.offer-visual-card {
    display: flex; flex-direction: column; border-radius: 8px; overflow: hidden;
    height: 500px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease; background-color: #fff;
}
.offer-visual-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }

/* OFFERS: Image Section */
.offer-image-section { 
    position: relative; flex-grow: 1; width: 100%; overflow: hidden; background-color: #222; 
}
.offer-image-section img { 
    width: 100%; height: 100%; object-fit: fill; transition: transform 0.5s ease; 
}
.offer-visual-card:hover .offer-image-section img { transform: scale(1.05); }

/* OFFERS: Title Overlay */
.offer-title-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center; z-index: 2;
    transition: opacity 0.3s ease; opacity: 1;
    background: rgba(0,0,0,0.2);
}
.offer-title-text {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2.2rem;
    color: #fff; text-transform: uppercase; text-shadow: 1px 1px 6px rgba(0,0,0,0.8); margin: 0;
}
.offer-visual-card:hover .offer-title-overlay { opacity: 0; }

/* OFFERS: Summary Overlay */
.offer-summary-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); display: flex; align-items: center; justify-content: center;
    padding: 2rem; text-align: center; z-index: 3; opacity: 0; transition: opacity 0.3s ease;
}
.offer-summary-text { color: #fff; font-size: 1.2rem; line-height: 1.5; font-weight: 500; }
.offer-visual-card:hover .offer-summary-overlay { opacity: 1; }

/* OFFERS: White Footer */
.offer-card-footer {
    height: 80px; background-color: #fff; display: flex; align-items: center;
    padding-left: 1.5rem; border-top: 1px solid #f0f0f0; flex-shrink: 0;
}
.view-details-link {
    font-size: 1rem; font-weight: 700; color: #ccb765; text-transform: uppercase;
    text-decoration: none; transition: color 0.3s ease;
}
.view-details-link i { margin-left: 5px; transition: margin-left 0.3s ease; }
.offer-visual-card:hover .view-details-link { color: #a38e47; }
.offer-visual-card:hover .view-details-link i { margin-left: 10px; }


/* ================= PROMOTIONS SECTION (ADJUSTED TO ALIGN WITH CONTAINER) ================= */
.promotions-section {
    max-width: 1320px; 
    width: 100%;
    margin: 10rem auto 4rem; 
    padding: 0 15px; 
}

.promotions-section .subtitle h2 {
    font-weight: 700;
    font-size: 4rem;
    color: #ccb765;
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 5rem; 
}

.promo-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 100%;
    text-align: left;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.promo-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    background-color: #222;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-img {
    transform: scale(1.05);
}

.promo-body {
    padding: 1.5rem;
    background: #fff;
    border-top: 4px solid #ccb765;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1; 
}

.promo-title { display: none; } 

.promo-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccb765; /* Gold Date */
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.promo-footer {
    margin-top: auto; 
}

/* RECTANGLE OUTLINE BUTTON */
.btn-book-outline {
    display: inline-block;
    background-color: transparent; 
    color: #ccb765; 
    border: 2px solid #ccb765; 
    padding: 8px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-book-outline:hover {
    background-color: #ccb765;
    color: #fff;
}


/* ================= TESTIMONIALS SECTION (RESTORED) ================= */

.testimonials-feedback {
    margin-top: 10rem; 
    padding-bottom: 5rem;
    width: 100%;
}

.testimonials_title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials_title h2 {
    font-weight: 700;
    font-size: 3.5rem;
    color: #ccb765;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: #333;
    font-weight: 400;
}

/* MAIN CARD CONTAINER */
.testimonial-card {
    background-color: #fff;
    border: 2px solid #ccb765;
    padding: 5rem 4rem; 
    min-height: 450px; 
    max-width: 1000px;
    margin: 0 auto; 
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.testimonial-img-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ccb765;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

.profile-icon-fallback {
    font-size: 6rem;
    color: #ccc;
    display: none; 
}

.testimonial-content {
    text-align: left;
    flex-grow: 1;
}

.testimonial-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.testimonial-details {
    display: block;
    font-size: 1rem;
    color: #ccb765;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.arrow-btn {
    background-color: #ccb765;
    border-radius: 50%;
    color: #fff;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.arrow-btn:hover { background-color: #a38e47; }
.arrow-left { left: -25px; }
.arrow-right { right: -25px; }

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        height: auto;
    }
    .testimonial-content { text-align: center; }
    .arrow-left { left: 0; }
    .arrow-right { right: 0; }
}


/* ================= CONTACT SECTION (UNIFIED GOLD COLOR) ================= */

.contact-section-home {
    margin-top: 10rem; 
    padding-bottom: 5rem;
    width: 100%;
}

.contact-main-title {
    color: #ccb765; /* Unified Gold */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 1.5rem;
}

/* THIN DIVIDER LINE */
.contact-divider {
    border: 0;
    border-top: 1px solid #ccb765; /* 1px Gold Line */
    opacity: 1;
    width: 100%;
    margin-bottom: 3rem;
}

.contact-sub-heading {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1rem;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: #ccb765; /* Unified Gold */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccb765; /* Unified Gold */
    color: #ccb765; /* Unified Gold */
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-btn:hover {
    background-color: #ccb765; /* Unified Gold */
    color: white;
}

.contact-form-card {
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border: 1px solid #eee;
}

.contact-input {
    border-radius: 5px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.contact-input:focus {
    border-color: #ccb765; /* Unified Gold */
    box-shadow: 0 0 0 0.25rem rgba(204, 183, 101, 0.25); /* Unified Gold Shadow */
    background-color: #fff;
}

.btn-contact-submit {
    background-color: #ccb765; /* Unified Gold */
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.btn-contact-submit:hover {
    background-color: #a38e47; /* Unified Darker Gold */
    color: white;
}