/* --------------------------------------------------
   Thai Harmony MK – Brand Styling
    Dark Mode Pink palette:
    Deep Pink: #ff1493
    Dark Background: #1a1a1a
    Darker Background: #0f0f0f
    Light Text: #f0f0f0
    Medium Pink: #ff69b4
-------------------------------------------------- */

/* Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #f0f0f0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
header {
    background: #1a1a1a;
    border-bottom: 2px solid #ff1493;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 10px;
}

.logo a {
    font-size: 1.7rem;
    font-weight: bold;
    color: #ff1493;
    letter-spacing: 0.04em;
}

.header-contact {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0f0f0;
    text-decoration: none;
    white-space: nowrap;
}

.phone-number:hover {
    color: #ff69b4;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f0f0f0;
    transition: 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

nav a.active,
nav a:hover {
    color: #ff69b4;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        align-items: center;
    }

    .logo {
        flex: 1;
    }

    .header-contact {
        width: 100%;
        order: 3;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    nav.nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        border-bottom: 2px solid #ff1493;
        padding: 20px;
        z-index: 100;
    }

    nav.nav-menu.open {
        display: block;
    }

    nav.nav-menu ul {
        flex-direction: column;
        gap: 16px;
    }
}

/* Hero */
.hero {
    background: url('img/carousel-thai.jpg') center/cover no-repeat, linear-gradient(135deg, #0f0f0f 0%, #ff1493 100%);
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Page Hero */
.page-hero {
    background: url('img/testimonial-bg.jpg') center/cover no-repeat, #0f0f0f;
    background-blend-mode: darken;
    padding: 50px 0;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: 2.2rem;
    color: #ff1493;
}

.page-hero p {
    margin: 0;
    color: #ff69b4;
}

/* Buttons */
.btn,
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: 0.25s ease;
    font-size: 1.08rem;
}

.btn {
    background: linear-gradient(90deg, #ff1493 60%, #ff69b4 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn:hover {
    background: #ff69b4;
}

.btn-outline {
    border: 2px solid #ff1493;
    color: #ff69b4;
    background: transparent;
}

.btn-outline:hover {
    background: #ff1493;
    color: #fff;
}

/* Sections */
section {
    padding: 35px 0;
}

h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #f0f0f0;
    font-size: 2rem;
}

.home-intro {
    text-align: center;
    max-width: 700px;
}

/* Grids & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #1a1a1a;
    padding: 26px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border: 1.5px solid #ff1493;
}

.card h2,
.card h3 {
    margin-top: 0;
    color: #ff69b4;
}

/* Two-column layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Treatment list */
.treatment-meta {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.treatment-meta li {
    padding: 6px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.95rem;
    color: #ff69b4;
    font-weight: 600;
}

.treatment-meta li:last-child {
    border-bottom: none;
}

/* Why Choose section (homepage) */
.why-choose {
    background: #0f0f0f;
    padding: 60px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.why-choose h2 {
    text-align: center;
    color: #ff1493;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #1a1a1a;
    border: 1.5px solid #2a2a2a;
    border-radius: 10px;
    padding: 22px 24px;
    transition: border-color 0.2s ease;
}

.why-item:hover {
    border-color: #ff1493;
}

.why-icon {
    color: #ff1493;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item strong {
    display: block;
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 6px;
}

.why-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.why-link {
    color: #ff69b4;
    text-decoration: none;
}

.why-link:hover {
    text-decoration: underline;
}

/* Treatments highlight (homepage) */
.treatments-highlight {
    background: #111;
    padding: 50px 0;
}

.treatments-highlight h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Price badge */
.price {
    display: inline-block;
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff1493;
}

/* Home CTA */
.home-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #ff1493;
    border-bottom: 1px solid #ff1493;
}

.home-cta h2 {
    margin-bottom: 10px;
}

.home-cta p {
    color: #ff69b4;
    margin-bottom: 25px;
}

/* Center utility */
.center {
    text-align: center;
    margin: 30px 0;
}

/* Testimonials */
.testimonials {
    padding: 40px 0;
}

.google-rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #1a1a1a;
    border: 1.5px solid #2a2a2a;
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 36px;
}

.google-stars {
    color: #ffd700;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.google-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f0f0f0;
}

.google-count {
    color: #aaa;
    font-size: 0.95rem;
}

.google-link {
    margin-left: auto;
    color: #ff69b4;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.google-link:hover {
    text-decoration: underline;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 22px;
}

.testimonial {
    background: #1a1a1a;
    border-left: 4px solid #ff1493;
    padding: 22px 26px;
    margin-bottom: 22px;
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    margin: 0 0 10px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial span {
    font-size: 0.88rem;
    color: #ff69b4;
}

.testimonial .stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

/* Footer */
footer {
    background: #0f0f0f;
    border-top: 2px solid #ff1493;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #ff1493;
    margin: 0 0 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.9;
    display: block;
}

.footer-col a:hover {
    color: #ff69b4;
}

.footer-col .btn {
    color: #fff;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Floating Book Now (mobile only) */
.float-book {
    display: none;
}

@media (max-width: 768px) {
    .float-book {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 200;
        background: linear-gradient(90deg, #ff1493 60%, #ff69b4 100%);
        color: #fff;
        font-weight: bold;
        font-size: 1rem;
        padding: 14px 22px;
        border-radius: 30px;
        box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
        text-decoration: none;
        transition: 0.25s ease;
    }

    .float-book:hover {
        background: #ff69b4;
        box-shadow: 0 6px 24px rgba(255, 20, 147, 0.7);
    }
}

/* Header icon buttons (Facebook, WhatsApp, SMS) */
.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #f0f0f0;
    transition: background 0.2s ease, border-color 0.2s ease;
    border: 1.5px solid #3a3a3a;
    flex-shrink: 0;
    text-decoration: none;
}

.header-icon-btn:hover {
    background: #ff1493;
    border-color: #ff1493;
    color: #fff;
}

.header-icon-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* Welcome section (homepage) */
.welcome-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #111 0%, #0f0f0f 100%);
}

.welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 55px;
    align-items: center;
}

.welcome-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    display: block;
}

.welcome-text h2 {
    font-size: 2.2rem;
    color: #ff1493;
    margin-top: 0;
    margin-bottom: 20px;
}

.welcome-text p {
    color: #ccc;
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.welcome-text .btn-outline {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .welcome-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Treatment cards with images (treatments page) */
.treatment-card {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border: 1.5px solid #ff1493;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.treatment-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.treatment-card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.treatment-card-body h2 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #ff69b4;
    font-size: 1.4rem;
}

.treatment-card-body > p {
    color: #ccc;
    margin-bottom: 14px;
    font-size: 0.97rem;
    line-height: 1.65;
}

.treatment-card-body .treatment-benefits {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #2a2a2a;
    font-size: 0.9rem;
    color: #aaa;
}

/* Credentials block (about page) */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin: 28px 0 32px;
}

.credential-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #1a1a1a;
    border: 1.5px solid #2a2a2a;
    border-radius: 8px;
    padding: 14px 18px;
}

.cred-icon {
    color: #ff1493;
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-badge strong {
    display: block;
    font-size: 0.95rem;
    color: #f0f0f0;
    margin-bottom: 3px;
}

.credential-badge span {
    font-size: 0.82rem;
    color: #888;
}

/* FAQ section */
.faq-section {
    background: #111;
    padding: 60px 0;
    border-top: 1px solid #2a2a2a;
}

.faq-section h2 {
    text-align: center;
    color: #ff1493;
    margin-bottom: 36px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #1a1a1a;
    border: 1.5px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: #ff1493;
}

.faq-item summary {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 1rem;
    color: #f0f0f0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: #ff1493;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 18px;
}

.faq-answer p {
    margin: 0;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #ff69b4;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* GDPR map consent */
.map-consent {
    background: #1a1a1a;
    border: 1.5px solid #ff1493;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 1em 0;
}

.map-consent p {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* Contact page layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
