/* 
  Essence Esthetiques Stylesheet
  ---
  Colors:
  - White: #FFFFFF
  - Light Gray (for backgrounds): #F8F9FA
  - Dark Text: #333333
  - Muted Accent: #C8A4A4 
  - Button Hover: #B48A8A

  Fonts:
  - Headings: 'Lora', serif
  - Body: 'Poppins', sans-serif
*/

:root {
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-text: #333333;
    --accent-color: #C8A4A4;
    --accent-hover: #B48A8A;
    --pink-accent: #C8A4A4;
    --pink-hover: #B48A8A;
    --heading-font: 'Lora', serif;
    --body-font: 'Poppins', sans-serif;
}

/* --- Global Styles --- */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--body-font);
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 500;
    margin: 0;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3rem); 
    margin-bottom: 0.5rem; 
    line-height: 1.2;
}

h2 { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    text-align: center; 
    margin-bottom: 1rem; 
    line-height: 1.3;
}

h3 { 
    font-size: clamp(1.2rem, 3vw, 1.5rem); 
    line-height: 1.4;
}

p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.section-padding {
    padding: clamp(40px, 8vw, 60px) 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--pink-accent) 100%);
    color: var(--white);
    padding: clamp(12px, 2.5vw, 15px) clamp(25px, 4vw, 30px);
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    text-align: center;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    box-shadow: 0 4px 15px rgba(138, 209, 210, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--pink-hover) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 166, 183, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

/* --- Header --- */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 164, 164, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo a {
    font-family: var(--heading-font);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.logo a:hover {
    color: var(--accent-hover);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 40px;
    min-width: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.mobile-menu-toggle:hover span {
    background: var(--white);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
    transition: all 0.3s ease;
    margin: 2px 0;
    pointer-events: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

header nav ul li {
    margin: 0 15px;
    position: relative;
}

header nav ul li a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header nav ul li a:hover {
    color: var(--accent-color);
    background: rgba(200, 164, 164, 0.1);
}

header nav ul li a:hover::after {
    width: 80%;
}

header nav ul li a.cta-button {
    padding: 12px 24px;
    margin-left: 20px;
    font-size: 0.9rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(200, 164, 164, 0.3);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

header nav ul li a.cta-button:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 164, 164, 0.4);
}

header nav ul li a.cta-button::after {
    display: none;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    padding: clamp(80px, 15vw, 120px) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(4);
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -2;
}

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

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 600px;
    margin: 1rem auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: center;
}

.hero-buttons .cta-button {
    min-width: 180px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-buttons .cta-button::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 0.6s ease;
}

.hero-buttons .cta-button:hover::before {
    left: 100%;
}

.hero-buttons .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.hero-buttons .cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Primary hero button */
.hero-buttons .cta-button:not(.secondary) {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.hero-buttons .cta-button:not(.secondary):hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    border-color: var(--accent-hover);
}

/* Secondary hero button */
.hero-buttons .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* --- Intro Section --- */
.intro .subtitle {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 40px);
    font-size: clamp(1rem, 3vw, 1.1rem);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    flex-wrap: wrap;
}

.intro-text, .intro-image {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    order: -1;
}

.intro-image img,
.intro-video {
    border-radius: 0;
    width: 100%;
    height: clamp(250px, 50vw, 400px);
    object-fit: contain;
    object-position: center top;
    background: transparent;
}

.intro-video {
    width: 100%;
    height: clamp(250px, 50vw, 400px);
    object-fit: cover;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-hover);
}

/* --- Card Layouts (Services & Products) --- */
.service-cards, .product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(30px, 6vw, 40px);
}

.card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card img,
.service-video {
    width: 100%;
    height: clamp(200px, 40vw, 350px);
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.service-video {
    border-radius: 12px 12px 0 0;
}

.card h3 {
    margin: clamp(15px, 3vw, 20px) 0 clamp(10px, 2vw, 15px);
    padding: 0 clamp(15px, 3vw, 20px);
    color: var(--dark-text);
}

.card p {
    padding: 0 clamp(15px, 3vw, 20px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    flex-grow: 1;
    margin-bottom: clamp(15px, 3vw, 20px);
    line-height: 1.6;
}

.card span {
    display: block;
    font-weight: 600;
    margin: clamp(15px, 3vw, 20px) 0;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--accent-color);
}

.card ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
}

.card li {
    margin-bottom: 8px;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
}

.service-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    transition: all 0.3s ease;
    margin: clamp(10px, 2vw, 15px) 0;
    border: 2px solid var(--accent-color);
}

.service-button:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 164, 164, 0.3);
}

.service-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(200, 164, 164, 0.3);
}

/* --- Blog Preview --- */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(25px, 5vw, 40px);
    margin-top: clamp(30px, 6vw, 40px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post {
    padding: clamp(20px, 4vw, 25px);
    border-left: 4px solid var(--accent-color);
    background: var(--white);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.post h3 {
    margin-top: 0;
    margin-bottom: clamp(12px, 2.5vw, 18px);
    color: var(--dark-text);
}

.post p {
    margin-bottom: clamp(15px, 3vw, 20px);
    color: #666;
}

.post a {
    font-weight: 600;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.post a:hover {
    color: var(--accent-hover);
}

/* --- Footer --- */
footer {
    background-color: var(--dark-text);
    color: #ccc;
    padding: clamp(40px, 8vw, 50px) 0 20px;
}

footer a {
    color: #ccc;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(25px, 5vw, 40px);
    margin-bottom: clamp(30px, 6vw, 40px);
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: clamp(15px, 3vw, 20px);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: clamp(8px, 1.5vw, 10px);
}

.footer-links a {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-contact p {
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-social {
    text-align: center;
    margin-bottom: clamp(15px, 3vw, 20px);
    border-bottom: 1px solid #444;
    padding-bottom: clamp(15px, 3vw, 20px);
}

.footer-social a {
    margin: 0 clamp(10px, 2vw, 15px);
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.footer-bottom {
    text-align: center;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    padding-top: clamp(15px, 3vw, 20px);
    border-top: 1px solid #444;
}

/* --- Page Header Styles --- */
.page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    text-align: center;
    padding: clamp(60px, 10vw, 100px) 0;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Services Page Styles --- */
.service-category {
    margin-bottom: clamp(40px, 8vw, 60px);
}

.service-category h2 {
    text-align: center;
    margin-bottom: clamp(30px, 6vw, 40px);
    color: var(--accent-color);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 30px);
    padding: clamp(25px, 5vw, 35px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: clamp(20px, 4vw, 25px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    color: var(--dark-text);
    margin-bottom: clamp(10px, 2vw, 15px);
    font-size: clamp(1.3rem, 3vw, 1.5rem);
}

.service-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-price {
    text-align: center;
    min-width: 150px;
    flex-shrink: 0;
}

.service-price p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    color: var(--accent-color);
}

.service-price .cta-button {
    width: 100%;
    padding: clamp(10px, 2.5vw, 12px) clamp(15px, 3vw, 20px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* --- Shop Page Styles --- */
.shop-grid {
    background-color: var(--light-gray);
}

.shop-note {
    background: var(--white);
    padding: clamp(20px, 4vw, 30px);
    border-radius: 12px;
    margin-top: clamp(30px, 6vw, 40px);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.shop-note p {
    margin: 0;
    color: #666;
    font-style: italic;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateY(-5px);
}

/* --- About Page Styles --- */
.about-content {
    display: flex;
    align-items: center;
    gap: clamp(30px, 6vw, 50px);
    margin-bottom: clamp(40px, 8vw, 60px);
}

.about-text {
    flex: 1;
}

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

.about-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* --- Blog Page Styles --- */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: var(--white);
    border-radius: 12px;
    padding: clamp(30px, 6vw, 40px);
    margin-bottom: clamp(30px, 6vw, 40px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-post h2 {
    color: var(--dark-text);
    margin-bottom: clamp(15px, 3vw, 20px);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.blog-post .meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: clamp(20px, 4vw, 25px);
    padding-bottom: clamp(15px, 3vw, 20px);
    border-bottom: 1px solid #eee;
}

.blog-post p {
    margin-bottom: clamp(15px, 3vw, 20px);
    line-height: 1.7;
}

/* --- Booking Page Styles --- */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: clamp(30px, 6vw, 40px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: clamp(20px, 4vw, 25px);
}

.form-group label {
    display: block;
    margin-bottom: clamp(8px, 2vw, 10px);
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 3vw, 15px);
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Consultation Page Styles --- */
.consultation-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    text-align: center;
    padding: clamp(60px, 10vw, 100px) 0;
}

.consultation-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: clamp(20px, 4vw, 30px);
    line-height: 1.2;
}

.consultation-hero p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.consultation-content {
    display: flex;
    gap: clamp(30px, 6vw, 50px);
    align-items: flex-start;
    margin-top: clamp(40px, 8vw, 60px);
}

.consultation-info {
    flex: 1;
}

.consultation-form {
    flex: 1;
    background: var(--white);
    padding: clamp(30px, 6vw, 40px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* --- Mobile Styles for All Pages --- */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(138, 209, 210, 0.05) 100%);
        backdrop-filter: blur(15px);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 20px;
        border-right: 2px solid var(--accent-color);
    }

    header nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    header nav ul {
        flex-direction: column;
        padding: 0;
        gap: 0;
        width: 100%;
        max-width: 350px;
        margin: 0;
    }

    header nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        list-style: none;
    }

    header nav ul li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }

    header nav ul li a {
        padding: 20px;
        font-size: 1.3rem;
        font-weight: 500;
        display: block;
        transition: all 0.3s ease;
        color: var(--dark-text);
        text-decoration: none;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(138, 209, 210, 0.1) 0%, rgba(244, 161, 161, 0.1) 100%);
        border: 1px solid rgba(138, 209, 210, 0.2);
        margin: 8px 0;
    }

    header nav ul li a:hover {
        background: linear-gradient(135deg, rgba(138, 209, 210, 0.2) 0%, rgba(244, 161, 161, 0.2) 100%);
        color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(138, 209, 210, 0.3);
    }

    header nav ul li a.cta-button {
        margin: 15px 0;
        display: block;
        width: 100%;
        border: none;
        background: linear-gradient(135deg, var(--accent-color) 0%, var(--pink-accent) 100%);
        color: var(--white);
        font-size: 1.2rem;
        padding: 20px;
        border-radius: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(138, 209, 210, 0.3);
    }

    header nav ul li a.cta-button:hover {
        background: linear-gradient(135deg, var(--accent-hover) 0%, var(--pink-hover) 100%);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(26, 166, 183, 0.4);
    }



    /* Ensure body doesn't scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Improve touch targets for mobile */
    header nav ul li a {
        min-height: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Add visual feedback for active states */
    header nav ul li a:active {
        background-color: rgba(0,0,0,0.1);
        transform: scale(0.98);
    }

    /* Improve mobile menu toggle button */
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Add smooth transitions for better UX */
    header nav ul li a,
    .mobile-menu-toggle {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Ensure proper contrast and readability */
    header nav {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Add subtle animation for menu items */
    header nav.active ul li {
        animation: slideInFromLeft 0.4s ease forwards;
        opacity: 0;
        transform: translateX(-20px);
    }

    header nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    header nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
    header nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
    header nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
    header nav.active ul li:nth-child(5) { animation-delay: 0.5s; }

    @keyframes slideInFromLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Mobile-specific layout improvements */
    .container {
        padding: 0 15px;
    }

    /* Home Page Mobile */
    .hero {
        padding: 60px 0;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
        margin-top: 40px;
    }

    .hero-buttons .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 22px 32px;
        font-size: 1.1rem;
        margin: 0;
        border-radius: 50px;
        min-width: auto;
        min-height: 60px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .intro-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .intro-text {
        order: 2;
        text-align: left;
    }

    .intro-image {
        order: 1;
        margin-top: 0;
    }

    .intro-image img,
    .intro-video {
        height: 300px;
        border-radius: 12px;
        object-fit: cover;
    }

    .service-cards, .product-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .card {
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-bottom: 0;
    }

    .card img,
    .service-video {
        height: 250px;
        border-radius: 16px 16px 0 0;
        object-fit: cover;
    }

    .card h3 {
        font-size: 1.3rem;
        margin: 20px 0 15px;
        padding: 0 20px;
        line-height: 1.3;
    }

    .card p {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .card span {
        font-size: 1.2rem;
        margin: 20px 0;
        padding: 0 20px;
    }

    .card ul {
        padding: 0 20px;
        margin: 15px 0;
    }

    .card li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .service-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 15px 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .blog-posts {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .post {
        padding: 25px;
        border-radius: 12px;
        border-left-width: 5px;
        margin-bottom: 0;
    }

    .post h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .post p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-about h3,
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Improved typography for mobile */
    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 25px;
    }

    /* Better spacing for mobile */
    .text-center {
        margin-top: 30px;
    }

    .text-center .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Additional mobile improvements */
    .intro .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .learn-more {
        font-size: 1rem;
        padding: 12px 20px;
        border: 2px solid var(--accent-color);
        border-radius: 8px;
        margin-top: 25px;
        display: inline-block;
    }

    /* Improve video responsiveness */
    #bg-video {
        transform: translate(-50%, -50%) scale(2.5);
    }

    /* Better touch targets */
    .cta-button, .learn-more, header nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    /* Services Page Mobile */
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }

    .service-details h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .service-details p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .service-price {
        min-width: auto;
        width: 100%;
    }

    .service-price p {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .service-price .cta-button {
        width: 100%;
        max-width: 200px;
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Shop Page Mobile */
    .shop-note {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .shop-note p {
        font-size: 0.95rem;
    }

    /* About Page Mobile */
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-text {
        order: 2;
        text-align: left;
    }

    .about-image {
        order: 1;
    }

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

    /* Blog Page Mobile */
    .blog-post {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .blog-post h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .blog-post .meta {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .blog-post p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Booking Page Mobile */
    .booking-form {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 1rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    /* Consultation Page Mobile */
    .consultation-hero {
        padding: 50px 0;
    }

    .consultation-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .consultation-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .consultation-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }

    .consultation-info {
        order: 2;
        padding: 0 20px;
    }

    .consultation-form {
        order: 1;
        margin: 0 15px;
        padding: 25px 20px;
    }
}

/* --- Small Mobile Styles --- */
@media (max-width: 480px) {
    /* Page Header Small Mobile */
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Services Page Small Mobile */
    .service-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .service-details h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-details p {
        font-size: 0.95rem;
    }

    .service-price p {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-price .cta-button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    /* Shop Page Small Mobile */
    .shop-note {
        padding: 20px 15px;
        margin-top: 25px;
    }

    .shop-note p {
        font-size: 0.9rem;
    }

    /* About Page Small Mobile */
    .about-content {
        gap: 25px;
    }

    /* Blog Page Small Mobile */
    .blog-post {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .blog-post h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .blog-post p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Booking Page Small Mobile */
    .booking-form {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Hero Buttons Small Mobile */
    .hero-buttons {
        gap: 30px;
        margin-top: 45px;
    }

    .hero-buttons .cta-button {
        max-width: 340px;
        padding: 25px 35px;
        font-size: 1.15rem;
        min-height: 65px;
    }

    /* Consultation Page Small Mobile */
    .consultation-hero {
        padding: 40px 0;
    }

    .consultation-hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .consultation-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .consultation-content {
        gap: 25px;
        margin-top: 25px;
    }

    .consultation-form {
        margin: 0 10px;
        padding: 20px 15px;
    }
}

/* --- Tablet Styles --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-cards, .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-content {
        gap: clamp(25px, 5vw, 35px);
    }

    .hero-buttons {
        gap: 20px;
    }

    .hero-buttons .cta-button {
        min-width: 180px;
        padding: 18px 36px;
    }
}

/* --- Large Screen Optimizations --- */
@media (min-width: 1025px) {
    .container {
        padding: 0 clamp(20px, 4vw, 40px);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-buttons {
        gap: 30px;
    }

    .hero-buttons .cta-button {
        min-width: 220px;
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}

/* --- Accessibility Improvements --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- High Contrast Mode --- */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--dark-text);
    }

    .cta-button {
        border: 2px solid var(--dark-text);
    }
}

/* --- Mobile Performance Optimizations --- */
@media (max-width: 768px) {
    /* Improve scrolling performance */
    .hero, .intro, .featured-services, .featured-products, .blog-preview {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Better focus states for accessibility */
    .cta-button:focus,
    .learn-more:focus,
    header nav ul li a:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }
    
    /* Improve video performance on mobile */
    #bg-video {
        will-change: transform;
    }
}

/* --- Print Styles --- */
@media print {
    header, footer, .cta-button {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* --- Loading States --- */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* --- Smooth scrolling for anchor links --- */
html {
    scroll-behavior: smooth;
}

/* --- Prevent horizontal scroll on mobile --- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        overflow-x: hidden;
    }
} 

/* --- Additional Mobile Optimizations --- */
@media (max-width: 768px) {
    /* Better form handling on mobile */
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"] {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Improve video responsiveness */
    video {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Better table handling on mobile */
    table {
        font-size: 0.9rem;
        overflow-x: auto;
        display: block;
    }

    /* Improve button spacing in forms */
    .form-group .cta-button {
        margin-top: 10px;
        width: 100%;
    }

    /* Better image handling */
    .studio-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .studio-gallery video {
        width: 100%;
        height: auto;
    }

    /* Improve blog post layout */
    .blog-post-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .blog-post-image {
        order: -1;
    }

    .blog-post-image img {
        height: 200px;
        object-fit: cover;
    }

    /* Better service item layout */
    .service-item {
        margin-bottom: 20px;
    }

    /* Improve consultation form */
    .consultation-form {
        margin: 0 10px;
    }

    .date-options,
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
    }

    .date-option,
    .time-slot {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    /* Better error message display */
    .error-message,
    .success-message {
        margin: 15px 0;
        padding: 15px;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    /* Improve loading states */
    .loading {
        padding: 20px;
        text-align: center;
    }

    /* Better social media links */
    .footer-social a {
        display: inline-block;
        padding: 10px 15px;
        margin: 5px;
        border-radius: 8px;
        background: rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background: rgba(255,255,255,0.2);
    }
}

/* --- Extra Small Mobile Optimizations --- */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .service-item {
        padding: 15px 10px;
    }

    .service-details h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-details p {
        font-size: 0.9rem;
    }

    .service-price .cta-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .booking-form,
    .consultation-form {
        padding: 15px 10px;
        margin: 0 5px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .date-options,
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 5px;
    }

    .date-option,
    .time-slot {
        padding: 8px 6px;
        font-size: 0.85rem;
    }

    .card {
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 1.1rem;
        margin: 15px 0 10px;
        padding: 0 15px;
    }

    .card p {
        font-size: 0.9rem;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .card span {
        font-size: 1.1rem;
        margin: 15px 0;
        padding: 0 15px;
    }

    .service-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 12px 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .blog-post-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .blog-post-image img {
        height: 150px;
    }

    .blog-post-content h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .blog-post-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .post-date {
        font-size: 0.8rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 18px;
    }

    .text-center .cta-button {
        max-width: 100%;
    }
}

/* --- Landscape Mobile Optimizations --- */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

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

    .hero-buttons {
        flex-direction: row;
        gap: 20px;
        margin-top: 25px;
    }

    .hero-buttons .cta-button {
        width: auto;
        max-width: 220px;
        padding: 16px 24px;
        min-height: 50px;
    }

    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-padding {
        padding: 25px 0;
    }

    .service-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .booking-wrapper,
    .consultation-content {
        gap: 20px;
    }

    .booking-form,
    .consultation-form {
        padding: 20px 15px;
    }
}

/* --- High DPI Display Optimizations --- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .card img,
    .service-video,
    .intro-image img,
    .about-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* --- Print Optimizations --- */
@media print {
    .mobile-menu-toggle,
    .cta-button,
    .hero-buttons,
    .footer-social {
        display: none !important;
    }

    .page-header {
        background: none !important;
        color: #000 !important;
        padding: 20px 0 !important;
    }

    .service-item,
    .card,
    .blog-post-item {
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .hero {
        color: #000 !important;
        background: none !important;
        padding: 20px 0 !important;
    }

    .hero-overlay {
        display: none !important;
    }

    #bg-video {
        display: none !important;
    }
} 