/* 
   Blushline Studio - Main Stylesheet
   Elegant, feminine design with soft colors and modern typography
*/

/* ===== VARIABLES ===== */
:root {
    --color-blush: #f5a9b8;
    --color-blush-light: #fae7e7;
    --color-blush-dark: #e47a8e;
    --color-beige: #f5e8d8;
    --color-cream: #faf6f0;
    --color-charcoal: #444444;
    --color-charcoal-light: #777777;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-accent: #f5a9b8;
      --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Add max-width for better readability on larger screens */
.feature-text p, 
.service-card p, 
.promo-text p, 
.testimonial-text p, 
.contact-form p {
    max-width: 60ch;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-blush);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: var(--color-blush-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-blush);
}

.btn-secondary:hover {
    background-color: var(--color-blush-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 4rem; /* Further increased horizontal padding for better desktop layout */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 65px; /* Further adjusted for better desktop proportion */
    width: auto; /* Keep aspect ratio */
    display: block;
    margin-right: 10px; /* Add some space if there's content next to it */
    object-fit: contain; /* Ensure the logo displays properly */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
}

.nav-menu li {
    margin: 0 1.2rem;
    position: relative;
}

.nav-menu a {
    color: var(--color-charcoal);
    font-weight: 500;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-blush);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-blush-dark);
}

.nav-menu a:hover:after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--color-blush-dark);
}

.nav-menu a.active:after {
    width: 100%;
    left: 0;
    transform: none;
}

.nav-cta {
    background-color: var(--color-blush-light);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--color-blush);
    color: white;
}

.nav-cta:after {
    display: none;
}

.btn-book-nav {
    background-color: var(--color-blush);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 2rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245, 169, 184, 0.3);
    transition: all 0.3s ease;
}

.btn-book-nav:hover {
    background-color: var(--color-blush-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 169, 184, 0.4);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px 0;
    background-color: var(--color-charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--color-blush-dark);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--color-blush-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 90vh;
    position: relative;
    background: url('images/header.png');
    background-size: cover;
    background-position: right center;
    display: flex;
    align-items: center;
    text-align: left;
    padding-top: 0;
    overflow: hidden;
    box-shadow: inset 0 -10px 20px -10px rgba(0,0,0,0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(0,0,0,0.5) 0%, 
                rgba(0,0,0,0.35) 20%, 
                rgba(0,0,0,0.2) 50%,
                rgba(0,0,0,0.1) 80%), 
                linear-gradient(180deg, 
                rgba(245, 169, 184, 0.2) 0%, 
                rgba(245, 169, 184, 0.35) 100%);
}

.hero-content {
    max-width: 550px;
    margin: 0 8% 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    text-align: right;
}

.hero h1 {
    color: var(--color-white);
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    line-height: 1.2;
    position: relative;
    font-weight: 600;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: var(--color-blush);
}

.tagline {
    font-size: 1.3rem;
    margin: 2rem 0;
    color: var(--color-white);
    font-family: var(--font-body);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 90%;
    margin-left: auto;
}

/* Booking Widget */
.booking-widget {
    background-color: var(--color-white);
    padding: 1.8rem 0;
    margin-top: -2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 5;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-blush) 0%, var(--color-blush-light) 100%);
}

.booking-widget .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-form {
    display: flex;
    gap: 1.2rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.booking-input {
    min-width: 160px;
}

.booking-input label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal-light);
}

.booking-input select,
.booking-input input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: var(--color-white);
}

.btn-book {
    background-color: var(--color-blush);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    height: 45px;
    align-self: flex-end;
}

.btn-book:hover {
    background-color: var(--color-blush-dark);
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-charcoal);
}

.phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blush);
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-text span {
    font-size: 0.8rem;
    color: var(--color-charcoal-light);
}

.phone-text strong {
    font-size: 1.1rem;
}

/* ===== FEATURE SECTION ===== */
.feature-section {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.feature-image {
    grid-column: span 4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 400px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-images {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-small-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 190px;
    object-fit: cover;
}

.feature-text {
    grid-column: span 5;
    padding: 2rem 0;
}

.feature-text h2 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.with-accent {
    position: relative;
    padding-bottom: 1rem;
}

.with-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--color-blush);
}

.feature-icons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-icon-box {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--color-blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blush);
}

.feature-icon-text h4 {
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.feature-icon-text p {
    font-size: 0.9rem;
    color: var(--color-charcoal-light);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--color-charcoal-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: -1.5rem auto 2rem;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-highlight-box {
    position: relative;
}

.highlight-content {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.experience-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.experience-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px; /* Increased gap between images */
    aspect-ratio: 1/1;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 20px; /* Increased padding around all images */
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(249,232,235,0.3) 100%);
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.experience-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.experience-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.experience-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,250,252,0.2) 0%, rgba(235,190,200,0.2) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

.experience-image:hover::after {
    opacity: 0.2;
}

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exp-img:hover {
    transform: scale(1.1);
}

.experience-caption {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-blush-light) 100%);
    padding: 1.2rem;
    margin-top: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(245, 169, 184, 0.1);
}

.experience-caption:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-blush-light) 70%);
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    width: 120px;
    height: 120px;
    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--color-blush-light);
    transition: all 0.3s ease;
}

.experience-badge:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-blush);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-blush);
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    position: relative;
    padding: 0 5px;
}

.experience-number::after {
    content: '';
    position: absolute;
    bottom: 0.1rem;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(245, 169, 184, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.experience-text {
    font-size: 1rem;
    color: var(--color-charcoal-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.2;
}

.highlight-image {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

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

.service-card {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: left;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(245, 169, 184, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blush) 0%, var(--color-blush-light) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    background-color: var(--color-blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--color-cream);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1.5rem 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    min-width: calc(33.333% - 1.5rem);
    scroll-snap-align: start;
    border: 1px solid #f0f0f0;
    flex: 1;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: var(--color-blush);
    font-size: 1.2rem;
}

.testimonial-text {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    text-align: left;
}

.testimonial-image {
    margin-right: 1rem;
    margin-bottom: 0;
}

.placeholder-headshot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-beige);
}

.client-headshot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
    font-style: normal;
    color: var(--color-charcoal);
    margin-bottom: 0.2rem;
}

.client-title {
    font-size: 0.85rem;
    color: var(--color-charcoal-light);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-prev,
.control-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-charcoal);
}

.control-prev:hover,
.control-next:hover {
    background-color: var(--color-blush-light);
    color: var(--color-blush-dark);
    border-color: var(--color-blush-light);
}

/* ===== PROMO SECTION ===== */
.promo-section {
    background-color: var(--color-blush-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.promo-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
}

.promo-text {
    flex: 1;
    padding-left: 2rem;
}

.promo-text h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.promo-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.promo-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.makeup-tools {
    max-width: 70%;
    margin: 0 auto;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.promo-image:hover .makeup-tools {
    transform: translateY(-10px) rotate(2deg);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

/* ===== PRICING SECTION ===== */
.pricing {
    background-color: var(--color-white);
    padding: 5rem 0;
}

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

.pricing-card {
    background-color: var(--color-cream);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    background-color: var(--color-blush-light);
    transform: translateY(-10px);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--color-charcoal);
    font-family: var(--font-heading);
}

.pricing-card .price-details {
    margin-bottom: 2rem;
    color: var(--color-charcoal-light);
}

.pricing-card .btn {
    margin-top: auto;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--color-cream);
    padding: 5rem 0;
}

/* ===== FOOTER CTA SECTION ===== */
.footer-cta {
    background-color: var(--color-blush-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--color-charcoal);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-large);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blush);
    box-shadow: 0 0 0 2px rgba(245, 169, 184, 0.2);
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message h3 {
    color: var(--color-blush);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--color-cream);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 100px; /* Further increased size to 100px */
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-tagline {
    color: var(--color-charcoal-light);
    font-style: italic;
    font-family: var(--font-heading);
}

.footer-newsletter h4 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px 0 0 5px;
    width: 250px;
    font-family: var(--font-body);
}

.newsletter-form button {
    background-color: var(--color-blush);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--color-blush-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-info p {
    margin-bottom: 0.8rem;
    color: var(--color-charcoal-light);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-charcoal-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-blush);
}

.footer-hours p {
    margin-bottom: 0.8rem;
    color: var(--color-charcoal-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blush-dark);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-blush);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-charcoal-light);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-blush);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-blush-dark);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1024px) {
    .experience-grid {
        max-width: 600px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-image {
        grid-column: 1 / -1;
        height: 350px;
    }
    
    .feature-images {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    
    .feature-small-image {
        flex: 1;
    }
    
    .feature-text {
        grid-column: 1 / -1;
        padding: 0;
    }
    
    .booking-widget .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .booking-form {
        width: 100%;
    }
    
    .phone-contact {
        align-self: flex-start;
    }
    
    .services-highlight {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
      .promo-content {
        flex-direction: column-reverse;
    }
      .promo-text {
        padding-left: 0;
        text-align: center;
    }
    
    .promo-text h2 {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .experience-grid {
        max-width: 450px;
        gap: 10px;
    }
    
    .experience-caption {
        padding: 1rem;
        margin-top: 1rem;
    }
    
      .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
        margin: 0;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
      .experience-number {
        font-size: 2.2rem;
    }
    
    .experience-text {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
      .navbar {
        padding: 0.5rem 1.2rem;
    }
    
    .logo-image {
        height: 55px; /* Smaller logo on mobile */
    }
    
    .btn-book-nav {
        display: none; /* Hide the top nav booking button on mobile */
    }
    
    .menu-toggle {
        display: block;
    }      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        box-shadow: var(--shadow-medium);
        z-index: 150;
        margin: 0;
        opacity: 0;
    }
    
    .nav-menu.active {
        right: 0;
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-cta {
        background-color: transparent;
        color: var(--color-blush);
        font-weight: bold;
    }    .hero {
        height: 85vh; /* Slightly shorter on mobile */
        justify-content: center;
        background-position: 70% center; /* Focus more on the treatment area in mobile */
    }
    
    .hero::before {
        background: linear-gradient(0deg, 
                    rgba(0,0,0,0.45) 0%, 
                    rgba(0,0,0,0.65) 50%,
                    rgba(0,0,0,0.45) 100%);
    }
      .hero-content {
        margin: 0 2rem 0 auto;
        text-align: right;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    
    .hero h1::after {
        right: 0;
        width: 60px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
      .booking-widget {
        padding: 1.5rem 0;
    }
    
    .booking-input {
        flex: 1 0 100%;
    }
    
    .booking-form {
        gap: 0.8rem;
    }
    
    .booking-input label {
        font-weight: 500;
        margin-bottom: 0.3rem;
    }
    
    .btn-book {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.9rem;
    }
    
    .phone-contact {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1.2rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-images {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
      .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-tagline {
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .newsletter-form input {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
}

@media screen and (max-width: 480px) {
    .experience-grid {
        max-width: 320px;
        gap: 8px;
        padding: 8px;
    }
    
    .experience-caption {
        padding: 0.8rem;
        flex-direction: row;
        gap: 10px;
        margin-top: 1rem;
    }
    
      .experience-badge {
        width: 90px;
        height: 90px;
        padding: 0.8rem;
        border-width: 2px;
        margin: 0;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
      .experience-number {
        font-size: 2rem;
    }
    
    .experience-text {
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero-content {
        margin: 0 1rem 0 auto;
        max-width: 90%;
    }
      .contact-form {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
      .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 85%;
        padding: 1.5rem;
    }
    
    .testimonial-controls {
        margin-top: 1.5rem;
    }
    
    .control-prev, 
    .control-next {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
}
