@charset "utf-8";

/* --- 1. RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
font-family: "Montserrat", sans-serif;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }


/* --- 3. TRANSPARENT NAVIGATION --- */
.navbar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
}

.logo-img {
    height: 100px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #F4A5A0;
	text-decoration: underline
}

.btn-nav {
    background: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
	color: #F4a5a0
}

/* --- 4. HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url("images/home-hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-left: 80px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    color: white;
    margin-top: 60px; 
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn-hero {
    background: white;
    color: #522662;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s;
	margin-bottom: 50px;
}

.btn-hero:hover {
    transform: scale(1.05);
	color: #F4A5A0
}

/* --- 5. FIXED FLOATING BUTTONS --- */
.floating-buttons {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: translateY(-3px);
}

.whatsapp {
    background: transparent; 
    padding: 0; 
    overflow: hidden; 
}

.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}/* CSS Document */

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

/* Reverses the order for the middle row */
.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.image-col, .text-col {
    flex: 1; /* Equal width columns */
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.image-col img {
    width: 100%;
    height: auto;
    display: block;
	margin-bottom: 0;
}

/* Content Typography */
.text-col h3 {
    color: #522662;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.text-col p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

/* Location List */
.custom-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.custom-list li {
    list-style: disc;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Secondary Button (Pink) */
.btn-secondary {
    background-color: #F4A5A0;
    color: white;
	border: 2px solid;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(240, 150, 150, 0.4);
}

.btn-secondary:hover {
    background-color: white;
	color: #F4A5A0;
    transform: translateY(-2px);
}

/* --- SHARED CONTAINER STYLES --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.section-title.white { color: white; }
.section-title.purple { color: var(--primary-purple); text-align: left; }



/* 1. Section Background & Spacing */
.treatments-section {
    background-color: #A394B4; 
    padding: 80px 0;
    overflow: hidden; 
}

/* 2. Container for Title & Carousel */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.section-title.white {
    color: white;
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px; 
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;      
    scroll-behavior: smooth;
    padding-bottom: 20px;  
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* 5. Treatment Card Styling */
.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    min-width: 350px;
    width: 350px;
    
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

/* Card Image Area */
.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content Area */
.card-content {
    padding: 25px;
    text-align: left;
}

.card-content h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 60px; 
}

/* Small Card Button */
.btn-card {
    background-color: #F4A5A0;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s;
}

.btn-card:hover {
   	background-color: white;
	color: #F4A5A0;
	border: 2px solid;
    transform: translateY(-2px);
}

/* WHY CHOOSE US  */
.why-choose-section {
    padding: 0;
    background-color: white;
	overflow: hidden;
}

.why-choose-section .zigzag-row {
    margin-bottom: 0; 
    padding: 20px 0; 
}

/* Feature Grid Container */
.features-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;      
    margin-top: 30px;
}

/* Individual Grey Box */
.feature-box {
    
    flex: 0 0 calc(50% - 10px); 
    background-color: #D9D4EC; 
    padding: 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    line-height: 1.4;
    transition: transform 0.2s; 
}

.feature-box:hover {
    transform: translateY(-2px); 
}


/* TESTIMONIALS SECTION */
.testimonials-section {
    /* Matches Treatment Section Background */
    background-color: #A394B4; 
    padding: 80px 0;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    min-width: 350px;
    width: 350px;
    
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-symbol {
    font-size: 4rem;
    color: #A394B4;
    opacity: 0.3;
    line-height: 0.5;
    font-family: serif;
    margin-bottom: 20px;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.reviewer-info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-top: auto;
}

.reviewer-info h5 {
    color: #522662;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stars {
    color: #FFD700; 
    letter-spacing: 2px;
}

.testimonial-line {
    width: 100%;
    max-width: 1300px;
    height: 2px;
    background-color: rgba(255,255,255, 0.5);
    margin: 50px auto 40px;
}

/* Action Buttons */
.testimonial-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-google {
    background: #F4A5A0;
    color: white;
	border: 2px solid #F4A5A0;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-white {
    background: white;
    color: #522662;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-google:hover {
	background: white;
	color: #F4A5A0;
	transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.btn-white:hover {
    background: #522662;
	color: white;
	transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ SECTION */
.faq-section {
    padding-top: 20px;
	padding-bottom: 0;
    background: white;
    overflow: hidden; 
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

/* Left Content */
.faq-content {
    flex: 1;
	padding-bottom: 80px;
}

.section-title.left-align {
    text-align: left;
    color: #522662;
    margin-bottom: 0;
    font-size: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #D9D4EC;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #D3CDE0;
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Hidden Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 25px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Active State (Added via JS) */
.faq-item.active .faq-answer {
    max-height: 150px; 
}
.faq-item.active .faq-question .icon {
    transform: rotate(45deg); 
}

/* Right Image */
.faq-image-box {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
	align-items: flex-end;
	height: auto;
	margin-bottom: 0
}

.faq-img {
    width: 100%;
	object-fit: cover;
    max-width: 600px;
    z-index: 1;
	display: block;
}


/* --- CAROUSEL BUTTONS  --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white; 
    color: #522662; 
    
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    border: none;
    
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #d9d4ec;
    color: white;
    transform: translateY(-50%) scale(1.1); 
}

/* Positioning */
.prev-btn { left: 0; }
.next-btn { right: 0; }


.site-footer {
    background-color: #a394b4; 
    color: white;
    padding: 70px 0 50px; 
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- COL 1: Brand --- */
.footer-logo {
    height: 100px; 
    margin-bottom: 25px;
    display: block;
}

.brand-desc {
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.8rem;
    max-width: 250px;
}

.copyright {
    opacity: 0.5;
    font-size: 0.75rem;
    margin-top: 20px;
}

/* --- COL 2: Subscribe & Socials --- */
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    margin-bottom: 40px; 
}

/* Social Icons (Using Images) */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    border: 1px solid rgba(255,255,255,0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    
    /* Centering the icon */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icons a img {
    width: 16px;  
    height: 16px;
    object-fit: contain;
    display: block;
}

.social-icons a:hover {
    background-color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* --- COL 3 & 4: Links --- */
.links-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.links-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.85rem;
    display: inline-block;
}

.links-col ul li a:hover {
    color: white;
    padding-left: 5px; 
}

/* --- COL 5: Badges --- */
.badges-col {
    display: flex;
    flex-direction: column;
}

.payment-icons {
    display: flex;
    gap: 5px; 
    align-items: center; 
}

.payment-icons img {
    margin: 0; 
    display: block;  
	width: auto;
	height: 50px; 
    margin-bottom: 10px;
}

.trust-badge img {
    height: 100px; 
    margin-bottom: 10px;
    display: block;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 900px) {
    /* FAQ Section: Stack image and content */
    .faq-container {
        flex-direction: column-reverse; /* Puts text above image */
        align-items: center;
        text-align: center;
    }
    
    .faq-content {
        padding-bottom: 40px;
    }

    /* Testimonial Buttons */
    .testimonial-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-desc {
        margin: 0 auto;
    }

    .social-icons, .payment-icons {
        justify-content: center;
    }
}

/* 2. SMARTPHONES (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px;
        flex-direction: column; 
        position: relative; 
        background: #a394b4; 
        gap: 15px;
    }

    .logo-img {
        height: 60px; 
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .btn-nav {
        display: flex; 
    }


    /* Hero Section: Center content */
    .hero {
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* ZigZag Rows: Force vertical stack */
    .zigzag-row, .zigzag-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .text-col {
        text-align: center;
    }

    .custom-list {
        display: inline-block;
        text-align: left;
    }

    /* Treatments & Testimonials: Hide desktop arrows for touch-swipe */
    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        padding: 0; /* Remove arrow space to let cards fill width */
    }

    .treatment-card, .testimonial-card {
        min-width: 280px; /* Smaller cards for phone screens */
        width: 280px;
    }

    /* Feature Grid: Full width boxes */
    .feature-box {
        flex: 0 0 100% !important;
    }

    .section-title.purple {
        text-align: center;
    }
}
