/*
Theme Name: Prestonderm
Theme URI: https://prestondermatology.com/
Author: Antigravity
Author URI: https://deepmind.google/
Description: A custom WordPress theme for Preston Dermatology.
Version: 1.0
Text Domain: prestonderm
*/

@font-face {
    font-family: 'Georgia Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Regular'), url('fonts/georgia.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Italic'), url('fonts/georgiai.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold'), url('fonts/georgiab.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold Italic'), url('fonts/georgiaz.woff') format('woff');
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #c9a961;
    --color-text-light: #ffffff;
    --color-text-muted: #e8e8e8;
    --color-border: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-primary);
    overflow-x: hidden;
    line-height: 1.6;
}
.welcome-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}
/* ============================================
   HEADER STYLES
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    /* padding: 0.75rem 0; */
    box-shadow: none !important;
    transition: all var(--transition-medium);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.logo img {
    height: 50px;
    width: fit-content;
    object-fit: contain;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Navigation Styles */
.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.8px;
    padding: 28px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width var(--transition-medium);
}

.has-megamenu::before {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 22px;
    background: #000;
    transition: width var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 1111;
}

.has-megamenu::after {
    content: '';
    position: absolute;
    top: 51px;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 41px;
    background: #fff;
    transition: height var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 1111;
}

.has-megamenu:hover::before,
.has-megamenu:hover::after {
    opacity: 1;
    visibility: visible;
}

.nav-link:hover {
    color: #000;
}

.has-megamenu:hover .nav-link::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.phone-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.phone-number:hover {
    color: var(--color-accent);
}

.btn-book {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 28px 1.75rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-book:hover {
    background: var(--color-secondary);
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-book:hover::before {
    left: 100%;
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh !important;
    min-height: 600px;
    overflow: hidden;
    margin-top: -1px;
}

.mobile-f {
    display: none !important;
}

.welcome-container {
    position: relative;
    z-index: 11;
}

.connected-border-wrapper::after {
    z-index: 1;
}

.hero-slider .slick-track {
    z-index: 1111 !important;
}

.hero-slider .slick-track,
.hero-slider .slick-list {
    z-index: 1111 !important;
    position: unset !important;
    overflow: visible;
}

.hero-slider {
    overflow: visible;
}

/* Force Slick wrapper elements to full height */
.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100% !important;
}

.hero-slide {
    position: relative;
    height: 100% !important;
    min-height: 600px !important;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    outline: none;
}

/* Individual slide backgrounds */
.slide-1 {
    background-image:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%),
        url('images/Mask-Group-1.png');
}

.slide-2 {
    background-image:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%),
        url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?q=80&w=2940&auto=format&fit=crop');
}

.slide-3 {
    background-image:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%),
        url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?q=80&w=2940&auto=format&fit=crop');
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    z-index: 11111;
    animation: fadeInUp 1s ease-out;
    height: 100%;
    display: grid;
    align-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    max-width: 1400px;
    padding-top: 80px;
    margin: auto;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 700px;
}

.hero-quote {
    margin: var(--spacing-xl) 0;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 700px;
    margin: 20px 0;
}

.hero-quote p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hero-author {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-learn-more {
    display: inline-block;
    margin-top: var(--spacing-lg);
    padding: 1rem;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    background: transparent;
    border: 2px solid var(--color-text-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-text-light);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn-learn-more:hover {
    color: var(--color-primary);
    border-color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-learn-more:hover::before {
    left: 0;
}

/* ============================================
   CONNECTED BORDER FRAME
   ============================================ */
.connected-border-wrapper {
    position: relative;

    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    margin: 0 auto;
    overflow: hidden;
}

.hero-slider .hero-content::after {
    border: 1px solid #ffffff;
    border-bottom: 0;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100vw - 6%);
    height: calc(100% - 120px);
    right: 0;
    margin: auto;
}

.welcome-section::after {
    border: 1px solid #000000;
    border-top: 0;
    content: '';
    position: absolute;
    top: 0px;
    left: 0 !important;
    width: 95%;
	height:96%;
/*     height: 93%; */
    /* background: pink; */
    z-index: 1;
    right: 0;
    margin: auto;
}


/* Remove default margins from sections inside wrapper */
.connected-border-wrapper .hero-slider {
    margin-top: 0;
    z-index: 111;
    /* NO border-bottom - sections flow seamlessly */
    position: unset;
}

.connected-border-wrapper .welcome-section {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    padding: 80px 40px;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
    position: relative;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    /* font-family: var(--font-heading); */
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
}

.welcome-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #000000;
    max-width: 100%;
    margin: 0 auto var(--spacing-xxl);
    letter-spacing: 0.3px;
    max-width: 1020px;
}

/* Award Badges */
.awards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xxl);
    flex-wrap: wrap;
    margin-top: 40px;
}

.award-image {
    width: 200px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    transition: filter var(--transition-medium);
    filter: grayscale(100%);
}

.award-image:hover {
    filter: unset;
}


/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
    background-color: #000000;
    padding: 50px 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-box {
    border: 1px solid #cbcbcb;
    padding: 10px 25px 20px;
    text-align: center;
    background-color: #000000;
    transition: all var(--transition-medium);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: right;
    align-content: space-between;
    width: 24%;
}

/* Remove double borders between adjacent boxes */
/* .stat-box:not(:nth-child(4n)) {
    border-right: none;
} */

/* .stat-box:nth-child(n+5) {
    border-top: none;
} */

/* Wide box for "100%" statistic */
.stat-box-wide {
    width: 36.5%;
}

.stat-box:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.stat-number {
    font-family: 'Georgia Regular';
    font-size: 100px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.stat-label {
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
}

/* ============================================
   AS SEEN ON SECTION
   ============================================ */
.as-seen-on-section {
    background-color: #fff;
    padding: 50px 0;
}

.as-seen-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.as-seen-frame {
    background-color: #ffffff;
    border: 1px solid #707070;
    padding: 120px 80px;
    text-align: center;
}

.as-seen-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 60px;
}


.media-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.media-logo {
    flex: 0 0 auto;
    transition: all var(--transition-medium);
}

.media-logo:hover {
    transform: translateY(-5px);
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 1;
    transition: all var(--transition-medium);
}

.logo-oz {
    height: 60px;
}

.media-logo:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Text-based logos for unavailable SVGs */
.logo-text-vanity,
.logo-text-oz {
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
    opacity: 0.7;
    transition: all var(--transition-medium);
}

.logo-text-vanity {
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.logo-text-oz {
    font-size: 20px;
    border: 3px solid #000000;
    padding: 15px 20px;
}

.media-logo:hover .logo-text-vanity,
.media-logo:hover .logo-text-oz {
    opacity: 1;
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */
.providers-section {
    background-color: #000000;
    padding: 100px 0;
    position: relative;
}

.providers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 90%;
}

.providers-title {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

/* Force equal heights for all cards in carousel */
.providers-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.providers-slider .slick-slide {
    height: auto;
    display: flex !important;
    transition: all 0.5s;
}

.provider-card {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 700px;
    /* Ensure consistent minimum height */
    filter: grayscale(100%);
}

.provider-card:hover {
    filter: unset;
}

.provider-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.provider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.provider-info {
    background: #212121;
    padding: 40px 30px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Allow info section to grow and fill space */
}

.provider-info:hover {
    background: #373737;
}

.provider-name {
    font-family: 'Georgia Regular';
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.provider-title {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.provider-bio {
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    flex-grow: 1;
    /* Push button to bottom by growing to fill space */
}

.provider-btn {
    display: inline-block;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-medium);
    align-self: flex-start;
    /* Align button to start of flex container */
    margin-top: auto;
    /* Push to bottom */
}

.provider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Provider Slider Custom Arrows */
.providers-slider .slick-prev,
.providers-slider .slick-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 0;
    z-index: 10;
    transition: all var(--transition-medium);
}

.providers-slider .slick-prev:hover,
.providers-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.providers-slider .slick-prev {
    left: -100px;
}

.providers-slider .slick-next {
    right: -100px;
}

/* ============================================
   MEMBERSHIPS SECTION
   ============================================ */
.memberships-section {
    background-color: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #000;
}

.memberships-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.membership-text {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.org-logo {
    /* width: 80px;
    height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: #333;
    /* border: 2px solid #333; */
    border-radius: 50%;
    width: 140px;
    /* height: 70px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.services-title {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 9;
}

.services-grid::before {
    position: absolute;
    content: '';
    width: calc(100% + 100px);
    height: 300px;
    border: 2px solid black;
    top: 50px;
    left: -50px;
	pointer-events: none;
}

.service-card {
    /* border: 1px solid #d0d0d0; */
    overflow: hidden;
    transition: all var(--transition-medium);
}

.service-card:hover {
    border-color: #999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-card a {
	text-decoration:none;
	font-size: 21px;
    font-weight: 400;
    color: #000000;
    padding: 6px;
    text-align: left;
    margin: 0;
    background-color: #ffffff;
}
.service-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: all var(--transition-medium);
}

.service-card:hover .service-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-label {
    /* font-family: var(--font-secondary); */
    font-size: 21px;
    font-weight: 400;
    color: #000000;
    padding: 6px;
    text-align: left;
    margin: 0;
    background-color: #ffffff;
}

.load-more-container {
    text-align: center;
    position: relative;
    padding-top: 30px;
    border-top: 1px solid #DFDFDF;
}

.load-more-btn {
    padding: 12px 14px;
    border: transparent;
    background: transparent;
    color: #000000;
	border: 2px solid black;
    text-decoration: none;
    margin: 10px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.load-more-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations-section {
    background-color: #000000;
    padding: 0;
}

.locations-header {
    background-color: #000000;
    padding: 80px 0 0 0;
    text-align: center;
}

.locations-title {
    font-family: var(--font-secondary);
    font-size: 41px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.locations-container {
    background-color: #000000;
    padding: 0 var(--spacing-lg) 0;
}

.locations-box {
    background-color: #000000;
    border: 1px solid #ffffff;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 999;
    bottom: -70px;
}

.location-card {
    text-align: left;
}

.location-name {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.location-address,
.location-email,
.location-phone {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    margin: 8px 0;
}

.location-email {
    margin-bottom: 0;
}

.location-email {
    color: #cccccc;
}

.location-phone {
    font-weight: 500;
}

/* Map Section */
.locations-map {
    background-color: #000000;
    padding: 0;
}

.map-wrapper {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) brightness(1.1);
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
}

.map-pin:hover {
    transform: translate(-50%, -100%) scale(1.1);
}

.map-pin svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.pin-label {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
    background-color: transparent;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background-color: #fff;
    padding: 100px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.testimonials-title {
    /* font-family: var(--font-secondary); */
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
}

.testimonials-box {
    /* border: 1px solid #333333; */
    padding: 40px 40px 60px;
    background-color: #fff;
    position: relative;
}

/* Testimonials Slider */
.testimonials-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.testimonials-slider .slick-slide {
    height: auto;
    display: flex !important;
}

.testimonial-card {
    background-color: #000000;
    padding: 40px 30px;
    margin: 0 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 40px;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.testimonial-author {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

/* Testimonials Slider Arrows */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
}

.testimonials-slider .slick-prev {
    left: -70px;
}

.testimonials-slider .slick-next {
    right: -70px;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    font-size: 24px;
    color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    width: 100%;
}

/* Upper Footer */
.footer-upper {
    background-color: #F2F2F2;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 0 0 auto;
}

/* 
.footer-logo-column {
    flex: 1;
} */

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-pd {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    font-style: italic;
    border: 2px solid #8b7355;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-preston {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
}

.logo-derm {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000000;
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 20px 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1px;
}

.footer-links a {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #000000;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #000000;
    transition: color var(--transition-fast);
}

.social-icon:hover {
    color: #8b7355;
}

/* Lower Footer */
.footer-lower {
    background-color: #1a1a1a;
    padding: 40px 0;
}

.footer-lower .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-lower-left {
    flex: 0 0 auto;
}

.footer-lower-right {
    display: flex;
    gap: 60px;
}

.footer-copyright {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.footer-meta-links {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-meta-links a {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-meta-links a:hover {
    color: #8b7355;
}

.footer-partner {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.footer-partner a {
    color: #ffffff;
    text-decoration: none;
}

.footer-partner a:hover {
    color: #8b7355;
}

.footer-location h5 a {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px 0;
	text-decoration: none;
}

.footer-location p {
    font-family: var(--font-secondary);
    font-size: 13px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.footer-contact {
    color: #cccccc !important;
}

/* ============================================
   SLICK SLIDER CONTROLS
   ============================================ */
/* Custom Arrow Styling */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slick-prev {
    left: 40px;
}

.slick-next {
    right: 40px;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--color-text-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slick-prev svg,
.slick-next svg {
    width: 100%;
    height: 100%;
    color: var(--color-text-light);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

/* Custom Dots Styling */
.slick-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 200;
}

.slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid var(--color-text-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 0;
    line-height: 0;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li:hover button {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.slick-dots li.slick-active button {
    background: var(--color-text-light);
    border-color: var(--color-text-light);
    width: 40px;
    border-radius: 10px;
}

/* Slider fade animation */
.slick-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slick-slide.slick-active {
    opacity: 1;
}
.footer-award-description {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
}
.footer-award-description img {
    display: block;
    margin: 0 auto;
    border: 2px solid #000;
    padding: 5px; /* optional */
}

.learn_more_service{margin-top:20px;}
.learn_more_service .learn_more_service_cls{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 var(--spacing-md);
    }

    .header-actions {
        gap: var(--spacing-sm);
    }

    .phone-number {
        display: none;
    }

    .btn-book {
        padding: 0.75rem 1.25rem;
        font-size: 0.7rem;
    }

    .hero-content {
        padding: 0 var(--spacing-lg);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-quote p {
        font-size: 1rem;
    }

    .btn-learn-more {
        padding: 0.875rem 2rem;
        font-size: 0.7rem;
    }

    /* Slider controls on mobile */
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }

    .slick-dots {
        bottom: 30px;
        gap: 10px;
    }

    .as-seen-on-section .media-logo {
        width: 120px;
        height: auto;
    }

    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .services-title {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Memberships Section Mobile */
    .membership-text {
        font-size: 10px;
        margin-bottom: 30px;
    }

    .org-logos {
        gap: 20px;
    }

    .org-logo {
        width: 60px;
        height: 60px;
    }

    .logo-placeholder {
        width: 55px;
        height: 55px;
        font-size: 10px;
    }

    /* Locations Section Mobile */
    .locations-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }

    .locations-title {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .locations-header {
        padding: 40px 0;
    }

    .location-name {
        font-size: 13px;
    }

    .map-pin svg {
        width: 30px;
        height: 38px;
    }

    .pin-label {
        font-size: 9px;
        padding: 4px 8px;
        top: 38px;
    }

    /* Testimonials Section Mobile */
    .testimonials-box {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
        min-height: 250px;
        margin: 0 10px;
    }

    .quote-icon {
        font-size: 48px;
        margin-bottom: 0
    }

    .testimonial-text {
        font-size: 12px;
    }

    .testimonials-title {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonials-slider .slick-prev,
    .testimonials-slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .testimonials-slider .slick-prev {
        left: -50px;
    }

    .testimonials-slider .slick-next {
        right: -50px;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .slick-dots li.slick-active button {
        width: 30px;
    }

    /* Connected border wrapper responsive */
    .connected-border-wrapper {
        margin: 0;
    }

    .connected-border-wrapper .welcome-section {
        padding: 60px 30px;
    }

    /* Welcome section responsive */
    .welcome-section {
        padding: 60px 0;
    }

    .welcome-section .content-border-frame {
        margin: 20px;
        padding: 40px 20px;
    }

    .awards-container {
        gap: var(--spacing-lg);
    }

    .award-image {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .hero-content {
        padding: 0 var(--spacing-md);
    }

    /* Connected border wrapper on mobile */
    .connected-border-wrapper {
        margin: 15px;
    }

    .connected-border-wrapper .welcome-section {
        padding: 40px 20px;
    }

    /* Border frames on mobile */
    .content-border-frame {
        margin: 15px;
    }

    .welcome-section .content-border-frame {
        margin: 15px;
        padding: 30px 15px;
    }

    .awards-container {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .award-image {
        width: 180px;
    }
}

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   ============================================ */

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        padding: 60px 30px;
    }

    .stat-number {
        font-size: 90px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* As Seen On section responsive */
    .as-seen-frame {
        padding: 60px 40px;
    }

    .media-logos {
        gap: 50px;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .as-seen-on-section .media-logo {
        margin-bottom: 20px;
    }

    /* Services Section Responsive */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-image-wrapper {
        height: 240px;
    }

    /* Memberships Section Responsive */
    .org-logos {
        gap: 30px;
    }

    /* Locations Section Responsive */
    .locations-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 40px 30px;
    }

    .locations-title {
        font-size: 24px;
    }

    /* Testimonials Section Responsive */
    .testimonials-box {
        padding: 40px 30px;
    }

    .testimonial-card {
        padding: 30px 20px;
        min-height: 280px;
    }

    .testimonials-title {
        font-size: 16px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 50px 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .stat-box:not(:first-child) {
        border-top: none;
    }

    .stat-box-wide {
        grid-column: span 1;
    }

    .stat-number {
        font-size: 70px;
    }

    .stat-label {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


.testimonials-slider {
    position: relative;
}

.testimonials-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 75%;
    border: 2px solid black;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
}

.footer-logo img {
    width: auto;
    object-fit: cover;
    height: 50px
}

/* ============================================
   MEGA MENU SYSTEM
   ============================================ */

/* Navigation Item Container */
.nav-item {
    position: relative;
    display: inline-block;
}

/* Mega Menu Container */
.megamenu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-medium);
    z-index: 999;
    height: fit-content;
}

/* Show mega menu on hover */
.nav-item:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Inner Container */
.megamenu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Wide Mega Menu (4 columns) */
.megamenu-wide .megamenu-container {
    grid-template-columns: repeat(4, 1fr);
}

/* Mega Menu Column */
.megamenu-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.megamenu-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mega Menu Links */
.megamenu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamenu-links li {
    margin: 0;
    padding: 0;
}

.megamenu-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.megamenu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    transition: all var(--transition-fast);
}

.megamenu-links a:hover {
    color: var(--color-primary);
    padding-left: 20px;
}

.megamenu-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* ============================================
   HERO-STYLE MEGA MENU (for ABOUT)
   ============================================ */

.megamenu-hero {
    background: #000000 !important;
    min-height: 500px;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.megamenu-hero-container {
    display: flex;
    gap: 60px;
    padding: 40px;
    max-width: 1400px;
    margin: 40px auto;
    align-items: flex-start;
    min-height: 500px;
    border: 1px solid #fff;
}

/* Left Side: Content */
.megamenu-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    width: 43%;
}

.megamenu-hero-title {
    font-size: clamp(2.2rem, 5vw, 2rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.megamenu-hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
}

.megamenu-hero-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    background: transparent;
    border: 2px solid var(--color-text-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    align-self: flex-start;
    margin-top: 50px;
}

.megamenu-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-text-light);
    transition: left var(--transition-medium);
    z-index: -1;
}

.megamenu-hero-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.megamenu-hero-btn:hover::before {
    left: 0;
}

/* Right Side: Image */
.megamenu-hero-image {
    position: relative;
    height: auto;
    overflow: hidden;
    width: 57%;
}

.megamenu-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.megamenu-hero-image:hover .megamenu-hero-img {
    transform: scale(1.05);
}

/* ============================================
   TREATMENTS MEGA MENU (for AESTHETIC)
   ============================================ */

.megamenu-treatments {
    background: #000000 !important;
    min-height: 400px;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.megamenu-treatments-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1400px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #fff;
}

/* Treatment Column */
.megamenu-treatments-column {
    background: #000000;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
}

.megamenu-treatments-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

/* Treatment Links */
.megamenu-treatments-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.megamenu-treatments-links li {
    margin: 0;
    padding: 0;
}

.megamenu-treatments-links a {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    line-height: 1.5;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.megamenu-treatments-links a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.megamenu-treatments-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all var(--transition-fast);
    color: var(--color-accent);
}

.megamenu-treatments-links a:hover::before {
    opacity: 1;
    left: -5px;
}

.m-tes.testimonials-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.m-tes .testimonials-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.m-tes .testimonials-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.m-tes .testimonials-slider .slick-slide {
    padding: 0 15px;
}

.m-tes .testimonial-card {
    background: #000;
    color: #fff;
    padding: 40px 30px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: scale(0.9);
    transition: all 0.4s ease;
    opacity: 1;
}

.m-tes .slick-center .testimonial-card {
    opacity: 1;
    transform: scale(1);
}

.m-tes .quote-icon {
    font-size: 60px;
    line-height: 1;
}

.m-tes .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
}

.m-tes .testimonial-author {
    font-size: 14px;
    letter-spacing: 1px;
    text-align: left;
}