/*
Theme Name: Twenty Twenty-Four Child
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Description: A premium child theme for Hasina Cupping Aesthetics clinic.
Author: Antigravity
Template: twentytwentyfour
Version: 1.2.1
Text Domain: twentytwentyfour-child
*/

/* Import Google Fonts for Services Page */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Cormorant+Garamond:ital,wght@0,600;1,600&display=swap');

/* Custom CSS tweaks for aesthetics */
.hasina-hero-cover {
    position: relative;
}

/* Subtle overlay styling for premium readability */
.hasina-hero-cover .wp-block-cover__inner-container {
    z-index: 2;
}

/* Service card hover effects for modern interactivity */
.wp-block-column.has-base-background-color {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(197, 168, 128, 0.15); /* Muted gold border */
}

.wp-block-column.has-base-background-color:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 39, 33, 0.08);
    border-color: rgba(197, 168, 128, 0.5); /* Highlight gold border on hover */
}

/* ==========================================================================
   Premium Smooth Animations
   ========================================================================== */

/* Page Load Fade-Down for Hero elements */
.hero-fade-down-1,
.hero-fade-down-2,
.hero-fade-down-3 {
    opacity: 0;
    will-change: opacity, transform;
}

.hero-fade-down-1 {
    animation: HasinaFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-fade-down-2 {
    animation: HasinaFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.45s;
}

.hero-fade-down-3 {
    animation: HasinaFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

@keyframes HasinaFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Triggered Reveal (Fade-Up) */
.hasina-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.hasina-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grid/Row Columns */
.hasina-reveal.hasina-stagger-1 {
    transition-delay: 0s;
}

.hasina-reveal.hasina-stagger-2 {
    transition-delay: 0.15s;
}

.hasina-reveal.hasina-stagger-3 {
    transition-delay: 0.3s;
}


/* ==========================================================================
   Services Page - Premium Accordion & Layout
   ========================================================================== */

/* Overall Section Background */
.hasina-services-page {
    background-color: #ffffff; /* very light cream could be #fcfbf9, but sticking to white for crispness */
}

/* Section Header */
.services-main-heading {
    font-family: 'Playfair Display', serif !important;
    font-size: 44px !important;
    color: #2A2108 !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
}

.services-subheading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #666666 !important;
    margin-bottom: 20px !important;
}

.services-divider {
    border: 0;
    height: 1px;
    background: #C5A870;
    width: 60px;
    margin: 0 auto;
}

/* Accordion Container */
.hasina-custom-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.hasina-premium-accordion {
    margin-bottom: 16px;
}

/* Hide default marker for all browsers */
.hasina-premium-accordion > summary {
    list-style: none;
}
.hasina-premium-accordion > summary::-webkit-details-marker {
    display: none;
}

/* Category Header Row */
.hasina-premium-accordion > summary {
    font-family: 'Playfair Display', serif;
    background-color: #F5F0E8;
    color: #2A2108;
    padding: 18px 24px;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 112, 0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
    .hasina-premium-accordion > summary {
        font-size: 18px;
    }
}

/* Custom Chevron Icon */
.hasina-premium-accordion > summary::after {
    content: "›";
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.4s ease-in-out;
}

/* Active/Open State for Header */
.hasina-premium-accordion[open] > summary {
    background-color: #C5A870;
    color: #ffffff;
}

/* Active/Open State for Chevron */
.hasina-premium-accordion[open] > summary::after {
    transform: rotate(90deg);
}

/* Accordion Content Animation Wrapper */
/* We prevent display:none by forcing block, but hide via max-height */
.hasina-premium-accordion > .accordion-content {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    padding: 0 10px; /* Keep horizontal padding inside to avoid jumping */
}

/* Open State for Content */
.hasina-premium-accordion[open] > .accordion-content {
    max-height: 800px; /* Large enough to hold the content */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Treatment List Items */
.hasina-premium-accordion .accordion-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hasina-premium-accordion .accordion-content li {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #4A4035;
    line-height: 1.9;
    padding: 12px 28px;
    border-bottom: 1px solid rgba(197, 168, 112, 0.15);
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.hasina-premium-accordion .accordion-content li:last-child {
    border-bottom: none;
}

/* Gold Dot Prefix */
.hasina-premium-accordion .accordion-content li::before {
    content: "•";
    color: #C5A870;
    font-size: 24px;
    line-height: 0;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    top: 1px;
}

/* Hover Effect for List Items */
.hasina-premium-accordion .accordion-content li:hover {
    background-color: #F0E8D5;
    cursor: pointer;
}

/* Hover Arrow for List Items */
.hasina-premium-accordion .accordion-content li::after {
    content: "→";
    position: absolute;
    right: 28px;
    color: #C5A870;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.hasina-premium-accordion .accordion-content li:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Booking Page - Selected Treatments UI
   ========================================================================== */
#selected-treatments-ui {
    background-color: #fcfbf9;
    padding: 24px 30px;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 112, 0.2);
    margin-bottom: 30px;
}

.selected-treatments-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2a2721;
    margin-bottom: 16px;
    font-weight: 700;
}

.treatments-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.treatment-chip {
    background-color: #C5A870;
    color: white;
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.treatment-chip .remove-chip {
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 0 4px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.treatment-chip .remove-chip:hover {
    background-color: rgba(0,0,0,0.1);
}

.add-more-treatments-btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #C5A870;
    color: #C5A870 !important;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.add-more-treatments-btn:hover {
    background-color: #C5A870;
    color: white !important;
}

/* Bottom CTA Button Styling */
.services-cta-button a {
    background-color: #C5A870 !important;
    color: #ffffff !important;
    transition: background-color 0.3s ease !important;
    font-family: 'Playfair Display', serif;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 15px 30px !important;
    border-radius: 4px;
}

.services-cta-button a:hover {
    background-color: #A3865C !important; /* Darkening effect */
    color: #ffffff !important;
}

/* Footer Notes Styling */
.services-footer-notes {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
}
.services-footer-notes p {
    color: #666666;
}
.services-footer-notes h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ==========================================================================
   Header & Logo Adjustments
   ========================================================================== */

/* Desktop Header Fixes (min-width: 769px) */
@media (min-width: 769px) {
    /* Make sure the full header width spans edge to edge */
    .wp-block-template-part header,
    header.wp-block-template-part {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 40px !important;
    }

    /* Left side (logo + title grouped together) */
    header .wp-block-group.alignwide > .wp-block-group:first-child {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
    }

    /* Logo Container */
    .wp-block-site-logo {
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Logo Size */
    .wp-block-site-logo img,
    .custom-logo {
        width: 60px !important;
        height: auto !important;
        max-width: none !important;
    }
    
    /* Site Title on same line */
    header .wp-block-site-title a,
    header .wp-block-site-title {
        display: inline-flex !important;
        align-items: center !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }
    
    /* Right side group (nav + button) */
    header .wp-block-group.alignwide > .wp-block-group:last-child {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 32px !important;
        margin-left: auto !important;
        padding-right: 0 !important;
    }

    /* Navigation block */
    header .wp-block-navigation {
        margin-left: auto !important;
    }
    
    /* Nav Links */
    header .wp-block-navigation-item a,
    header .wp-block-navigation-link a {
        font-size: 18px !important;
        font-weight: 500 !important;
    }
    
    /* Book Appointment Button */
    header .wp-block-button__link {
        font-size: 16px !important;
        padding: 12px 22px !important;
    }
    
    /* Header Whitespace Reduction & Alignment */
    header.wp-block-group.alignfull {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
    }
    header .wp-block-group.alignwide {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 40px !important;
        box-sizing: border-box !important;
    }
}

/* Mobile Header & General Mobile Fixes */
@media (max-width: 768px) {
    /* Flatten the DOM structure for flexbox layout */
    header .wp-block-group.alignwide > .wp-block-group {
        display: contents !important;
    }

    /* Header Container */
    header.wp-block-group.alignfull {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    header .wp-block-group.alignwide {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 12px 16px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    /* Hide Logo on mobile */
    .wp-block-site-logo,
    .wp-block-site-logo img,
    .wp-block-site-logo a,
    .custom-logo,
    .custom-logo-link {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 0 !important;
        flex: 0 0 0 !important;
    }
    
    /* Site Title */
    header .wp-block-site-title {
        display: block !important;
        visibility: visible !important;
        margin: 0 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex-grow: 1 !important;
    }
    header .wp-block-site-title a {
        font-size: 16px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        display: block !important;
    }
    header .wp-block-site-title a::after {
        content: none !important;
    }
    
    /* Hide navigation menu (hamburger) on mobile */
    header .wp-block-navigation {
        display: none !important;
    }
    
    /* Book Appointment Button */
    header .wp-block-buttons {
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    header .wp-block-button__link {
        padding: 8px 14px !important;
        font-size: 0 !important; /* Hide original text 'Book an Appointment' */
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    /* Replace button text with "Book Now" on mobile */
    header .wp-block-button__link::after {
        content: "Book Now";
        font-size: 13px !important; /* Show Book Now */
    }

    /* Show mobile hamburger toggle and dropdown */
    .hasina-mobile-nav-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        color: #2A2108 !important;
        font-size: 22px !important;
        cursor: pointer !important;
        padding: 0 12px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        outline: none !important;
        line-height: 1 !important;
    }
    .hasina-mobile-nav-toggle .hamburger-icon {
        display: block !important;
        transition: transform 0.3s ease !important;
    }
    .hasina-mobile-nav-toggle.is-open .hamburger-icon {
        transform: rotate(90deg) !important;
    }

    .hasina-mobile-dropdown {
        display: block !important;
        width: 100% !important;
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        background: #F5F0E8 !important;
        box-sizing: border-box !important;
        transition: max-height 0.4s ease, opacity 0.3s ease, border-bottom-width 0.2s ease !important;
        border-bottom: 0 solid #C5A870 !important;
    }
    .hasina-mobile-dropdown.is-open {
        max-height: 400px !important;
        opacity: 1 !important;
        border-bottom: 2px solid #C5A870 !important;
    }
    .hasina-mobile-dropdown a {
        display: block !important;
        padding: 14px 24px !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #2A2108 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(197, 168, 112, 0.2) !important;
        transition: background-color 0.2s ease !important;
        box-sizing: border-box !important;
    }
    .hasina-mobile-dropdown a:last-child {
        border-bottom: none !important;
    }
    .hasina-mobile-dropdown a:hover,
    .hasina-mobile-dropdown a:active {
        background-color: #F0E8D5 !important;
    }

    /* Global mobile fixes */
    html, body {
        overflow-x: hidden !important;
        font-size: 16px !important; /* Ensure min 16px body text */
    }
    
    /* Ensure wide blocks don't cause horizontal scroll */
    .alignwide, .alignfull {
        max-width: 100vw !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    /* Footer mobile columns layout */
    footer.wp-block-group .wp-block-columns {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    footer.wp-block-group .wp-block-column:nth-child(1) {
        flex-basis: 100% !important;
        width: 100% !important;
    }
    footer.wp-block-group .wp-block-column:nth-child(2) {
        display: none !important;
    }
    footer.wp-block-group .wp-block-column:nth-child(3) {
        flex-basis: 100% !important;
        width: 100% !important;
    }
    footer.wp-block-group .wp-block-column:nth-child(3) > .wp-block-group {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 24px !important;
        width: 100% !important;
    }
    .wp-block-footer .wp-block-navigation,
    .wp-block-template-part footer .wp-block-navigation,
    footer.wp-block-group .wp-block-navigation {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    footer.wp-block-group .wp-block-navigation__responsive-container-open {
        display: none !important;
    }
    footer.wp-block-group .wp-block-navigation__responsive-container {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    footer.wp-block-group .wp-block-navigation__responsive-container-content,
    footer.wp-block-group .wp-block-navigation__container {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Hide Mobile Hamburger Toggle & Dropdown by default (Desktop) */
.hasina-mobile-nav-toggle {
    display: none !important;
}
.hasina-mobile-dropdown {
    display: none !important;
}

/* ==========================================================================
   Custom Branding & Logo Styles
   ========================================================================== */
.site-logo-desktop {
    height: 60px;
    width: auto;
    display: block;
}
.site-logo-mobile {
    display: none;
}
@media (max-width: 782px) {
    .site-logo-desktop { display: none; }
    .site-logo-mobile {
        display: block;
        height: 44px;
        width: auto;
    }
}
.site-footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

/* Blend header logo cleanly on cream background */
.wp-block-site-logo img {
  border-radius: 4px;
  background: transparent;
  mix-blend-mode: multiply;
}

/* Force header to extend fully edge-to-edge with no margins/paddings */
header.wp-block-group.alignfull,
.wp-block-template-part header {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Override any default theme layout/width constraints on template parts */
.wp-block-template-part,
header.wp-block-template-part {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ==========================================================================
   Hasina Clinic Lightbox Styles
   ========================================================================== */
.hasina-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hasina-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}
.hasina-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hasina-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.hasina-lightbox.is-active .hasina-lightbox-img {
    transform: scale(1);
}
.hasina-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s ease;
    outline: none;
}
.hasina-lightbox-close:hover {
    color: #C5A870;
}
@media (max-width: 768px) {
    .hasina-lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 36px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =========================================
   Gallery Page (ID: 61) Header Adjustments 
   ========================================= */

/* 1. Hide the default duplicate "Gallery" page title */
body.page-id-61 h1.wp-block-post-title {
    display: none !important;
}

/* 2. Increase the "Our Gallery" custom header text size */
/* Targets the first heading in the top block group */
body.page-id-61 .wp-block-group:first-of-type h1,
body.page-id-61 .wp-block-group:first-of-type h2 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important; 
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

/* 3. Increase the italicized subtitle text size */
/* Targets the first paragraph directly under the heading */
body.page-id-61 .wp-block-group:first-of-type p {
    font-size: 1.25rem !important; /* 20px */
    font-style: italic;
    margin-top: 0;
}

/* =========================================
   Why Choose Hasina - Card Layout & Animation
   ========================================= */

/* Ensure the columns have proper spacing */
.hasina-why-choose-cards {
    gap: 2rem !important; 
}

/* Base Card Styling: White box, padding, and subtle shadow */
.hasina-why-choose-cards > .wp-block-column {
    background-color: #ffffff;
    padding: 3rem 2.5rem; /* Increased padding to make the sectors look 'big' */
    border-radius: 4px; 
    border: 1px solid rgba(0,0,0,0.03); /* Matches subtle signature border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Animation: The Pop-Up Effect */
.hasina-why-choose-cards > .wp-block-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Typography Adjustments: Scale up the text to match the larger boxes */
.hasina-why-choose-cards > .wp-block-column h1,
.hasina-why-choose-cards > .wp-block-column h2,
.hasina-why-choose-cards > .wp-block-column h3,
.hasina-why-choose-cards > .wp-block-column h4,
.hasina-why-choose-cards > .wp-block-column strong {
    font-size: 1.5rem !important;
    margin-top: 0;
    margin-bottom: 1rem;
    display: block;
}

.hasina-why-choose-cards > .wp-block-column p {
    font-size: 1.125rem !important; /* Slightly larger paragraph text */
    line-height: 1.6;
}

/* =========================================
   HEADER & NAVIGATION FIXES (MOBILE & DESKTOP)
   ========================================= */

/* Header Base */
.hca-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F0E8;
    border-bottom: 1px solid #C5A870;
    padding: 12px 40px;
    position: relative;
    z-index: 9999; /* Fixes dropdown getting buried */
}
.hca-header-left, .hca-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hca-mobile-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
}
.hca-book-btn {
    background-color: #C5A870;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.hasina-mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #F5F0E8;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    z-index: 10000; /* Ensure links are clickable over hero */
}
.hasina-mobile-dropdown.active {
    display: flex !important;
}
.hasina-mobile-dropdown a {
    padding: 15px 0;
    color: #2A2108;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(197, 168, 112, 0.2);
}
.hasina-mobile-dropdown a:last-child {
    border-bottom: none;
}

/* Desktop */
@media (min-width: 769px) {
    .hasina-mobile-nav-toggle, .hasina-mobile-dropdown { display: none !important; }
}

/* Mobile */
@media (max-width: 768px) {
    .hca-main-header { padding: 10px 15px; }
    .hca-desktop-title, .hca-desktop-nav { display: none !important; }
    .hasina-mobile-nav-toggle {
        display: block !important;
        color: #2A2108 !important; /* Ensure it contrasts with the background */
        font-size: 30px !important;
        line-height: 1 !important;
        background: transparent !important;
        border: none !important;
        padding-left: 12px !important;
        padding-right: 0 !important;
        cursor: pointer;
    }
    .hca-book-btn { font-size: 13px; padding: 8px 12px; }
    .hca-header-right {
        gap: 12px !important; 
    }
}

/* =========================================
   SINGLE LOGO LOGIC (REVERTED)
   ========================================= */
.hca-desktop-logo {
    display: none !important; /* Clears out old swap logic */
}
.hca-mobile-logo {
    display: block !important;
    max-height: 40px !important;
    width: auto;
    border-radius: 50%;
}