:root {
    --primary: #e3d200;
    --primary-dark: #bdab00;
    --secondary: #2C3E50;
    --light-bg: #F9F7F4;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #1E2A32;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.hide {
    display: none !important;
}

/* ===== OFFERS BANNER ===== */
.offers-banner {
    background-color: var(--primary);
    position: relative;
    height: 55px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 100%;
}
.offers-inner {
    width: 100%;
    overflow: hidden;
}
.offers-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}
.offer-carousel {
    min-width: 280px;
    text-align: center;
}
.offer-slide {
    display: inline-block;
}
.offer-text {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
}
.slide-out-left {
    animation: slideOutLeft 0.5s ease forwards;
}
.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}
@keyframes slideOutLeft {
    0% { transform: translateX(0); opacity: 1; filter: blur(0); }
    100% { transform: translateX(-100%); opacity: 0; filter: blur(4px); }
}
@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; filter: blur(4px); }
    100% { transform: translateX(0); opacity: 1; filter: blur(0); }
}

/* Large absolute logo */
.floating-logo {
    position: absolute;
    left: 10px;
    top: 0;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.large-logo-img {
    height: 82px;
    width: auto;
    background: white;
    border-radius: 12px;
    padding: 4px 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.large-logo-img:hover {
    transform: scale(1.02);
}
body.scrolled .floating-logo {
    opacity: 0;
    visibility: hidden;
}

/* ===== STICKY NAVIGATION BAR ===== */
.nav-bar {
    background: rgba(227, 210, 0, 0.5);
    height: 55px;
    display: flex;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}
body.scrolled .nav-bar {
    background: var(--primary);
}
.nav-container {
    width: 100%;
    padding: 0 20px;
}
.navbar {
    padding: 0 !important;
    margin: 0 !important;
    height: 55px;
    min-height: 55px;
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 55px;
}

/* Small logo inside nav bar */
.small-logo {
    position: absolute;
    left: 10px;
    display: none;
    align-items: center;
    z-index: 101;
}
body.scrolled .small-logo {
    display: flex;
}
.small-logo-img {
    height: 50px;
    width: auto;
    background: white;
    border-radius: 10px;
    padding: 2px 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-links-wrapper {
    flex: 0 1 auto;
}
.header-right {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 !important;
}
.dropdown-custom {
    position: relative;
}
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 160px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
    z-index: 10;
    text-align: left;
}
.dropdown-custom.open .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu-custom li a {
    display: block;
    padding: 0.3rem 1.2rem;
    color: var(--secondary);
    font-size: 0.8rem;
}
.dropdown-menu-custom li a:hover {
    background: var(--light-bg);
    color: var(--primary);
}
.nav-link {
    font-weight: 700 !important;
    font-size: 1.0rem !important;
    letter-spacing: 0.5px;
    color: var(--secondary) !important;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
}

/* ===== UNIFIED BOOK CONSULTATION BUTTON STYLES ===== */
.btn-book,
.btn-cta {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}
.btn-book:hover,
.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.8);
}

/* Hero info button - same but no border */
.btn-hero-info {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
    margin-top: 0.5rem;
}
.btn-hero-info:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.navbar-toggler {
    margin: 0;
    padding: 4px 8px;
}

/* ===== EXPERT SKIN CARE BANNER ===== */
.header-bottom {
    background: rgba(227, 210, 0, 0.25);
    height: 55px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-bottom .row {
    height: 55px;
    margin: 0 !important;
    align-items: center;
}
.header-bottom .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
}
.header-bottom img {
    height: 28px;
    width: auto;
}
.header-bottom span {
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--secondary);
    white-space: nowrap;
}

/* ===== HERO BANNER ===== */
#hero {
    background: url('./images/dermalign-Main.jpg') center/cover no-repeat;
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-overlay {
    background: rgba(44, 62, 80, 0.5);
    width: 100%;
    padding: 1rem 0;
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
}
.trustpilot-top-right {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 5;
}
.trustpilot-img {
    max-height: 70px;
    width: auto;
}
.hero-container {
    position: relative;
}
.hero-content h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
}
.hero-lead {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}
.hero-button-wrapper {
    margin-top: 0.5rem;
}

/* ===== SECTION TITLES (Inter font, reduced padding, no yellow line) ===== */
.section-title {
    font-family: var(--font-body);
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
}
/* No ::after – yellow line removed */

/* ===== TREATMENT CARDS ===== */
.treatment-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    width: 280px;
    margin: 0 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    padding-bottom: 15px;
}
.treatment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}
.treatment-card h5 {
    padding: 12px 12px 0 12px;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    background: transparent;
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.treatment-card:hover {
    transform: translateY(-6px);
}
.treatment-card:hover img {
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* ===== STATIC TECHNOLOGY BANNER ===== */
.static-tech-banner {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.static-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.static-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.static-logo-item img {
    max-height: 35px;
    width: auto;
    filter: grayscale(20%);
    transition: var(--transition);
}
.static-logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== BOTTOM CTA SECTION (button now styled above) ===== */
.cta-section {
    background: url('./images/Main-.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.cta-overlay {
    background: rgba(44, 62, 80, 0.5);
    width: 100%;
    padding: 3rem 0;
    text-align: center;
}
.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Hide Slick arrows */
.slick-prev, .slick-next {
    display: none !important;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #111;
    padding: 2rem 0;
    color: #aaa;
}
.footer-logo img {
    height: 45px;
}
.footer-social a {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 12px;
    display: inline-block;
}
.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
}
.footer-copyright p {
    margin: 0;
    color: #777;
    font-size: 0.8rem;
}

/* ===== FAQ STYLES ===== */
.faq-section-wrapper {
    margin-bottom: 2rem;
}
.faq-section-wrapper:last-child {
    margin-bottom: 0;
}
.faq-section-title {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #e3d200;
    display: inline-block;
    font-family: var(--font-body);
}
.faq-item {
    margin-bottom: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    transition: border-color 0.2s ease;
}
.faq-item:hover {
    border-color: #e3d200;
}
.faq-question {
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: background 0.2s ease;
    user-select: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
}
.faq-question:hover {
    background: #f0f0f0;
    color: #e3d200;
}
.faq-question .faq-chevron {
    transition: transform 0.3s ease;
    color: #6a7f9a;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.faq-question .faq-chevron.rotated {
    transform: rotate(180deg);
    color: #e3d200;
}
.faq-answer {
    padding: 0 1rem 0.75rem 1rem;
    color: #2C3E50;
    line-height: 1.7;
    display: none;
    font-size: 0.9rem;
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    font-family: var(--font-body);
}
.faq-answer.show {
    display: block;
    animation: faqSlideDown 0.3s ease forwards;
}
@keyframes faqSlideDown {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .floating-logo {
        display: none;
    }
    .small-logo {
        display: flex !important;
        position: relative;
        left: 0;
        margin-right: 15px;
    }
    .nav-row {
        justify-content: space-between;
    }
    .header-right {
        position: static;
    }
    .navbar-toggler {
        display: block;
    }
    .collapse:not(.show) {
        display: none;
    }
    .navbar-collapse {
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        background: rgba(227, 210, 0, 0.95);
        padding: 1rem;
        z-index: 1000;
    }
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        font-size: 0.9rem !important;
    }
    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
    }
    .header-bottom {
        height: auto;
        min-height: 55px;
        padding: 6px 0;
    }
    .header-bottom span {
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 1.6rem;
        white-space: normal;
    }
    .hero-overlay {
        padding: 0.8rem 0;
    }
    .static-logos-row {
        gap: 20px;
    }
    .trustpilot-img {
        max-height: 50px;
    }
    .section-title {
        font-size: 1.6rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
    .btn-book, .btn-cta {
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
    }
    .faq-section-title {
        font-size: 1.1rem;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    .faq-answer {
        font-size: 0.85rem;
        padding: 0 0.8rem 0.6rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 0.5rem 0;
    }
    #hero, .hero-overlay {
        min-height: 20vh;
    }
    .offers-banner {
        height: auto;
        min-height: 55px;
        padding: 6px 0;
    }
    .offer-text {
        font-size: 0.75rem;
    }
    .hero-content h1 {
        font-size: 1.3rem;
        white-space: normal;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .trustpilot-img {
        max-height: 40px;
    }
    .header-bottom span {
        font-size: 0.8rem;
    }
    .static-logos-row {
        flex-direction: column;
        gap: 15px;
    }
    .static-logo-item img {
        max-height: 30px;
    }
    .nav-link {
        font-size: 0.85rem !important;
    }
    .small-logo-img {
        height: 40px;
    }
    .btn-hero-info {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    .section-title {
        font-size: 1.4rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .btn-book, .btn-cta {
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
    }
    .faq-section-title {
        font-size: 1rem;
    }
    .faq-question {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
    }
    .faq-answer {
        font-size: 0.8rem;
        padding: 0 0.7rem 0.5rem 0.7rem;
    }
}