/* ====== Variables & Base Setup ====== */
:root {
    /* UI/UX Optimized Button Color: Vibrant Ruby Rose */
    --primary-color: #d81b60; 
    --primary-hover: #ad144d; 
    --secondary-color: #fca311; 
    --dark: #3a0d1c; 
    --light: #fcd5e3; 
    --white: #ffffff;
    --text: #4a1525; 
    --bg-color: #ffe6ee; 
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 50px;
}

.bg-light { background-color: var(--light); }
.dark-bg { background-color: var(--dark); color: var(--white); }

/* ====== Layout Grids ====== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ====== Buttons ====== */
.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
}

.btn-primary:hover { 
    background: var(--primary-hover); 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(216, 27, 96, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover { 
    background: var(--primary-color); 
    color: var(--white); 
}

/* ====== Navbar ====== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo { 
    display: flex; 
    align-items: center; 
}

.logo img { 
    max-height: 50px; 
    width: auto; 
    object-fit: contain; 
}

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a:hover { color: var(--primary-color); }

/* ====== Hero Section (Cinematic & Glassmorphism) ====== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('/img/hero-section-bg.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(58, 13, 28, 0.9) 0%, rgba(58, 13, 28, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 650px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUP 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-glass-card h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Georgia', serif; 
}

.hero-glass-card h1 .highlight {
    color: var(--secondary-color);
}

.hero-glass-card p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-glass:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.shadow-btn {
    box-shadow: 0 8px 25px rgba(216, 27, 96, 0.5);
}

.hero-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.stat i {
    color: var(--secondary-color);
    margin-right: 5px;
}

@keyframes fadeInUP {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== Services Cards ====== */
.service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content i { 
    font-size: 2rem; 
    color: var(--primary-color); 
    margin-bottom: 10px; 
}

.service-content h3 { 
    color: var(--dark); 
    margin-bottom: 10px; 
}

/* ====== Services Card Actions ====== */
.card-actions-row {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    width: 100%;
    gap: 15px; 
}

.btn-book-center {
    order: -1; 
    width: 100%; 
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px; 
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(216, 27, 96, 0.2);
    display: block;
}
.btn-book-center:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(216, 27, 96, 0.35);
}

.action-price {
    color: var(--dark); 
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-price i {
    color: var(--primary-color); 
    font-size: 0.8rem;
}

.action-price:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.action-read {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.action-read:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* SEO Details Wrapper */
.seo-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin 0.4s ease-out;
    font-size: 0.95rem;
    color: var(--text);
    text-align: left;
}

.seo-details.open {
    max-height: 300px;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* ====== Why Choose Us ====== */
.why-us {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us::before, .why-us::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatAesthetic 8s ease-in-out infinite alternate;
}

.why-us::before {
    width: 400px; 
    height: 400px;
    background: rgba(252, 163, 17, 0.25);
    top: -100px; 
    left: -100px;
}

.why-us::after {
    width: 500px; 
    height: 500px;
    background: rgba(216, 27, 96, 0.2);
    bottom: -150px; 
    right: -100px;
    animation-delay: -4s;
}

@keyframes floatAesthetic {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.1); }
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px; 
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 0 20px 40px rgba(216, 27, 96, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(252, 163, 17, 0.15); 
    transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.4);
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
    margin-bottom: 0 !important;
}

.feature-box:hover .feature-icon-wrapper i {
    color: var(--white);
}

.feature-box h4 {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

/* ====== Process Section ====== */
.process {
    background-color: var(--light); 
    position: relative;
    padding: 100px 0;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 6px 20px;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.process-badge i {
    color: var(--primary-color); 
    font-size: 1.1rem;
}

.process-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.process-subtitle {
    max-width: 750px;
    margin: 0 auto 50px;
    color: var(--text);
    font-size: 1.1rem;
}

.process-steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px; 
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px; 
    z-index: 2;
}

.icon-circle {
    width: 80px; 
    height: 80px;
    background-color: var(--dark); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(58, 13, 28, 0.15); 
}

.process-step h4 {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 600;
}

.process-arrow {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-top: 20px; 
}

.process-arrow svg path {
    stroke: var(--primary-color);
}
.process-arrow svg polygon {
    fill: var(--primary-color);
}

/* ====== Reviews ====== */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stars { color: var(--secondary-color); margin-bottom: 10px; }

/* ====== Counters ====== */
.counter-box { text-align: center; }
.counter-box h3 { display: inline-block; font-size: 3rem; color: var(--secondary-color); }
.counter-box span { font-size: 3rem; color: var(--secondary-color); }

/* ====== Brands ====== */
.brands-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    opacity: 0.8;
}

/* ====== FAQs ====== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text);
}
.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-color); }

/* ====== Contact Section ====== */
.contact-info .info-item { margin-bottom: 20px; font-size: 1.1rem; }
.contact-info i { color: var(--primary-color); margin-right: 10px; width: 20px; }
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.contact-form h3 { margin-bottom: 20px; color: var(--dark); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    color: var(--text);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
}
.contact-form button { width: 100%; }

.contact-info .info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ====== Footer ====== */
footer { background: var(--dark); color: #fcd5e3; padding: 60px 0 20px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--primary-color); }
.social-icons a { color: #fcd5e3; font-size: 1.5rem; margin-right: 15px; transition: var(--transition); }
.social-icons a:hover { color: var(--primary-color); transform: translateY(-3px); display: inline-block; }
.copyright { text-align: center; padding-top: 40px; border-top: 1px solid #4a1525; margin-top: 40px; }

/* ====== Floating WhatsApp ====== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: var(--transition);
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 6px 15px rgba(0,0,0,0.4); }

/* ====== About Us Section ====== */
.about {
    background-color: var(--white);
    border-radius: 15px;
    margin: 40px 20px;
    box-shadow: 0 5px 20px rgba(58, 13, 28, 0.05); 
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text);
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 500;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.15);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* ====== Gallery (Before & After) ====== */
.gallery-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(216, 27, 96, 0.15); 
}

.ba-images {
    display: flex;
    width: 100%;
}

.ba-img {
    width: 50%;
    position: relative;
    border-right: 2px solid var(--white); 
}

.ba-img:last-child {
    border-right: none;
}

.ba-img img {
    width: 100%;
    height: 180px; 
    object-fit: cover;
    display: block;
}

.ba-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-badge {
    background: rgba(58, 13, 28, 0.8); 
}

.after-badge {
    background: var(--primary-color); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.gallery-title {
    padding: 15px;
    color: var(--dark);
    font-size: 1.1rem;
    text-align: center;
    background: var(--white);
}

/* ====== Google Style Reviews Marquee ====== */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 40px 0;
    display: flex;
    background: transparent;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 50s linear infinite; 
}

.marquee-track:hover {
    animation-play-state: paused; 
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px; 
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.g-review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    min-width: 380px;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.g-review-card:hover {
    box-shadow: 0 8px 25px rgba(216, 27, 96, 0.08); 
}

.g-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.g-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
}

.g-user-info {
    flex-grow: 1;
    text-align: left;
}

.g-user-info h3 {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.g-user-info span {
    color: #888;
    font-size: 0.85rem;
}

.g-stars {
    color: #fbbc05; 
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: left;
}

.g-review-body {
    border-left: 2px solid #eaeaea; 
    padding-left: 15px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

/* ====== FAQ Section Aesthetic Image Setup ====== */
.faq-image-wrapper {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.aesthetic-img-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.aesthetic-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(216, 27, 96, 0.15);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphingBlob 8s ease-in-out infinite;
    transition: all 0.5s ease;
}

@keyframes morphingBlob {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: floatUpDown 3s ease-in-out infinite;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3);
}

.badge-text strong {
    display: block;
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

@keyframes floatUpDown {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ====== ScrollSpy Active Link Styling ====== */
.nav-links a {
    position: relative;
    transition: var(--transition);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================================= */
/* ====== RESPONSIVE FIXES (All Mobile Media Queries) ====== */
/* ========================================================= */

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .hero h1 { font-size: 3rem; }
    .process-title { font-size: 2rem; }
    .process-steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .process-step { width: 100%; margin-bottom: 10px; }
    .process-arrow {
        transform: rotate(90deg); 
        margin: 0 0 15px 0;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; }
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .process-steps-wrapper { flex-direction: column; }
    
    .about {
        margin: 20px 10px;
        padding: 40px 20px;
    }
    
    .ba-img img { height: 160px; }
    
    .g-review-card {
        min-width: 320px;
        max-width: 320px;
        padding: 20px;
    }
    
    .aesthetic-img-container img { height: 400px; }
    .floating-badge { left: 10px; bottom: 20px; padding: 12px 20px; }
    
    /* --- Services 2 In A Row (App Style Mobile View) --- */
    .services .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 12px 10px;
        border-radius: 12px;
    }
    
    .service-img {
        height: 110px;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .service-content {
        padding: 0;
    }
    
    .service-content i {
        font-size: 1.2rem;
        margin-bottom: 8px;
        display: block;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 6px;
        text-align: center;
    }
    
    .service-content > p {
        font-size: 0.75rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .card-actions-row {
        padding-top: 8px;
        gap: 8px;
    }
    
    .btn-book-center {
        padding: 6px;
        font-size: 0.8rem;
        border-radius: 30px;
    }
    
    .action-price, .action-read {
        font-size: 0.75rem;
    }
    
    .action-price i {
        font-size: 0.7rem;
    }
    
    .why-us .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 5px;
    }
    
    .why-us .feature-box {
        padding: 20px 10px;
        gap: 10px;
        border-radius: 15px;
    }
    
    .why-us .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .why-us .feature-icon-wrapper i { font-size: 1.3rem; }
    
    .why-us .feature-box h4 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

/* ====== Pricing Modal (Popup) Design ====== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: translateY(50px);
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    max-height: 85vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 1.2rem;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    background: #eee;
    width: 35px; height: 35px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
}
.close-modal:hover { color: var(--white); background: var(--primary-color); transform: rotate(90deg); }

.pricing-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}
.pricing-category:last-of-type { border-bottom: none; margin-bottom: 10px; padding-bottom: 0; }

.pricing-category h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.pricing-category h3 i { color: var(--secondary-color); font-size: 1.2rem; }

.pricing-category ul { list-style: none; padding: 0; }
.pricing-category li {
    display: flex; justify-content: space-between;
    font-size: 0.95rem; margin-bottom: 8px; color: var(--text);
}
.pricing-category li span:last-child {
    font-weight: 700; color: var(--primary-color); background: #ffe6ee; padding: 2px 8px; border-radius: 5px;
}

.pricing-note {
    background: var(--light);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--dark);
    margin-top: 10px;
    line-height: 1.5;
    border-left: 4px solid var(--secondary-color);
}