/* Mindful Moves - Premium Wellness Styles */
:root {
    --primary: #7B8C73;
    /* Sage Green */
    --primary-light: #A4B29E;
    --secondary: #FFB6C1;
    /* Blush Pink */
    --bg-light: #FBF9F6;
    /* Soft Beige/Cream */
    --bg-white: #FFFFFF;
    --text-dark: #2C3E35;
    --text-light: #5A6D61;
    --gold: #D4AF37;
    --gold-light: #E7C978;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.mt-3 {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: white;
}

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #1ebe57;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 255, 255, 1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.tagline {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero .subheading {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge i {
    color: var(--gold);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image-placeholder {
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
    /* Standard rectangular */
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.image-note {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: none;
    /* Hide if image loads */
}

/* Fallback if image fails to load */
img:not([src]):not([srcset]) {
    visibility: hidden;
}

.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    /* Match the rectangle */
    z-index: 1;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image-inner {
    border-radius: 8px;
    /* Clean rectangle */
    overflow: hidden;
    background: transparent;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-list i {
    margin-top: 5px;
}

.philosophy-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.philosophy-box h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.philosophy-box p {
    font-style: italic;
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

/* Certifications */
.certification-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.cert-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.cert-image {
    background: #f5f5f5;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cert-image:hover img {
    transform: scale(1.05);
}

.cert-placeholder {
    color: #999;
    font-size: 0.9rem;
}

.cert-info {
    padding: 20px;
}

.cert-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cert-issuer {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cert-desc {
    margin: 0;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    animation: zoom 0.3s;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: #bbb;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Experience */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box p {
    margin: 0;
    font-weight: 500;
}

.experience-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.experience-col {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.clean-list {
    list-style: none;
}

.corporate-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.corporate-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Reviews */
.review-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.rating-display {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.rating-number {
    font-size: 4rem;
    font-weight: bold;
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1;
}

.rating-display .stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.review-card {
    min-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    scroll-snap-align: center;
    border: 1px solid #f0f0f0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-initials {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.reviewer-info h4 {
    margin: 0 0 3px 0;
    font-size: 1.1rem;
}

.reviewer-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.review-card .stars {
    margin-left: auto;
    color: var(--gold);
    font-size: 0.8rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin: 0;
}

/* Booking form */
.flex-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.booking-content {
    flex: 1;
}

.booking-form-container {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-details-box {
    margin-top: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-details-box p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-details-box p:last-child {
    margin-bottom: 0;
}

.elegant-form .form-group {
    margin-bottom: 20px;
}

.elegant-form .form-row {
    display: flex;
    gap: 20px;
}

.elegant-form .form-row .form-group {
    flex: 1;
}

.elegant-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.elegant-form input,
.elegant-form select,
.elegant-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.elegant-form input:focus,
.elegant-form select:focus,
.elegant-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(123, 140, 115, 0.1);
}

.w-100 {
    width: 100%;
}

.form-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col p {
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul.contact-list li {
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-col ul.contact-list i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.admin-tabs button {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
}

.admin-tabs button.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.admin-panel {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }

    .flex-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        padding-bottom: 20px;
    }
}