* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #2b0f2f;
}

/* ===================== */
/* NAVBAR               */
/* ===================== */

.navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 2px solid #f9f7f3;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    min-width: auto;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    color: #67047a;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f5c542;
    transform: scale(1.2);
}

.booking-section {
    display: flex;
    align-items: center;
    min-width: auto;
}

.booking-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f5c542 0%, #ffd86b 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #2b0f2f;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.3);
    text-decoration: none;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #ffd86b 0%, #f5c542 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.4);
}

.booking-btn i {
    font-size: 16px;
}

.booking-text {
    white-space: nowrap;
}

/* NAV LINKS DESKTOP */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 0 40px;
    padding-bottom: 0;
    justify-content: flex-start;
}

.nav-links a {
    text-decoration: none;
    color: #67047a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 15px 0;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 3px;
    background: #f5c542;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f5c542;
}

/* ===================== */
/* DROPDOWN (DESKTOP)    */
/* ===================== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    list-style: none;
    border: 1px solid #f9f7f3;
    z-index: 1000;
}
.dropdown-menu li:first-child a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 18px;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #67047a;
    text-decoration: none;
    border-bottom: 1px solid #f9f7f3;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f9f7f3;
    padding-left: 22px;
    color: #f5c542;
}

.dropdown-menu li a::after {
    display: none;
}

/* NESTED */

.nested-dropdown {
    position: relative;
}

.nested-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;

    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #f9f7f3;
    list-style: none;
    overflow: hidden;
    z-index: 1002;
}

.nested-dropdown:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* ===================== */
/* HERO SECTION         */
/* ===================== */

.hero-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-profile {
    text-align: center;
}

.hero-profile img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(245, 197, 66, 0.3);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.hero-profile img:hover {
    transform: scale(1.03);
}

.hero-profile h1 {
    font-size: 36px;
    color: #f5c542;
    margin-bottom: 10px;
}

.hero-profile p {
    font-size: 16px;
    color: #d0d0d0;
}

.hero-welcome h2 {
    font-size: 40px;
    color: #f5c542;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-welcome .location {
    font-size: 18px;
    color: #ffd86b;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-welcome .description {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.hero-welcome .description strong {
    color: #f5c542;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 40px;
    background: #f5c542;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
    display: inline-block;
}

.cta-button:hover {
    background: #ffd86b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 197, 66, 0.4);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid #f5c542;
    color: #f5c542;
}

.cta-button-secondary:hover {
    background: #f5c542;
    color: #2b0f2f;
    border-color: #ffd86b;
}

/* ===================== */
/* MODAL - GIFT VOUCHER  */
/* ===================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #ffffff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #67047a;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    color: #f5c542;
    transform: scale(1.2);
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-size: 32px;
    color: #67047a;
    margin-bottom: 25px;
    text-align: center;
}

.voucher-image {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.voucher-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.voucher-info {
    color: #666666;
}

.voucher-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f9f7f3;
    border-radius: 10px;
    border-left: 4px solid #f5c542;
    font-style: italic;
}

.voucher-info h3 {
    font-size: 20px;
    color: #67047a;
    margin-bottom: 15px;
    margin-top: 25px;
}

.voucher-benefits {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.voucher-benefits li {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.voucher-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5c542;
    font-weight: bold;
    font-size: 18px;
}

.voucher-details {
    background: #f9f7f3;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.voucher-details p {
    font-size: 15px;
    font-weight: 600;
    color: #67047a;
    margin-bottom: 12px;
}

.voucher-details ul {
    list-style: none;
    padding-left: 0;
}

.voucher-details li {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.voucher-details li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #f5c542;
    font-weight: bold;
}

.voucher-contact {
    margin-top: 25px;
    text-align: center;
}

.voucher-contact p {
    font-size: 15px;
    color: #67047a;
    font-weight: 600;
    margin-bottom: 15px;
}

.voucher-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #f5c542;
    color: #2b0f2f;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin: 8px;
    border: 2px solid #f5c542;
    cursor: pointer;
}

.voucher-btn:hover {
    background: #ffd86b;
    border-color: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.3);
}

.voucher-btn-secondary {
    background: transparent;
    color: #f5c542;
}

.voucher-btn-secondary:hover {
    background: #f5c542;
    color: #2b0f2f;
}

/* ===================== */
/* FEATURED TREATMENTS  */
/* ===================== */

.featured-treatments {
    padding: 80px 40px;
    background: #ffffff;
}

.featured-treatments h2 {
    font-size: 40px;
    color: #67047a;
    text-align: center;
    margin-bottom: 60px;
}

.featured-treatments h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f5c542;
    margin: 20px auto 0;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-card {
    background: #ffffff;
    border: 1px solid #f9f7f3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.treatment-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f9f7f3;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-content {
    padding: 30px;
}

.treatment-content h3 {
    font-size: 24px;
    color: #67047a;
    margin-bottom: 8px;
}

.treatment-subtitle {
    font-size: 14px;
    color: #f5c542;
    font-weight: 600;
    margin-bottom: 15px;
}

.treatment-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.treatment-price {
    font-size: 15px;
    color: #67047a;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f7f3;
}

.treatment-price strong {
    color: #f5c542;
    font-size: 16px;
}

.treatment-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #f5c542;
    color: #2b0f2f;
    flex: 1;
}

.btn-primary:hover {
    background: #ffd86b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f9f7f3;
    color: #67047a;
    flex: 1;
    border: 2px solid #f5c542;
}

.btn-secondary:hover {
    background: #f5c542;
    color: #2b0f2f;
}

/* ===================== */
/* PROFESSIONAL CARE     */
/* ===================== */

.professional-care {
    padding: 60px 40px;
    background: #ffffff;
}

.professional-care-header {
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    background: #f9f7f3;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.professional-care-header:hover {
    background: #efe9df;
}

.professional-care-header h2 {
    font-size: 36px;
    color: #67047a;
    margin: 0;
    font-weight: 700;
    flex: 1;
    text-align: center;
}

.professional-care-header h2::after {
    display: none;
}

.toggle-arrow {
    font-size: 24px;
    color: #f5c542;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.toggle-arrow.rotated {
    transform: rotate(180deg);
}

.professional-care-content {
    max-width: 900px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.professional-care-content.expanded {
    max-height: 5000px !important;
    opacity: 1 !important;
}

.professional-care-container {
    margin-bottom: 30px;
}

.professional-care-container h3 {
    font-size: 24px;
    color: #67047a;
    margin-bottom: 25px;
    line-height: 1.4;
}

.professional-care-container h4 {
    font-size: 18px;
    color: #67047a;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.professional-care-container strong {
    color: #f5c542;
    font-weight: 700;
}

.intro-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.intro-text strong {
    color: #f5c542;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin: 20px 0 25px 0;
    padding: 0;
}

.benefits-list li {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #f5c542;
    font-size: 18px;
    font-weight: bold;
}

.benefits-list strong {
    color: #f5c542;
}

.closing-text {
    font-size: 15px;
    color: #67047a;
    line-height: 1.8;
    margin-top: 25px;
    padding: 20px;
    background: #f9f7f3;
    border-radius: 8px;
    border-left: 4px solid #f5c542;
}

.closing-text strong {
    color: #67047a;
}

/* ===================== */
/* CAROUSEL - BRANDS     */
/* ===================== */

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 50px auto 0;
    padding: 40px 20px 20px;
    background: #ffffff;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f7f3;
    padding: 40px 20px;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(245, 197, 66, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2b0f2f;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: #f5c542;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

/* Dots Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #f5c542;
    border-color: #67047a;
    width: 12px;
    height: 12px;
}

.carousel-dot:hover {
    background: #f5c542;
}

/* ===================== */
/* DATA PROTECTION      */
/* ===================== */

.data-protection {
    padding: 30px 40px;
    background: #3d1445;
    text-align: center;
    color: #d0d0d0;
    font-size: 13px;
}

.data-protection a {
    color: #f5c542;
    text-decoration: none;
    transition: color 0.3s ease;
}

.data-protection a:hover {
    color: #ffd86b;
    text-decoration: underline;
}

/* ===================== */
/* FOOTER               */
/* ===================== */

footer {
    padding: 50px 40px;
    text-align: center;
    background: #2b0f2f;
    font-size: 14px;
    color: #b0b0b0;
    border-top: 1px solid #3d1445;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-content p {
    margin: 8px 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f5c542;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffd86b;
    text-decoration: underline;
}

/* ===================== */
/* HAMBURGER             */
/* ===================== */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #67047a;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-toggle.hidden {
    display: none !important;
}

.menu-toggle:hover {
    color: #f5c542;
}

/* CLOSE BUTTON */
.close-menu {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 32px;
    cursor: pointer;
    color: #f5c542;
    background: none;
    border: none;
    transition: color 0.3s ease;
    z-index: 2001;
    padding: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    color: #f5c542;
}

/* MOBILE BOOKING BUTTON */
.mobile-booking {
    display: none;
    width: 100%;
    border-top: 1px solid #f9f7f3;
    padding: 15px 0 !important;
}

.booking-btn-mobile {
    width: 90%;
    margin: 0 auto;
    justify-content: center;
}

/* ===================== */
/* MOBILE - RESPONSIVE   */
/* ===================== */

@media (max-width: 1024px) {

    .navbar-top {
        padding: 12px 20px;
    }

    .logo-img {
        height: 50px;
    }

    .social-icons {
        gap: 15px;
    }

    .booking-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .nav-links {
        padding: 0 20px;
        gap: 25px;
    }

    .hero-section {
        padding: 60px 20px;
        gap: 40px;
    }

    .featured-treatments {
        padding: 60px 20px;
    }

    .treatments-grid {
        gap: 30px;
    }

    .data-protection {
        padding: 25px 20px;
    }

    footer {
        padding: 40px 20px;
    }

}

@media (max-width: 768px) {

    .navbar-top {
        padding: 12px 15px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo-section {
        order: 1;
        flex-shrink: 0;
    }

    .logo-img {
        height: 45px;
    }

    .navbar-center {
        flex: 0;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .social-icons {
        gap: 12px;
        justify-content: center;
    }

    .social-icons a {
        font-size: 16px;
    }

    .booking-section {
        order: 2;
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        order: 4;
    }

    /* MOBILE SLIDE MENU */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 70px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
        gap: 0;
        transition: left 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
        border: none;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links.active ~ .close-menu {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        list-style: none;
    }

    .nav-links a {
        display: block;
        text-align: left;
        font-size: 15px;
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #f9f7f3;
        color: #67047a;
        text-decoration: none;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: #f9f7f3;
        color: #f5c542;
    }

    /* MOBILE BOOKING BUTTON */
    .mobile-booking {
        display: flex;
        width: 100%;
        border-top: 1px solid #f9f7f3;
        padding: 15px 0;
        justify-content: center;
    }

    .booking-btn-mobile {
        width: 90%;
        margin: 0 auto;
    }

    /* MOBILE DROPDOWN */
    .dropdown {
        width: 100%;
    }

    .dropdown > a {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #f9f7f3;
        gap: 10px;
    }

    .dropdown > a::before {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
        opacity: 0.5;
        flex-shrink: 0;
        order: 2;
        margin-left: auto;
    }

    .dropdown.active > a::before {
        transform: rotate(-180deg);
        opacity: 1;
    }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f9f7f3;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown.active > .dropdown-menu {
    max-height: 500px;
}

/* MOBILE NESTED */

.nested-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.nested-dropdown.active > .nested-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
}

.nested-dropdown > a {
    padding-left: 60px;
}

.nested-menu li a {
    padding-left: 80px;
}

.nested-dropdown > a::before {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0.5;
    position: absolute;
    right: 20px;
}

.nested-dropdown.active > a::before {
    transform: rotate(-180deg);
    opacity: 1;
}

    /* HERO SECTION MOBILE */
    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-profile img {
        max-width: 250px;
    }

    .hero-welcome h2 {
        font-size: 28px;
    }

    .hero-welcome .location {
        font-size: 15px;
    }

    .hero-welcome .description {
        font-size: 14px;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
    }

    /* MODAL MOBILE */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-body h2 {
        font-size: 24px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
    }

    .voucher-btn {
        padding: 12px 20px;
        font-size: 14px;
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    /* FEATURED TREATMENTS MOBILE */
    .featured-treatments {
        padding: 50px 20px;
    }

    .featured-treatments h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .treatment-image {
        height: 220px;
    }

    .treatment-content {
        padding: 20px;
    }

    .treatment-content h3 {
        font-size: 20px;
    }

    .treatment-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* CAROUSEL MOBILE */
    .carousel-container {
        max-width: 100%;
        padding: 30px 15px 15px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-slide {
        padding: 30px 15px;
    }

    .carousel-slide img {
        max-height: 250px;
    }

    /* PROFESSIONAL CARE MOBILE */
    .professional-care {
        padding: 40px 20px;
    }

    .professional-care-header {
        padding: 15px;
        margin: 0 auto 15px auto;
    }

    .professional-care-header h2 {
        font-size: 20px;
    }

    .toggle-arrow {
        font-size: 18px;
        margin-left: 10px;
    }

    .professional-care-container h3 {
        font-size: 18px;
    }

    .professional-care-container h4 {
        font-size: 16px;
    }

    .intro-text {
        font-size: 14px;
        text-align: left;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .data-protection {
        padding: 20px 15px;
        font-size: 12px;
    }

    footer {
        padding: 30px 15px;
    }

    .footer-links {
        gap: 20px;
    }

}

@media (max-width: 480px) {

    .navbar-top {
        padding: 10px 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-section {
        order: 1;
        flex-shrink: 0;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-center {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .social-icons {
        gap: 10px;
        justify-content: center;
    }

    .social-icons a {
        font-size: 14px;
    }

    .menu-toggle {
        font-size: 24px;
        order: 4;
    }

    .nav-links {
        width: 80%;
        max-width: 250px;
        padding-top: 60px;
    }

    .nav-links a {
        padding: 12px 15px;
        font-size: 13px;
    }

    .dropdown > a {
        padding: 12px 15px;
    }

    .dropdown-menu li a {
        padding: 10px 15px 10px 35px;
        font-size: 12px;
    }

    .nested-dropdown > a {
        padding: 10px 15px 10px 55px;
    }

    .nested-menu li a {
        padding: 8px 15px 8px 75px;
        font-size: 11px;
    }

    .mobile-booking {
        padding: 12px 0;
    }

    .booking-btn-mobile {
        width: 85%;
        padding: 10px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .booking-btn-mobile i {
        font-size: 15px;
    }

    /* HERO MOBILE */
    .hero-section {
        padding: 40px 15px;
        gap: 20px;
    }

    .hero-profile img {
        max-width: 200px;
    }

    .hero-profile h1 {
        font-size: 26px;
    }

    .hero-welcome h2 {
        font-size: 22px;
    }

    .hero-welcome .location {
        font-size: 14px;
    }

    .hero-welcome .description {
        font-size: 13px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* MODAL MOBILE */
    .modal-content {
        width: 100%;
        border-radius: 10px;
    }

    .modal-body {
        padding: 25px 15px;
    }

    .modal-body h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal-close {
        font-size: 24px;
    }

    .voucher-intro {
        font-size: 14px;
        padding: 12px 15px;
    }

    .voucher-info h3 {
        font-size: 18px;
    }

    .voucher-benefits li {
        font-size: 13px;
        padding-left: 22px;
    }

    .voucher-details {
        padding: 15px;
    }

    .voucher-details p {
        font-size: 14px;
    }

    .voucher-details li {
        font-size: 13px;
    }

    .voucher-contact p {
        font-size: 14px;
    }

    .voucher-btn {
        padding: 10px 15px;
        font-size: 13px;
        margin: 6px 0;
    }

    /* FEATURED TREATMENTS MOBILE */
    .featured-treatments h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .treatment-image {
        height: 180px;
    }

    .treatment-content {
        padding: 15px;
    }

    .treatment-content h3 {
        font-size: 18px;
    }

    .treatment-subtitle {
        font-size: 12px;
    }

    .treatment-description {
        font-size: 13px;
    }

    /* CAROUSEL MOBILE */
    .carousel-container {
        max-width: 100%;
        padding: 25px 10px 10px;
        margin: 30px auto 0;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }

    .carousel-slide {
        padding: 25px 10px;
    }

    .carousel-slide img {
        max-height: 200px;
    }

    .carousel-dots {
        gap: 6px;
        padding: 0 10px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    /* PROFESSIONAL CARE MOBILE */
    .professional-care {
        padding: 30px 15px;
    }

    .professional-care-header {
        padding: 12px;
        flex-direction: column;
        text-align: left;
        margin: 0 auto 15px auto;
    }

    .professional-care-header h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .toggle-arrow {
        font-size: 16px;
        margin-left: 0;
    }

    .professional-care-container h3 {
        font-size: 16px;
    }

    .professional-care-container h4 {
        font-size: 14px;
    }

    .intro-text {
        font-size: 13px;
    }

    .benefits-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .closing-text {
        font-size: 13px;
        padding: 15px;
    }

    footer {
        padding: 25px 10px;
    }

    .footer-content p {
        font-size: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }

}

/* ===================== */
/* UTILITY CLASSES      */
/* ===================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

.nav-link-voucher {
    color: #67047a;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 15px;
}

.nav-link-voucher:hover {
    color: #f5c542;
}

.nav-link-voucher i {
    font-size: 16px;
}


footer a{
    color: #b0b0b0;
    text-decoration: none;
}