/* Global Styles */
:root {
    --primary-color: #ff69b4;
    --secondary-color: #ffc0cb;
    --dark-color: #333;
    --light-color: #fff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Navigation */
.navbar {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    height: 70px; /* Fixed height for consistency */
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 24px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon .middle-bar {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: 5px;
}

.navbar-toggler-icon::after {
    bottom: 5px;
}

.navbar-toggler-icon .middle-bar {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .middle-bar {
    opacity: 0;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

/* Main content spacing */
main {
    padding-top: 70px; /* Match navbar height exactly */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin: 0;
    width: 100%;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.stats-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.stats-section img {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 100%;
    min-height: 400px;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-box h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.stats-section .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .navbar {
        height: 60px; /* Smaller height for mobile */
    }

    main {
        padding-top: 60px; /* Match mobile navbar height */
    }

    .hero-section {
        min-height: 80vh;
        padding: 1rem;
    }

    /* Ensure no horizontal overflow */
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    /* Fix potential bleeding issues */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-section h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .stats-section p {
        text-align: center;
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .stats-section img {
        margin: 2rem auto;
        min-height: 300px;
        width: 100%;
        max-width: 500px;
        display: block;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0.5rem 0;
    }

    .stat-box h2 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .stat-box p {
        font-size: 0.9rem;
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--secondary-color);
        color: var(--primary-color) !important;
    }

    .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .btn-primary {
        margin: 0.5rem 1.25rem;
        width: calc(100% - 2.5rem);
        text-align: center;
        padding: 0.6rem;
    }
}

/* Services Section */
#services {
    background-color: #fff2f6;
    padding: 5rem 0;
}

#services h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

#services .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--light-color);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.2);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    margin-top: auto;
}

.service-card .btn:hover {
    color: var(--primary-color);
    background: transparent;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1rem;
    }
    
    .service-card .card-body {
        padding: 1.5rem;
    }
    
    .service-card .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 5rem 0;
    background-color: white;
}

.welcome-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.welcome-section .subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.welcome-section .description {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #444;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff2f6;
    padding: 5rem 0;
}

.testimonials h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.google-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.google-reviews img {
    height: 30px;
}

.testimonials-carousel {
    padding: 1rem 0 3rem;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 350px;
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-card .author {
    color: #333;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-indicators {
    bottom: -10px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .google-reviews {
        margin-bottom: 1.5rem;
    }

    .testimonials-carousel {
        padding: 0 0 3rem;
    }

    .testimonials .container {
        padding: 0 1rem;
    }

    .testimonial-card {
        height: auto;
        min-height: 300px;
        margin: 0.5rem 0.25rem;
        padding: 1.2rem;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        -webkit-line-clamp: 8;
    }

    .testimonial-card .author {
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .carousel-indicators {
        bottom: -20px;
    }

    /* Fix for carousel items on mobile */
    .carousel-inner .row {
        margin-right: 0;
        margin-left: 0;
    }

    .carousel-item .col-md-4 {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0;
}

/* Therapists Section */
.therapists-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0;
}

.therapists-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.therapists-h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}
.therapist-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .therapists-container .row {
        margin-right: -15px;
        padding-bottom: 1rem;
    }
    
    .therapist-img {
        height: 400px;
    }
    
    /* Add some spacing between scrollable items */
    .therapists-container .col-10:not(:last-child) {
        margin-right: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .stat-box {
        margin: 0.5rem 0;
    }

    .section-title,
    #services h2,
    .welcome-section h2,
    .testimonials h2,
    .faq-section h2,
    .indulge-section h2,
    .therapists-h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--dark-color);
    text-align: center;
}

.faq-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    border-radius: 12px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fff2f6;
    color: var(--primary-color);
}

.faq-question::after {
    content: '↓';
    position: absolute;
    right: 2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] {
    background: #fff2f6;
    color: var(--primary-color);
    border-radius: 12px 12px 0 0;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem 2rem;
    color: #666;
    line-height: 1.8;
    background: white;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: darken(var(--primary-color), 10%);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-section .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-question::after {
        right: 1.2rem;
    }

    .faq-answer {
        padding: 1rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Indulge Section */
.indulge-section {
    background-color: var(--secondary-color);
    padding: 5rem 0;
    text-align: center;
    color: var(--dark-color);
}

.indulge-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.indulge-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #444;
}

.indulge-section .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.indulge-section .btn-outline-light {
    background: white;
    color: var(--dark-color);
    border-color: white;
}

.indulge-section .btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .indulge-section .btn {
        margin: 0.5rem;
        display: block;
        width: 100%;
    }

    .indulge-section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: white;
        border-radius: 0 0 20px 20px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--secondary-color);
        color: var(--primary-color) !important;
    }

    .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .btn-primary {
        margin: 0.5rem 1.25rem;
        width: calc(100% - 2.5rem);
        text-align: center;
        padding: 0.6rem;
    }
} 

 /* WhatsApp Button Styles */
 .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

.whatsapp-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: #22c55e;
}

/* Tooltip Styles */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    bottom: 5px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Show tooltip on hover */
.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
/* Call Button Styles */
.call-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.call-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 0 20px;
    text-decoration: none;
}

.call-button i {
    font-size: 24px;
    color: white;
    animation: shake 1.5s infinite;
    margin-right: 10px;
}

.call-number {
    color: white;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.pulse {
    color: rgba(13, 110, 253, 0);
}
/* Pulsing animation */
.pulse::before,
.pulse::after {
    content: '';
    position: absolute;
    border: 1px solid var(--primary-color);
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 1.5s linear infinite;
    opacity: 0;
}

.pulse::after {
    animation-delay: .5s;
}

/* Tooltip Styles */
.call-tooltip {
    position: absolute;
    left: 75px;
    bottom: 5px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.call-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }
}

/* Show tooltip on hover */
.call-button:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
    left: 85px;
}

.call-button a:hover {
    transform: scale(1.1);
    background-color: var(--primary-color)
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .call-button {
        bottom: 15px;
        left: 15px;
    }

    .call-button a {
        width: auto;
        height: 50px;
        padding: 0 15px;
    }

    .call-button i {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .call-number {
        font-size: 14px;
    }

    .call-tooltip {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    /* Global text scaling */
    body {
        font-size: 0.85rem;
    }

    /* Hero section adjustments */
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    /* Section titles */
    .section-title,
    #services h2,
    .welcome-section h2,
    .testimonials h2,
    .faq-section h2,
    .indulge-section h2,
    .therapists-h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    /* Stats section */
    .stats-section h2 {
        font-size: 1.75rem;
    }

    .stat-box h2 {
        font-size: 2.8rem;
    }

    .stat-box p {
        font-size: 0.9rem;
    }

    /* Services section */
    .service-card .card-title {
        font-size: 1.2rem;
    }

    .service-card .card-text {
        font-size: 0.85rem;
    }

    .service-card .btn {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.2rem;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-card .author {
        font-size: 0.9rem;
    }

    /* FAQ section */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 1rem 1.2rem;
    }

    /* Indulge section */
    .indulge-section p {
        font-size: 1rem;
    }

    /* Navigation */
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem !important;
    }

    .navbar .btn-primary {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

    /* Buttons */
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }

    /* Footer */
    footer {
        font-size: 0.85rem;
    }

    footer h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Section spacing adjustments */
    .stats-section,
    #services,
    .welcome-section,
    .testimonials,
    .faq-section,
    .indulge-section {
        padding: 2.5rem 0;  /* Reduced from 5rem/4rem to 2.5rem */
    }

    /* Adjust spacing between stats boxes */
    .stat-box {
        margin: 0.5rem 0;  /* Reduced from 1rem/1.5rem */
        padding: 1.5rem;   /* Reduced from 2rem */
    }

    /* Reduce spacing between service cards */
    .service-card {
        margin-bottom: 1rem;  /* Reduced from 2rem */
    }

    /* Adjust testimonial section spacing */
    .testimonials .container {
        padding: 0 1rem;
    }

    .google-reviews {
        margin-bottom: 1.5rem;  /* Reduced from 2rem/3rem */
    }

    /* Reduce FAQ item spacing */
    .faq-item {
        margin-bottom: 1rem;  /* Reduced from 1.5rem */
    }

    /* Adjust section title margins */
    .section-title,
    #services h2,
    .welcome-section h2,
    .testimonials h2,
    .faq-section h2,
    .indulge-section h2,
    .therapists-h2 {
        margin-bottom: 0.75rem;  /* Reduced from 1rem */
    }
}

/* Mobile Menu Improvements */
@media (max-width: 768px) {
    /* Navbar container adjustments */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 40px; /* Slightly smaller logo on mobile */
    }

    /* Hamburger button styling */
    .navbar-toggler {
        border: none;
        padding: 0.25rem;
        margin-right: 0.5rem;
        background: transparent;
    }

    /* Custom hamburger icon */
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        position: relative;
        transition: all 0.3s ease;
    }

    /* Mobile menu container */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 0.5rem;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    /* Menu items styling */
    .navbar-nav {
        padding: 0.5rem;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        background-color: var(--secondary-color);
        color: var(--primary-color) !important;
    }

    /* Call button in mobile menu */
    .navbar .btn-primary {
        margin: 0.75rem 0.5rem;
        width: calc(100% - 1rem);
        padding: 0.75rem;
        text-align: center;
        border-radius: 8px;
        font-weight: 500;
    }

    /* Add subtle dividers between items */
    .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Smooth animation for menu opening */
    .navbar-collapse {
        transform-origin: top;
        transition: all 0.3s ease;
    }

    .navbar-collapse.collapsing {
        opacity: 0;
        transform: translateY(-10px);
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }
}
