/* ============================================
   Soulmate Care - Purple & Pink Theme
   Colors: Purple #8B5CF6, Pink #EC4899
   Header: White background with subtle shadow
   Hero Overlay: Reduced opacity (35-40%)
   FULLY MOBILE RESPONSIVE NAVIGATION
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    60% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fadeUp { animation: fadeInUp 0.8s ease forwards; }
.animate-bounce { animation: bounceIn 0.6s ease forwards; }
.animate-slideLeft { animation: slideInLeft 0.6s ease forwards; }
.animate-slideRight { animation: slideInRight 0.6s ease forwards; }

/* ========== HEADER - LIGHTER VERSION ========== */
.main-header {
    background: #FFFFFF;
    color: #1F2937;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 25px rgba(139, 92, 246, 0.1);
    padding: 0.5rem 0;
}

/* Logo styling */
.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.75rem;
    margin: 0;
    color: #6B7280;
}

/* Desktop Navigation */
.navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.navigation li {
    position: relative;
}

.navigation li a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    transition: all 0.3s;
}

.navigation li.current > a,
.navigation li a:hover {
    color: #8B5CF6;
}

.navigation li a .fa-chevron-down {
    margin-left: 5px;
    font-size: 10px;
}

/* Dropdown menu - Desktop */
.navigation .dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.navigation .dropdown:hover ul {
    opacity: 1;
    visibility: visible;
}

.navigation .dropdown ul li {
    display: block;
}

.navigation .dropdown ul li a {
    color: #1F2937;
    padding: 8px 20px;
    display: block;
    font-size: 14px;
}

.navigation .dropdown ul li a:hover {
    background: linear-gradient(135deg, #F3E8FF, #FCE7F3);
    color: #8B5CF6;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    color: #8B5CF6;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    padding: 5px;
}

/* Book Now button */
.theme-btn {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.option-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-outer {
    flex: 1;
}

/* ========== MOBILE RESPONSIVE NAVIGATION ========== */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-outer {
        position: static;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        gap: 10px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navigation.show {
        display: flex;
    }
    
    .navigation li {
        width: 100%;
    }
    
    .navigation li a {
        display: block;
        padding: 12px 15px;
        color: #374151;
        border-radius: 10px;
    }
    
    .navigation li a:hover {
        background: #F3E8FF;
        color: #8B5CF6;
    }
    
    /* Mobile dropdown handling */
    .navigation .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .navigation .dropdown > a .fa-chevron-down {
        transition: transform 0.3s;
    }
    
    .navigation .dropdown.active > a .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .navigation .dropdown ul {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        background: #F9FAFB;
        margin-top: 5px;
        border-radius: 10px;
    }
    
    .navigation .dropdown.active ul {
        display: block;
    }
    
    .navigation .dropdown ul li a {
        padding: 10px 15px;
    }
    
    .option-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .link-btn {
        margin-top: 0;
    }
    
    .wrapper-box {
        position: relative;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
    }
    
    .testimonials-grid,
    .blog-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .btn {
        padding: 10px 24px;
    }
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Reduced overlay */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(236, 72, 153, 0.3));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.slide-content p {

    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 1.5rem;
    color: white;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    width: 30px;
    border-radius: 10px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 3px;
}

.section-header p {
    color: #6B7280;
    font-size: 1.1rem;
}

/* ========== SERVICES SECTION ========== */
.services-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
}

.service-card {
    flex: 0 0 calc(33.333% - 17px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #F3E8FF, #FCE7F3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B5CF6;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1F2937;
}

.service-content p {
    color: #6B7280;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-link {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #F3E8FF;
    border: none;
    cursor: pointer;

    font-size: 1.2rem;
    color: #8B5CF6;
    transition: all 0.3s;
}

.slider-nav-btn:hover {
    background: #8B5CF6;
    color: white;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #F3E8FF;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
    border-color: #8B5CF6;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #8B5CF6;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.testimonial-text {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 0.85rem;
    color: #8B5CF6;
}

.stars {
    color: #FBBF24;
    margin-bottom: 15px;
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #F3E8FF, #FCE7F3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B5CF6;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #8B5CF6;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: #1F2937;
    text-decoration: none;
}

.blog-content p {
    color: #6B7280;
    margin-bottom: 15px;
}

.read-more {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
}

/* ========== CAREERS ========== */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.career-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s;
    border-left: 4px solid #8B5CF6;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
}

.career-title {
    font-size: 1.3rem;
    color: #1F2937;
    margin-bottom: 10px;
}

.career-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #8B5CF6;
}

.career-description {
    color: #6B7280;
    margin-bottom: 20px;
}

.career-btn {
    background: none;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.career-btn:hover {
    background: #8B5CF6;
    color: white;
}

/* ========== FOOTER ========== */
.main-footer {
    background: linear-gradient(135deg, #1F2937, #111827);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #8B5CF6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #8B5CF6;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
}

/* ========== RESPONSIVE OVERRIDES ========== */
@media (max-width: 992px) {
    .service-card {
        flex: 0 0 calc(50% - 12.5px);
    }
    
    .option-wrapper {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}


/* ========== MOBILE MENU STYLES ========== */

/* Hide desktop menu on mobile */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}

/* Desktop menu visible by default */
.desktop-only {
    display: flex;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    border-radius: 0 20px 20px 0;
}

.mobile-menu-container.open {
    left: 0;
}

/* Mobile Navigation List */
.mobile-navigation {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-navigation li {
    border-bottom: 1px solid #F3E8FF;
}

.mobile-navigation li a {
    display: block;
    padding: 15px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-navigation li a:hover {
    background: #F3E8FF;
    color: #8B5CF6;
    padding-left: 20px;
}

/* Mobile Dropdown */
.mobile-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown > a i {
    transition: transform 0.3s;
}

.mobile-dropdown.active > a i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: #F9FAFB;
}

.mobile-submenu li a {
    padding-left: 35px;
    font-size: 0.9rem;
}

.mobile-submenu li a:hover {
    padding-left: 40px;
}

/* Mobile Book Button */
.mobile-book-btn {
    margin-top: 20px;
    border-bottom: none !important;
}

.mobile-theme-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.mobile-theme-btn:hover {
    background: linear-gradient(135deg, #7C3AED, #DB2777);
    color: white;
    padding-left: 15px !important;
}

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    color: #8B5CF6;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    padding: 10px;
    margin-left: auto;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Ensure wrapper-box has proper alignment */
.wrapper-box {
    position: relative;
}



/* Slider Management Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.data-table th {
    background: linear-gradient(135deg, #F3E8FF, #FCE7F3);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #8B5CF6;
}

.data-table td {
    padding: 12px;
    border-bottom: 1px solid #F3E8FF;
}

.data-table tr:hover {
    background: #F9FAFB;
}

.slider-list {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        padding: 8px;
        font-size: 12px;
    }
}

/* ========== PAGE TEMPLATE STYLES ========== */

.page-hero {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-content-section {
    padding: 60px 0;
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.page-text h2 {
    color: #1F2937;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.page-text h3 {
    color: #8B5CF6;
    margin: 25px 0 10px;
    font-size: 1.4rem;
}

.page-text p {
    margin-bottom: 20px;
}

.page-text ul, .page-text ol {
    margin: 15px 0 15px 25px;
}

.page-text li {
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0 30px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .page-content-section {
        padding: 40px 0;
    }
    .page-text {
        font-size: 0.95rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== BOOKING APPOINTMENT MODAL ========== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.booking-modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 0;
    width: 90%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #F3E8FF;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 24px 24px 0 0;
    color: white;
}

.booking-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.booking-modal-header h3 i {
    margin-right: 8px;
}

.booking-modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.booking-modal-close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.booking-modal-body {
    padding: 25px;
}

.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.9rem;
}

.booking-form-group .required {
    color: #EC4899;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background: #F9FAFB;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: white;
}

.booking-form-group input:hover,
.booking-form-group select:hover,
.booking-form-group textarea:hover {
    border-color: #8B5CF6;
}

.booking-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.booking-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.booking-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.booking-form-message.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.booking-form-message.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Date picker styling */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
    filter: invert(0.5);
}

/* Responsive */
@media (max-width: 600px) {
    .booking-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .booking-modal-header {
        padding: 15px 20px;
    }
    
    .booking-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .booking-modal-body {
        padding: 20px;
    }
}



        /* Arrow bullet style — right arrow */
        .arrow-list {
            list-style: none;      /* remove default bullets */
            padding-left: 0;
            margin: 1.5rem 0;
        }

        .arrow-list li {
            position: relative;
            padding-left: 1.8rem;  /* space for arrow */
            margin-bottom: 1.2rem;
        }

        /* Right arrow before each li */
        .arrow-list li::before {
            content: "→";          /* right arrow symbol */
            position: absolute;
            left: 0;
            top: 0;
            color: #2c7da0;        /* pleasant blue-gray */
            font-weight: bold;
            font-size: 1.2rem;
        }

   

        /* Make bold labels stand out */
        .arrow-list li b {
            color: #0b3b4f;
            font-size: 1.05rem;
        }

        /* small spacing for line breaks */
        .arrow-list li br {
            display: none;  /* to avoid double breaks if needed; but keep structure */
        }
        /* better: remove extra <br> after <b> if any */
        .arrow-list li br:first-of-type {
            display: inline; /* keep line break after bold title */
        }

:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-icon svg){width: 24px;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */

