/* Reset and Base Styles - Updated 2024 */
:root {
    --nav-h: 72px; /* Default nav height - will be set dynamically */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #6B4E3B;
    background-color: #F5EADD;
    padding-top: var(--nav-h);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #6B4E3B;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(245, 234, 221, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: var(--nav-h);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(107, 78, 59, 0.1);
}

.nav-scrolled {
    background-color: rgba(245, 234, 221, 0.98);
    box-shadow: 0 2px 20px rgba(107, 78, 59, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-left: -1.5rem;
    margin-top: -0.6rem;
}

.nav-logo h2 {
    color: #6B4E3B;
    font-size: 1.5rem;
    margin: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6B4E3B;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: calc(85vh - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 234, 221, 0.2) 0%, rgba(245, 234, 221, 0) 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0;
    padding: 4rem 0 4rem 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(85vh - var(--nav-h));
}

.hero-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.stars-outline {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #333333;
    font-size: 1.8rem;
}

.rating-text {
    color: #333333;
    font-weight: 600;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.hero-headline {
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 600;
    font-size: 3rem;
}

.hero-line-1,
.hero-line-2 {
    display: block;
    color: #333333;
}

.hero-subtext {
    font-size: 1.32rem;
    color: #333333;
    margin-bottom: 4rem;
    max-width: 450px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    max-width: 400px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1.56rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: #488286;
    color: white;
}

.btn-primary:hover {
    background-color: #3a6b6e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #F5F3E6;
    color: #6B4E3B;
    border: none;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #efe4d5;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary svg {
    fill: #25D366;
    transition: color 0.3s ease;
}

.btn-secondary:hover svg {
    color: initial;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 0;
    background-color: transparent;
    height: 15vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1rem 1rem 1rem;
    height: 15vh;
    justify-content: center;
}

.trust-item-left {
    background-color: #F8F8F8;
}

.trust-item-center {
    background-color: white;
}

.trust-item-right {
    background-color: #F8F8F8;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 125px;
}

.trust-icon img {
    width: 125px;
    height: 125px;
    object-fit: contain;
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333333;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: -0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #6B4E3B;
    margin-bottom: 1rem;
}

.section-header p {
    color: #6B4E3B;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Treatment Catalog Section Header */
.treatment-catalog .section-header {
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
    position: relative;
}

.treatment-catalog .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #6B4E3B;
    margin-bottom: 1rem;
    position: relative;
}

.treatment-catalog .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(107, 78, 59, 0.3) 20%, rgba(107, 78, 59, 0.6) 50%, rgba(107, 78, 59, 0.3) 80%, transparent 100%);
    border-radius: 1px;
}

.treatment-catalog .section-header p {
    font-size: 1.2rem;
    color: #6B4E3B;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Treatment Catalog Section */
.treatment-catalog {
    padding: 2rem 0;
    background: linear-gradient(135deg, #F8F4F0 0%, #F0E8DC 25%, #E8D5C4 50%, #F0E8DC 75%, #F8F4F0 100%);
    position: relative;
    border-radius: 20px;
    margin: 1rem 1rem;
    box-shadow: 0 12px 50px rgba(107, 78, 59, 0.15);
    overflow: hidden;
    border: 1px solid rgba(107, 78, 59, 0.08);
}

.treatment-catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Subtle geometric patterns */
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        /* Elegant line patterns */
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.15) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%),
        /* Subtle dot texture */
        radial-gradient(circle at 30% 30%, rgba(107, 78, 59, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, rgba(107, 78, 59, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px, 60px 60px, 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Treatment Navigation Menu */
.treatment-nav-menu {
    margin: 0 1rem 2rem 1rem;
    padding: 1.5rem 0;
    width: calc(100% - 2rem);
    background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B0 25%, #C7B299 50%, #B8A085 75%, #A68F6F 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}


.treatment-nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%);
    pointer-events: none;
    z-index: 1;
}


.nav-menu-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    margin: 0;
    background-color: transparent;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}

.nav-menu-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(107, 78, 59, 0.1);
    border: 2px solid rgba(72, 130, 134, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    color: #6B4E3B;
    cursor: pointer;
    position: relative;
}

.nav-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 130, 134, 0.05) 0%, rgba(72, 130, 134, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.nav-menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(72, 130, 134, 0.2);
    border-color: rgba(72, 130, 134, 0.3);
}

.nav-menu-item:hover::before {
    opacity: 1;
}

.nav-menu-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.nav-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.nav-menu-item:hover .nav-menu-image img {
    transform: scale(1.05);
}

.nav-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 130, 134, 0.8) 0%, rgba(72, 130, 134, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-menu-item:hover .nav-menu-overlay {
    opacity: 1;
}

.nav-menu-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    color: #488286;
    font-weight: 600;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.nav-menu-item:hover .nav-menu-cta {
    transform: translateY(0);
}

.nav-menu-cta svg {
    transition: transform 0.3s ease;
}

.nav-menu-item:hover .nav-menu-cta svg {
    transform: translateX(3px);
}

.nav-menu-content {
    padding: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.nav-menu-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B4E3B;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.nav-menu-item:hover .nav-menu-content h4 {
    color: #488286;
}

.nav-menu-content p {
    font-size: 0.75rem;
    color: #6B4E3B;
    opacity: 0.8;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    transition: opacity 0.3s ease;
}

.nav-menu-item:hover .nav-menu-content p {
    opacity: 1;
}

.nav-menu-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #488286;
    border-radius: 50%;
    margin: 0 auto;
    color: white;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0.7;
}

.nav-menu-item:hover .nav-menu-arrow {
    transform: scale(1);
    opacity: 1;
    background-color: #3a6b6e;
}

.nav-menu-arrow svg {
    transition: transform 0.3s ease;
}

.nav-menu-item:hover .nav-menu-arrow svg {
    transform: translateX(2px);
}

.treatment-catalog .container {
    max-width: 98%;
    padding: 0 1rem;
}

/* Separator line between navigation and treatment details */
.treatment-separator {
    position: relative;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1rem;
}

.treatment-separator::before {
    content: '';
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(107, 78, 59, 0.4) 20%, rgba(107, 78, 59, 0.6) 50%, rgba(107, 78, 59, 0.4) 80%, transparent 100%);
}

.treatment-separator::after {
    content: '';
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(107, 78, 59, 0.6);
    z-index: 3;
}

.treatment-offering {
    margin: 0 1rem 2rem 1rem; /* Consistent spacing with navigation */
    position: relative;
    z-index: 1;
    background-color: #F8F4F0;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(107, 78, 59, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    /* Scroll animation initial state */
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    /* Magnetic hover enhancement */
    cursor: pointer;
}

.treatment-offering::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.65) 45%, rgba(255, 255, 255, 0.65) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.18) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.16) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.14) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

.treatment-offering::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.75) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.5) 0%, transparent 2px),
        /* Additional sparkling dots */
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 1px),
        radial-gradient(circle at 95% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 10% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        /* Micro sparkles */
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 1px),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.45) 0%, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(2) {
    background-color: #F5F9F9;
}

.treatment-offering:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.75) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.85) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2px),
        /* Additional sparkling dots */
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.45) 0%, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 1px),
        radial-gradient(circle at 95% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 1px),
        radial-gradient(circle at 10% 40%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        /* Micro sparkles */
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(4) {
    background-color: #F5F9F9;
}

.treatment-offering:nth-of-type(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.75) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(4)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles - more visible */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.85) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2px);
    pointer-events: none;
    z-index: 0;
}

/* Container 6 - Cheeks & Jawline */
.treatment-offering:nth-of-type(6) {
    background-color: #F5F9F9;
}

.treatment-offering:nth-of-type(6)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.75) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(6)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles - more visible */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.85) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2px);
    pointer-events: none;
    z-index: 0;
}

/* Container 8 - Under-Eye & Tear Trough */
.treatment-offering:nth-of-type(8) {
    background-color: #F5F9F9;
}

.treatment-offering:nth-of-type(8)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.75) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(8)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles - more visible */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.85) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2px);
    pointer-events: none;
    z-index: 0;
}

/* Container 10 - Unwanted Hair */
.treatment-offering:nth-of-type(10) {
    background-color: #F5F9F9;
}

.treatment-offering:nth-of-type(10)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.75) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

.treatment-offering:nth-of-type(10)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles - more visible */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.85) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2px);
    pointer-events: none;
    z-index: 0;
}

/* Container 12 - Tattoo Removal */
#tattoo-removal-treatment {
    background-color: #F5F9F9;
}

#tattoo-removal-treatment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Circular glows */
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.65) 0%, transparent 60%),
        radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(255, 255, 255, 0.55) 0%, transparent 50%),
        /* Wave patterns */
        radial-gradient(ellipse 200px 50px at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 150px 30px at 20% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        /* Additional geometric lines - much stronger */
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.75) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.7) 55%, transparent 60%),
        /* Dotted patterns */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.22) 0%, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0%, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 20px 20px, 20px 20px, 15px 15px, 15px 15px, 15px 15px, 15px 15px;
    pointer-events: none;
    z-index: 0;
}

#tattoo-removal-treatment::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Sparkle particles - more visible */
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 4px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 3px),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 255, 0.85) 0%, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 2px);
    pointer-events: none;
    z-index: 0;
}

/* Scroll animation active state */
.treatment-offering.scroll-animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Carousel effect - containers scale based on viewport position */
.treatment-offering {
    transform-origin: center center;
    will-change: transform;
}

.treatment-offering:last-child {
    margin-bottom: 0;
}

.offering-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: auto;
    position: relative;
}

.offering-left {
    background: transparent;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(107, 78, 59, 0.05);
    overflow: hidden;
}

.offering-right {
    background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B0 100%);
    position: relative;
    overflow: hidden;
}

.offering-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q5,0 10,10 T20,10" stroke="rgba(107,78,59,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.offering-header {
    margin-bottom: 2rem;
}

.offering-header h3 {
    color: #6B4E3B;
    font-size: 2.25rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    position: relative;
    max-width: 70%;
}

.offering-header h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #488286;
}

.offering-description {
    color: #6B4E3B;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 70%;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.treatment-card {
    background-color: white;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 4px 20px rgba(107, 78, 59, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 78, 59, 0.05);
    overflow: hidden;
    height: 120px;
}

.treatment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 78, 59, 0.12);
}

/* Enhanced treatment card hover when parent container is scroll-animated */
.treatment-offering.scroll-animated .treatment-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(107, 78, 59, 0.18);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    display: block;
}

.treatment-image {
    width: 33.33%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: stretch;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
    display: block;
}

.treatment-info {
    flex: 1;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.treatment-info h4 {
    color: #6B4E3B;
    font-size: 1.0rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.treatment-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.treatment-pricing span {
    color: #6B4E3B;
    font-size: 0.8rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.offering-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* CTA Treatment Card - As Part of Grid */
.cta-treatment-card {
    position: relative;
    overflow: visible;
}

.cta-treatment-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(72, 130, 134, 0.25);
}

.cta-treatment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #488286 0%, #3a6b6e 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 3px 10px rgba(72, 130, 134, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
    width: 100%;
}

.cta-treatment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 245, 235, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

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

.cta-treatment-btn:hover {
    background: linear-gradient(135deg, #3a6b6e 0%, #488286 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 
        0 5px 15px rgba(72, 130, 134, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-treatment-btn:active {
    transform: scale(1.02);
    box-shadow: 
        0 2px 8px rgba(72, 130, 134, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-treatment-btn svg {
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.cta-treatment-btn:hover svg {
    transform: translateX(2px);
}

.cta-treatment-btn span {
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Special styling for CTA treatment card content */
.cta-treatment-card .treatment-info h4 {
    color: #488286;
    font-weight: 600;
}

.cta-treatment-card .treatment-pricing span {
    color: #488286;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #F5EADD;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #6B4E3B;
    margin-bottom: 2rem;
    text-align: center;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    gap: 1.2rem;
    margin-top: 3rem;
    padding: 0 0.5rem;
    max-width: 100%;
    width: 100%;
}

.why-choose-card {
    background: linear-gradient(135deg, 
        #FAFAF8 0%, 
        #F8F7F5 25%, 
        #F5F4F1 50%, 
        #F3F1ED 75%, 
        #F7F5F2 100%);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 
        0 15px 40px rgba(107, 78, 59, 0.12),
        0 6px 20px rgba(72, 130, 134, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(72, 130, 134, 0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(72, 130, 134, 0.04) 0%, 
        rgba(72, 130, 134, 0.12) 30%,
        rgba(107, 78, 59, 0.06) 70%,
        rgba(72, 130, 134, 0.04) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(72, 130, 134, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 78, 59, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(72, 130, 134, 0.05) 50%, transparent 52%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.why-choose-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(72, 130, 134, 0.18),
        0 12px 30px rgba(107, 78, 59, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(72, 130, 134, 0.25);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.why-choose-card:nth-child(even) {
    background: linear-gradient(135deg, 
        #F8F9FA 0%, 
        #F1F5F5 25%, 
        #E9F0F0 50%, 
        #DFE8E8 75%, 
        #EFF4F4 100%);
    border-color: rgba(72, 130, 134, 0.18);
}

.card-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.card-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon {
    transform: scale(1.1);
}

.why-choose-card:hover .card-icon img {
    transform: scale(1.05);
}


.why-choose-card h3 {
    color: #6B4E3B;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.why-choose-card:hover h3 {
    color: #488286;
    transform: translateY(-2px);
}

.card-content {
    position: relative;
    z-index: 3;
    flex: 1;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-content li {
    color: #6B4E3B;
    font-size: 0.85rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 1.25rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 12px;
    height: 12px;
    background: #488286;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-content li {
    opacity: 1;
    transform: translateX(4px);
}

.why-choose-card:hover .card-content li::before {
    background: #3a6b6e;
    transform: scale(1.2);
    border-radius: 3px;
    color: white;
}

.card-content li strong {
    color: #488286;
    font-weight: 600;
    transition: color 0.3s ease;
}

.why-choose-card:hover .card-content li strong {
    color: #3a6b6e;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 78, 59, 0.1);
}

.feature h3 {
    color: #488286;
    margin-bottom: 1rem;
}

.feature p {
    color: #6B4E3B;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background-color: #B79A7C;
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: #F5EADD;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(107, 78, 59, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #6B4E3B;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #488286;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #6B4E3B;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #F5EADD;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    color: #6B4E3B;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #6B4E3B;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-btn.email {
    background-color: #7D82B8;
    color: white;
    box-shadow: 0 4px 15px rgba(125, 130, 184, 0.3);
}

.contact-btn.email:hover {
    background-color: #6b70a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 130, 184, 0.4);
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.detail-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(107, 78, 59, 0.1);
}

.detail-item h3 {
    color: #488286;
    margin-bottom: 1rem;
}

.detail-item p {
    color: #6B4E3B;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 3rem;
    left: calc(20% + 150px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #488286 0%, #3a6b6e 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 3px 10px rgba(72, 130, 134, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 245, 235, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

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

.floating-cta-btn:hover {
    background: linear-gradient(135deg, #3a6b6e 0%, #488286 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 
        0 5px 15px rgba(72, 130, 134, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.floating-cta-btn:active {
    transform: scale(1.02);
    box-shadow: 
        0 2px 8px rgba(72, 130, 134, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-cta-btn svg {
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.floating-cta-btn:hover svg {
    transform: translateX(2px);
}

.floating-cta-btn span {
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Clinic Gallery Section */
.clinic-gallery {
    padding: 6rem 0;
    background-color: #F5EADD;
    min-height: 150vh;
}

.gallery-main {
    margin-bottom: 4rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: 2fr 1fr 0.8fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    height: 400px;
}

.gallery-row-2 {
    grid-template-columns: 1fr 2fr 0.8fr;
}

.gallery-row-3 {
    grid-template-columns: 0.8fr 1fr 2fr;
}

.gallery-row-4 {
    grid-template-columns: 2fr 0.8fr 1fr;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(107, 78, 59, 0.12);
    background: linear-gradient(135deg, #f8f4f0 0%, #f0e8dc 100%);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(107, 78, 59, 0.25);
}

.gallery-item.large {
    height: 100%;
}

.gallery-item.medium {
    height: 100%;
}

.gallery-item.small {
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 130, 134, 0.85) 0%, rgba(72, 130, 134, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1.1);
}

/* Location Section */
.location-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f4f0 25%, #f0e8dc 50%, #f8f4f0 75%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(72, 130, 134, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(72, 130, 134, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(72, 130, 134, 0.02) 50%, transparent 52%);
    pointer-events: none;
}

/* Map and Features Side by Side */
.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Map on the Left */
.location-map {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 78, 59, 0.15);
    border: 2px solid rgba(72, 130, 134, 0.1);
    background: linear-gradient(135deg, #f8f4f0 0%, #f0e8dc 100%);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.transport-info {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(107, 78, 59, 0.08);
    border: 1px solid rgba(72, 130, 134, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.transport-icon-wrapper {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #488286 0%, #3a6b6e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(72, 130, 134, 0.3);
}

.transport-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.transport-content h3 {
    color: #6B4E3B;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.transport-content p {
    color: #6B4E3B;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

/* Features on the Right */
.location-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto; /* Let the container grow with its content */
    position: relative;
    z-index: 2;
}

/* Single location feature container */
.location-feature-single {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(107, 78, 59, 0.08);
    border: 1px solid rgba(72, 130, 134, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.location-feature-single:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 78, 59, 0.12);
}

.location-feature-single .feature-image {
    height: 200px; /* Reduced by 50% */
}

/* Location points styling */
.location-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.location-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(72, 130, 134, 0.1);
    transition: all 0.3s ease;
}

.location-point:last-child {
    border-bottom: none;
}

.location-point:hover {
    background: rgba(72, 130, 134, 0.02);
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.point-icon {
    width: 24px;
    height: 24px;
    color: #488286;
    flex-shrink: 0;
}

.location-point span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.4;
}


.location-feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(107, 78, 59, 0.08);
    border: 1px solid rgba(72, 130, 134, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Individual dotted lines for each container */
.location-feature::before {
    content: '';
    position: absolute;
    left: -4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 2px;
    background-image: 
        url("data:image/svg+xml,%3csvg width='100' height='4' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='dotted' patternUnits='userSpaceOnUse' width='8' height='4'%3e%3ccircle cx='4' cy='2' r='1.5' fill='%23488286' opacity='0.7'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100' height='4' fill='url(%23dotted)'/%3e%3c/svg%3e");
    background-size: 16px 4px;
    opacity: 0.6;
    z-index: 1;
}

.location-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 78, 59, 0.12);
}

.feature-image {
    width: 100%;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-feature:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.location-feature-single .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    text-align: center;
}

.feature-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.feature-title-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.feature-title-icon {
    width: 20px;
    height: 20px;
    color: #488286;
    flex-shrink: 0;
}

.feature-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #488286 0%, #3a6b6e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(72, 130, 134, 0.3);
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    color: #6B4E3B;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.feature-content p {
    color: #6B4E3B;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    margin: 0 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
}

/* Footer */
.footer {
    background-color: #6B4E3B;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #B79A7C;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #B79A7C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #B79A7C;
}

.footer-bottom p {
    color: #B79A7C;
    font-size: 0.9rem;
}

/* Responsive Floating CTA */
@media (max-width: 767px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: auto;
        transform: translateY(100px);
    }

    .floating-cta.show {
        transform: translateY(0);
    }

    .floating-cta-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .floating-cta-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .floating-cta {
        bottom: 2.5rem;
        left: calc(25% + 120px);
    }

    .floating-cta-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero, .hero-content {
        height: calc(85vh - var(--nav-h));
    }
    .hero-content {
        padding: 5rem 0 5rem 4rem;
    }
    
    
    .trust-indicators {
        height: 15vh;
    }
    
    .trust-item {
        height: 15vh;
    }
    
    .logo-img {
        height: 58.5px;
    }
    
    .hero-headline {
        font-size: 3.6rem;
    }
    
    .hero-subtext {
        font-size: 1.56rem;
    }
    
    .star {
        font-size: 2.16rem;
    }
    
    .rating-text {
        font-size: 2.16rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offering-content {
        grid-template-columns: 2fr 1fr;
    }

    .offering-header h3 {
        font-size: 2rem;
        max-width: 70%;
    }

    .offering-header h3::after {
        width: 55px;
    }

    .offering-description {
        font-size: 1.0625rem;
        max-width: 70%;
    }
    
    /* Treatment Navigation Menu Tablet Styles */
    .treatment-nav-menu {
        margin: 0 1.5rem 2.5rem 1.5rem;
        width: calc(100% - 3rem);
        padding: 2rem 0;
    }
    
    .nav-menu-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .nav-menu-image {
        height: 100px;
    }
    
    .nav-menu-content {
        padding: 0.6rem;
    }
    
    .nav-menu-content h4 {
        font-size: 0.85rem;
    }
    
    .nav-menu-content p {
        font-size: 0.7rem;
    }
    
    .nav-menu-cta {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .nav-menu-arrow {
        width: 24px;
        height: 24px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .why-choose-card {
        min-height: 200px;
        padding: 1rem;
        border-radius: 18px;
    }
    
    .card-icon img {
        width: 76px;
        height: 76px;
    }
    
    .why-choose-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        text-align: center;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .card-content li {
        font-size: 0.8rem;
        padding-left: 1rem;
    }
    
    .card-content li::before {
        width: 9px;
        height: 9px;
        font-size: 6px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-methods {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .footer-links {
        justify-content: flex-end;
    }

    /* Gallery Tablet Styles */
    .clinic-gallery {
        padding: 5rem 0;
        min-height: 120vh;
    }

    .gallery-row {
        height: 350px;
        gap: 1.25rem;
    }

    .gallery-row-2 {
        grid-template-columns: 1fr 1.5fr 0.7fr;
    }

    .gallery-row-3 {
        grid-template-columns: 0.7fr 1fr 1.5fr;
    }

    .gallery-row-4 {
        grid-template-columns: 1.5fr 0.7fr 1fr;
    }

    .location-section {
        padding: 3.5rem 0 5rem;
    }

    .location-content {
        gap: 2.5rem;
    }

    .map-container {
        height: 500px;
    }

    .location-features {
        height: 500px;
        gap: 1.25rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .hero-content {
        padding: 6rem 0 6rem 5rem;
    }
    
    .logo-img {
        height: 65px;
    }
    
    h1 {
        font-size: 4.8rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 4.8rem;
    }
    
    .hero-subtext {
        font-size: 1.68rem;
    }
    
    .star {
        font-size: 2.16rem;
    }
    
    .rating-text {
        font-size: 2.16rem;
    }
    
    .hero {
        padding: 0;
    }
    
    .hero-container {
        gap: 6rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offering-content {
        grid-template-columns: 2fr 1fr;
    }

    .offering-header h3 {
        font-size: 2.5rem;
        max-width: 70%;
    }

    .offering-header h3::after {
        width: 70px;
        height: 2.5px;
    }

    .offering-description {
        font-size: 1.1875rem;
        max-width: 70%;
    }
    
    
    /* Treatment Navigation Menu Desktop Styles */
    .treatment-nav-menu {
        margin: 0 2rem 3rem 2rem;
        width: calc(100% - 4rem);
        padding: 2.5rem 0;
    }
    
    .nav-menu-container {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.25rem;
        width: 100%;
        padding: 0 2rem;
    }
    
    .nav-menu-image {
        height: 130px;
    }
    
    .nav-menu-content {
        padding: 0.8rem;
    }
    
    .nav-menu-content h4 {
        font-size: 0.95rem;
    }
    
    .nav-menu-content p {
        font-size: 0.8rem;
    }
    
    .nav-menu-cta {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-menu-arrow {
        width: 30px;
        height: 30px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .why-choose-card {
        min-height: 220px;
        padding: 1.2rem;
        border-radius: 20px;
    }
    
    .card-icon img {
        width: 90px;
        height: 90px;
    }
    
    .why-choose-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .card-content li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .card-content li::before {
        width: 10px;
        height: 10px;
        font-size: 7px;
    }
    
    .contact-methods {
        flex-direction: row;
        gap: 1.5rem;
    }

    /* Gallery Desktop Styles */
    .clinic-gallery {
        padding: 8rem 0;
        min-height: 150vh;
    }

    .gallery-row {
        height: 450px;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .location-section {
        padding: 6rem 0 8rem;
    }

    .location-content {
        gap: 3rem;
    }

    .map-container {
        height: 600px;
    }

    .location-features {
        height: auto; /* REMOVED fixed height of 600px */
        gap: 1.5rem;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 0;
        height: calc(80vh - var(--nav-h));
    }
    
    .hero-content {
        padding: 3rem 0 3rem 2rem;
        height: calc(80vh - var(--nav-h));
    }
    
    .trust-indicators {
        height: 20vh;
    }
    
    .trust-item {
        height: 20vh;
        padding: 0.75rem 1rem 0.75rem 1rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subtext {
        font-size: 1.32rem;
    }
    
    .star {
        font-size: 1.8rem;
    }
    
    .rating-text {
        font-size: 1.8rem;
    }
    
    .btn {
        min-width: 180px;
        padding: 0.72rem 1.3rem;
        font-size: 1.425rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .trust-item {
        padding: 0.75rem 1rem;
    }
    
    .trust-item-left,
    .trust-item-center,
    .trust-item-right {
        background-color: #F8F8F8;
    }
    
    .trust-item:nth-child(2) {
        background-color: white;
    }
    
    .trust-icon {
        width: 94px;
        height: 94px;
    }
    
    .trust-icon img {
        width: 94px;
        height: 94px;
    }
    
    .trust-text {
        font-size: 1.1rem;
        margin-top: -0.25rem;
    }
    
    .service-card,
    .feature,
    .testimonial-card,
    .detail-item {
        padding: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        gap: 1rem;
        padding: 0;
    }
    
    .why-choose-card {
        min-height: 180px;
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .card-icon img {
        width: 68px;
        height: 68px;
    }
    
    .why-choose-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-align: center;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .card-content li {
        font-size: 0.8rem;
        padding-left: 1rem;
        line-height: 1.3;
    }
    
    .card-content li::before {
        width: 8px;
        height: 8px;
        font-size: 5px;
    }
    
    /* Treatment Catalog Mobile Styles */
    .treatment-catalog .container {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    /* Treatment Navigation Menu Mobile Styles */
    .treatment-catalog {
        margin: 1rem 0.5rem;
        border-radius: 16px;
    }
    
    .treatment-nav-menu {
        margin: 0 1rem 2rem 1rem;
        padding: 1.5rem 0;
        width: calc(100% - 2rem);
    }
    
    .nav-menu-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 0.75rem;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .nav-menu-image {
        height: 80px;
    }
    
    .nav-menu-content {
        padding: 0.5rem;
    }
    
    .nav-menu-content h4 {
        font-size: 0.8rem;
    }
    
    .nav-menu-content p {
        font-size: 0.65rem;
    }
    
    .nav-menu-cta {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .nav-menu-arrow {
        width: 20px;
        height: 20px;
    }
    
    .treatment-offering {
        margin: 0 1rem 2rem 1rem;
        border-radius: 8px;
        /* Reduce animation intensity on mobile */
        transform: translateY(30px) scale(0.95);
    }
    
    /* Carousel effect on mobile - reduced intensity */
    .treatment-offering {
        transform-origin: center center;
    }
    
    .offering-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .offering-left {
        padding: 2rem;
    }
    
    .offering-right {
        height: 300px;
        order: -1;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
     .treatment-card {
         padding: 0;
         flex-direction: column;
         text-align: center;
         gap: 0;
     }
     
     .treatment-image {
         width: 100%;
         height: 86px;
         padding: 0;
         background-color: transparent;
         border-radius: 6px 6px 0 0;
     }
     
     .treatment-image img {
         padding: 0;
         background-color: transparent;
         border-radius: 0;
     }
     
     .treatment-info {
         padding: 0.5rem;
     }
    
    .treatment-info h4 {
        font-size: 0.9rem;
    }
    
    .treatment-pricing {
        align-items: center;
    }
    
    .treatment-pricing span {
        font-size: 0.75rem;
    }
    
     .offering-header h3 {
         font-size: 1.75rem;
         max-width: 75%;
     }

     .offering-header h3::after {
         width: 45px;
         height: 1.5px;
     }

     .offering-description {
         font-size: 1rem;
         margin-bottom: 2rem;
         max-width: 75%;
     }


    /* CTA Treatment Card Mobile Styles */
    .cta-treatment-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .cta-treatment-btn svg {
        width: 10px;
        height: 10px;
    }

    /* Gallery Mobile Styles */
    .clinic-gallery {
        padding: 4rem 0;
        min-height: auto;
    }

    .gallery-main {
        margin-bottom: 3rem;
    }

    .gallery-row {
        grid-template-columns: 1fr;
        height: 300px;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .gallery-row-2,
    .gallery-row-3,
    .gallery-row-4 {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        height: 300px;
    }

    .location-section {
        padding: 2.5rem 0 4rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 400px;
        border-radius: 20px;
    }

    .location-features {
        height: auto;
        gap: 1.25rem;
    }

    .location-feature {
        padding: 0;
    }

    .feature-content {
        padding: 1.25rem;
    }


    .location-feature-single .feature-image {
        height: 150px; /* Reduced by 50% for mobile */
    }

    .feature-title-wrapper h3 {
        font-size: 1.1rem;
    }

    .feature-title-icon {
        width: 18px;
        height: 18px;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .location-feature::before {
        left: -3rem;
        width: 3rem;
    }

    .location-feature-single .feature-content h3 {
        font-size: 1.3rem;
    }

    .location-points {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .location-point {
        padding: 0.5rem 0;
    }

    .point-icon {
        width: 20px;
        height: 20px;
    }

    .location-point span {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    /* Lightbox Mobile Styles */
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-img {
        max-height: 70vh;
    }

    .lightbox-close {
        top: -40px;
        right: 10px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    .lightbox-caption {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
}