/* Custom CSS for Dantara Spa Website */

/* Global Styles */
:root {
    --primary: #4bb6c8; /* Teal/Aqua from logo */
    --primary-dark: #2a6d7c; /* Darker teal/blue */
    --secondary: #b2e0ea; /* Light aqua/blue */
    --background: #f6fbfc; /* Soft white/very light blue */
    --text-dark: #23404a; /* Deep blue for text */
    --text-light: #6a8a99;
    --white: #fff;
    --light-bg: #F8F9FA;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: #cbd6d6 !important;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-dark) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.08);
    border-radius: 10px;
    padding: 1rem 0;
}

.dropdown-header {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-bottom: 2px solid var(--primary);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateX(5px);
}

/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"] {
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(75, 182, 200, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/topgallery.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 182, 200, 0.13);
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.service-card h4 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: left;
}

.service-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Benefits List */
.benefits-list {
    margin: 2rem 0;
}

.benefits-list h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Treatment Info */
.treatment-info {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.info-item h5 {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #666;
}

/* Expectation Cards */
.expectation-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--secondary);
}

.expectation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 182, 200, 0.13);
}

.expectation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.expectation-card:hover .expectation-icon {
    transform: scale(1.1);
}

.expectation-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-card p {
    color: #666;
    line-height: 1.6;
}

/* Booking Section */
.booking-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--secondary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 182, 200, 0.13);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Gift Voucher Cards */
.voucher-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.voucher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 182, 200, 0.13);
}

.voucher-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.voucher-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.voucher-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.voucher-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.voucher-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.voucher-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--primary);
}

.voucher-content {
    padding: 2rem;
}

.voucher-includes h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.voucher-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.voucher-includes li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.voucher-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.voucher-duration {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.voucher-duration i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.voucher-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.voucher-footer {
    padding: 0 2rem 2rem;
}

/* Custom Voucher Card */
.custom-voucher-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    border: 2px solid var(--primary);
}

.custom-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.amount-option {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.amount-option:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Step Cards */
.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--secondary);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 182, 200, 0.13);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Options */
.contact-options {
    margin-top: 2rem;
}

.contact-option {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-option i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-option h5 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-option p {
    margin: 0;
    color: #666;
}

.contact-option a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-option a:hover {
    color: var(--primary);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.07);
    margin: 0 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-dark);
    font-weight: 600;
}

.stars {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(75, 182, 200, 0.25);
    background: #fff;
}

/* Footer */
footer {
    background: var(--primary-dark) !important;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer p {
    color: var(--secondary);
    line-height: 1.6;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .voucher-card.featured {
        transform: none;
    }
    
    .voucher-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .custom-amounts {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .expectation-card {
        padding: 1.5rem;
    }
    
    .expectation-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .voucher-header {
        padding: 1.5rem;
    }
    
    .voucher-content {
        padding: 1.5rem;
    }
    
    .voucher-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Megamenu Styles */
.megamenu {
    position: static !important;
}

.megamenu .dropdown-menu {
    width: 100%;
    border: 0;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.megamenu .dropdown-menu .container {
    padding: 2rem 0;
}

.megamenu .dropdown-menu .row {
    margin: 0;
}

.megamenu .dropdown-menu .col-lg-3 {
    padding: 0 1.5rem;
}

.megamenu .dropdown-menu .col-lg-6 {
    padding: 0 1.5rem;
}

.megamenu .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.megamenu .dropdown-item {
    padding: 0.75rem 0;
    color: #333;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
}

.megamenu .dropdown-item:hover {
    color: var(--primary-color);
    background: transparent;
    transform: translateX(5px);
}

.megamenu .dropdown-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.megamenu .dropdown-item:hover::before {
    width: 8px;
}

.megamenu .dropdown-divider {
    margin: 1rem 0;
    border-color: #e9ecef;
}

/* Service Category Cards */
.service-category {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.service-category h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category .service-list li {
    margin-bottom: 0.5rem;
}

.service-category .service-list a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.service-category .service-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Example: Add margin for icons in service-category headings */
.service-category h6 i {
    margin-right: 0.5rem;
    font-size: 1.1em;
    vertical-align: middle;
}

/* Featured Services Section */
.featured-services {
    background: linear-gradient(135deg, var(--primary-color) 0%, #20c997 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.featured-services h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-services .featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-services .featured-list li {
    margin-bottom: 0.75rem;
}

.featured-services .featured-list a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.featured-services .featured-list a:hover {
    color: white;
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    /* Force dropdown to be visible and properly positioned */
    .megamenu .dropdown-menu {
        position: static !important;
        float: none;
        width: 100% !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8f9fa !important;
        border-radius: 0 !important;
        padding: 0 !important;
        display: none;
    }
    
    .megamenu .dropdown-menu.show {
        display: block !important;
    }
    
    /* Ensure container and row don't interfere */
    .megamenu .dropdown-menu .container {
        padding: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .megamenu .dropdown-menu .row {
        margin: 0 !important;
        width: 100% !important;
    }
    
    /* Make all columns full width on mobile */
    .megamenu .dropdown-menu .col-lg-3,
    .megamenu .dropdown-menu .col-lg-6 {
        padding: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Simplify service categories for mobile */
    .service-category {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid #e9ecef !important;
        background: transparent !important;
        padding: 1rem !important;
        box-shadow: none !important;
    }
    
    .service-category:last-child {
        border-bottom: none !important;
    }
    
    .service-category h6 {
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
        color: var(--primary-dark) !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .service-category .service-list {
        margin: 0 !important;
        list-style: none !important;
        padding: 0 !important;
    }
    
    .service-category .service-list li {
        margin-bottom: 0.25rem !important;
    }
    
    .service-category .service-list a {
        padding: 0.5rem 0 !important;
        font-size: 0.85rem !important;
        color: #666 !important;
        text-decoration: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }
    
    .service-category .service-list a:hover {
        color: var(--primary) !important;
        transform: translateX(5px) !important;
    }
    
    /* Simplify featured services for mobile */
    .featured-services {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
        background: var(--primary) !important;
        padding: 1rem !important;
        color: white !important;
    }
    
    .featured-services h5 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        color: white !important;
        font-weight: 600 !important;
    }
    
    .featured-services .featured-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .featured-services .featured-list li {
        margin-bottom: 0.75rem !important;
    }
    
    .featured-services .featured-list a {
        font-size: 0.85rem !important;
        padding: 0.25rem 0 !important;
        color: rgba(255,255,255,0.9) !important;
        text-decoration: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }
    
    .featured-services .featured-list a:hover {
        color: white !important;
        transform: translateX(5px) !important;
    }
    
    /* Ensure dropdown toggle works properly */
    .dropdown-toggle[aria-expanded="true"] .fas.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-toggle .fas.fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    /* Better touch targets for mobile */
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #f8f9fa !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none !important;
    }
    
    /* Ensure buttons are properly sized */
    .navbar-nav .btn {
        margin: 0.5rem 1rem !important;
        width: calc(100% - 2rem) !important;
        text-align: center !important;
        min-height: 44px !important;
    }
    
    /* Ensure navbar collapse works properly */
    .navbar-collapse {
        background: white;
        border-top: 1px solid #e9ecef;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    /* Make dropdown toggle more visible */
    .dropdown-toggle::after {
        margin-left: 0.5em;
        vertical-align: middle;
    }
    
    /* Improve dropdown animation */
    .dropdown-menu {
        transition: all 0.3s ease;
        transform-origin: top;
    }
    
    .dropdown-menu.show {
        transform: scaleY(1);
        opacity: 1;
    }
    
    .dropdown-menu:not(.show) {
        transform: scaleY(0);
        opacity: 0;
    }
    
    /* Better spacing for mobile nav items */
    .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
    }
}

/* Animation for megamenu */
.megamenu .dropdown-menu {
    animation: slideDown 0.3s ease-out;
}

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

@media (max-width: 991.98px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1050;
    }
    .hero-section {
        padding-top: 80px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 70px !important;
    }
}

/* Center footer call-to-action buttons */
footer .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Center nav button only on mobile */
@media (max-width: 991.98px) {
    .navbar-nav .btn {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
        float: none;
    }
}

/* Remove centering from .service-buttons and .navbar-nav */
.service-buttons,
.navbar-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: left;
}

@media (max-width: 991.98px) {
    .dropdown-menu.mobile-dropdown {
        display: none !important;
        position: static !important;
        width: 100% !important;
        background: #fff !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0.5rem 0 !important;
        z-index: 1000 !important;
    }
    .dropdown-menu.mobile-dropdown.show {
        display: block !important;
    }
}

/* Membership Cards */
.membership-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 182, 200, 0.15);
    border-color: var(--primary);
}

.membership-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
    transform: scale(1.05);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.membership-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(75, 182, 200, 0.3);
}

.membership-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary);
}

.membership-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.price .amount {
    font-size: 3rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.sessions {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.membership-features {
    margin-bottom: 2rem;
}

.membership-features ul {
    list-style: none;
    padding: 0;
}

.membership-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.membership-features li i {
    color: var(--primary);
    font-size: 1rem;
}

.membership-cta {
    margin-top: auto;
}

.membership-benefits {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(75, 182, 200, 0.08);
    margin-top: 2rem;
}

.membership-benefits h4 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h6 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive adjustments for membership cards */
@media (max-width: 991.98px) {
    .membership-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .membership-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .membership-benefits {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .membership-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .membership-header h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 0.5rem;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .membership-card {
        padding: 1rem;
    }
    
    .price .amount {
        font-size: 2rem;
    }
    
    .membership-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .membership-benefits {
        padding: 1.5rem;
    }
} 