/* CSS Variables for Light/Dark Mode */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-tertiary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #eeeeee;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --bg-primary-rgb: 255, 255, 255;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3d3d3d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #444444;
    --card-bg: #2d2d2d;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --bg-primary-rgb: 26, 26, 26;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: 'Dancing Script', cursive;
    color: var(--text-primary);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 117, 140, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.4);
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
}

/* Watercolor Background Effect */
.watercolor-bg {
    position: relative;
    overflow: hidden;
}

.watercolor-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 126, 179, 0.2) 0%, rgba(255, 117, 140, 0.1) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    transform: rotate(-30deg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(var(--bg-primary-rgb), 0.95);
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    margin-left: 1rem;
}

.theme-btn {
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.nav-btn {
    display: inline-block !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(255, 117, 140, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    margin-left: 15px;
}

.nav-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.4) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* About Section */
.about {
    background-color: var(--bg-primary);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff7eb3;
    border-radius: 10px;
    z-index: -1;
}

.mission-box {
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.1) 0%, rgba(255, 117, 140, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(255, 126, 179, 0.3) 0%, rgba(255, 117, 140, 0.2) 50%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.unique-list {
    margin-top: 1.5rem;
}

.unique-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.unique-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ff7eb3;
    margin-right: 10px;
}

/* Services Section */
.services {
    background-color: var(--bg-secondary);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    height: 150px;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-duration {
    display: inline-block;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-secondary);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ff7eb3;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff758c;
    font-family: 'Montserrat', sans-serif;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ff7eb3;
    margin-right: 10px;
}

.additional-services {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: var(--border-color);
    transform: translateX(5px);
}

.service-name {
    font-weight: 500;
}

.service-price {
    font-weight: 700;
    color: #ff758c;
    font-family: 'Montserrat', sans-serif;
}

.comparison-table {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--bg-tertiary);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

tr:hover {
    background-color: var(--bg-tertiary);
}

/* Booking Section */
.booking {
    background-color: var(--bg-primary);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-intro {
    text-align: center;
    padding: 3rem 0;
}

.booking-intro p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.booking-intro .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.booking-calendar {
    background-color: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.booking-calendar h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.calendar-nav {
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    transform: scale(1.1);
}

.calendar-grid {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #ff7eb3;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #ddd;
}

.calendar-day {
    background-color: var(--card-bg);
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background-color: #f8f9fa;
}

.calendar-day.selected {
    background-color: #ff7eb3;
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.calendar-day.today {
    border: 2px solid #ff7eb3;
}

.time-slots {
    margin-top: 2rem;
}

.time-slots h4 {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.8rem 0.5rem;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.time-slot:hover {
    background-color: #f8f9fa;
    border-color: #ff7eb3;
}

.time-slot.selected {
    background-color: #ff7eb3;
    color: white;
    border-color: #ff7eb3;
}

.time-slot.disabled {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.booking-form {
    background-color: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-secondary);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #ff7eb3;
    font-family: 'Dancing Script', cursive;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

.rating {
    color: #ffc107;
}

.rating i {
    margin-left: 2px;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-tertiary);
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ff7eb3;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-primary);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
}

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.2rem;
    }
}

/* Before/After Slider */
.before-after-section {
    margin-bottom: 4rem;
}

.before-after-container {
    max-width: 600px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.before-after-item {
    position: relative;
    height: 400px;
    cursor: col-resize;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    border-right: 2px solid white;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: col-resize;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '⯈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #ff7eb3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background-color: var(--bg-secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: #ff7eb3;
    box-shadow: 0 0 0 2px rgba(255, 126, 179, 0.2);
}

.form-control.error {
    border-color: #ff4757;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.2);
}

.error-message {
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #2ed573;
}

.notification.error {
    background-color: #ff4757;
}

.notification.info {
    background-color: #3742fa;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 4rem 0 2rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 70px !important;
    background-color: var(--bg-primary) !important;
    display: none !important; /* Force hidden by default */
    justify-content: space-around !important;
    align-items: center !important;
    padding: 10px 0 !important;
    box-shadow: 0 -2px 15px var(--shadow-color) !important;
    z-index: 999999 !important; /* Maximum z-index */
    border-top: 1px solid var(--border-color) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto !important;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
    }
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.mobile-bottom-nav-item.active {
    color: #ff7eb3;
}

.mobile-bottom-nav-item.book-btn {
    position: relative;
    top: -15px;
}

.mobile-bottom-nav-item.book-btn .icon-circle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 117, 140, 0.4);
    margin-bottom: 2px;
    border: 4px solid var(--bg-primary);
}

.mobile-bottom-nav-item.book-btn .icon-circle i {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.mobile-bottom-nav-item.book-btn span {
    margin-top: -5px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: #ddd;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff7eb3;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff7eb3;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ddd;
}

.footer-contact p i {
    margin-right: 10px;
    color: #ff7eb3;
}

/* Updated footer button style */
.footer-contact .btn {
    display: inline-block !important;
    margin-top: 10px !important;
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--card-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .comparison-table {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .table-container {
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1.2rem;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-day {
        padding: 0.8rem 0.3rem;
        min-height: 50px;
        font-size: 0.85rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .booking-calendar,
    .booking-form {
        padding: 1.5rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .before-after-item {
        height: 250px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo img {
        height: 60px;
        margin-bottom: 0.5rem;
    }

    .footer-about p {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .footer-links h4, .footer-contact h4 {
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }

    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-links ul li {
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
    }

    .footer-contact p {
        justify-content: center;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .footer-action-btns {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .footer-contact .btn {
        margin-top: 0 !important;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .nav-links .btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}