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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #4a2c17;
    background: linear-gradient(135deg, #fef4ec 0%, #fde8d7 100%);
    scroll-behavior: smooth;
    padding-top: 90px;
}

/* Custom Calendar Styles */
.date-display {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.date-display:hover,
.date-display:focus {
    border-color: #ff7f50;
    outline: none;
}

.custom-calendar {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 5px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 100%;
    max-width: min(90vw, 400px);
    margin-left: auto;
    margin-right: auto;
    z-index: 1000;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff7f50;
    color: white;
    padding: 1rem;
    font-weight: bold;
}

.calendar-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.calendar-header button:hover {
    background: rgba(255,255,255,0.2);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    background: white;
}

.day-header {
    background: #f8f8f8;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: bold;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: #666;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    aspect-ratio: auto;
}

.day-header:first-child {
    border-left: 1px solid #f0f0f0;
}

.day {
    background: white;
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
}

.day:nth-child(7n+8) {
    border-left: 1px solid #f0f0f0;
}

.day.available {
    color: #333;
    background: white;
}

.day.available:hover {
    background: #ffe5db;
    color: #ff7f50;
}

.day.selected {
    background: #ff7f50;
    color: white;
    font-weight: bold;
}

.day.unavailable {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.day.disabled {
    background: #f9f9f9;
    color: #ddd;
    cursor: not-allowed;
}

.day.other-month {
    color: #ccc;
}

.day.other-month.unavailable {
    color: #eee;
}

/* Instagram link styling */
.contact-item h4:last-of-type {
    margin-top: 20px;
}

.instagram-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .custom-calendar {
        max-width: 95vw;
    }
    
    .calendar-header {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .calendar-header button {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-calendar {
        max-width: 98vw;
    }
    
    .calendar-header {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .calendar-header button {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
}

/* Header */
header {
    width: 100%;
    background: rgba(254, 244, 236, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 127, 80, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d2691e;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a2c17;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

/* Services Dropdown */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(254, 244, 236, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid #ff7f50;
    border-radius: 15px;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
    margin-top: 0.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-category {
    margin-bottom: 1rem;
}

.dropdown-category:last-child {
    margin-bottom: 0;
}

.dropdown-category h4 {
    color: #4a2c17;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 127, 80, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-category li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a2c17;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    color: white;
    transform: none;
    box-shadow: none;
    border-left: 3px solid rgba(255,255,255,0.5);
    padding-left: 1.25rem;
}

/* Service Page Styles */
.service-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #fef4ec 0%, #fde8d7 50%, #fcd5b4 100%);
    position: relative;
    overflow: hidden;
}

.service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 5%;
}

.service-hero-image {
    flex: 1;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-hero-text {
    flex: 1;
    text-align: left;
}

.service-hero-text h1 {
    font-size: 2.5rem;
    color: #d2691e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.2rem;
    color: #6b4226;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-highlights {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
}

.service-detail {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail strong {
    display: block;
    font-size: 1rem;
    color: #4a2c17;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.service-detail span {
    display: block;
    font-size: 1.1rem;
    color: #ff7f50;
    font-weight: 600;
}

.hero-book-btn {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
    text-align: center;
}

.hero-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
    text-decoration: none;
    color: white;
}

/* Service Pricing Table */
.service-pricing-table {
    margin-top: 2rem;
}

.service-pricing-table h3 {
    font-size: 1.3rem;
    color: #4a2c17;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.pricing-options {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 127, 80, 0.1);
}

.pricing-option:last-child {
    border-bottom: none;
}

.option-name {
    font-size: 1rem;
    color: #4a2c17;
    font-weight: 500;
}

.option-price {
    font-size: 1.1rem;
    color: #ff7f50;
    font-weight: bold;
}

.service-duration-info {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 1rem;
    color: #4a2c17;
}

.service-duration-info strong {
    color: #4a2c17;
}

.service-benefits {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-benefits-content h2 {
    text-align: center;
    font-size: 2rem;
    color: #d2691e;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid .benefit-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.benefits-grid .benefit-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.benefits-grid .benefit-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.benefits-grid .benefit-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-booking {
    padding: 60px 5%;
    background: linear-gradient(135deg, #fef4ec 0%, #fde8d7 100%);
}

.service-booking-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-booking-content h2 {
    text-align: center;
    font-size: 2rem;
    color: #4a2c17;
    margin-bottom: 1rem;
}

.service-booking-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6b4226;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-about {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-about-content h2 {
    text-align: center;
    font-size: 2rem;
    color: #4a2c17;
    margin-bottom: 3rem;
}

.service-contact {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef4ec 0%, #fde8d7 100%);
}

.service-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-contact .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-contact .contact-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-contact .contact-item:hover {
    transform: translateY(-3px);
}

.service-contact .contact-item h4 {
    color: #4a2c17;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-contact .contact-item p {
    color: #6b4226;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-contact .contact-item .instagram-link {
    color: #ff7f50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-contact .contact-item .instagram-link:hover {
    color: #4a2c17;
}

/* Hero Section */
.hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #fef4ec 0%, #fde8d7 50%, #fcd5b4 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-image {
    flex: 0 0 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.2);
}

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

.hero h1 {
    font-family: 'Young Serif', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d2691e;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a2c17;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
}

/* Section Styles */
section {
    padding: 80px 5%;
    margin: 0 auto;
}

h2 {
    font-family: 'Young Serif', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #d2691e;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    border-radius: 2px;
}

/* Menu Section */
.services-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.services-grid .service-category:first-child {
    flex: 1;
}

.services-grid-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 127, 80, 0.2);
    border-color: #ffa07a;
}

.service-category h3 {
    font-family: 'Young Serif', serif;
    font-size: 1.8rem;
    color: #d2691e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #fde8d7;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: #4a2c17;
}

.service-price {
    font-weight: bold;
    color: #ff7f50;
    font-size: 1.1rem;
}

/* About Section */
.about-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.1);
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a2c17;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.2);
}

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

/* Book Now Section */
.book-section {
    background: linear-gradient(135deg, #ff7f50, #ffa07a);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
}

.book-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.book-section h2::after {
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item h4 {
    font-family: 'Young Serif', serif;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-family: 'Young Serif', serif;
    color: #d2691e;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #4a2c17;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #fde8d7;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #4a2c17;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 44px;
    box-sizing: border-box;
}

.form-group input[type="date"] {
    padding: 12px 15px;
    height: 44px;
    line-height: 1.2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7f50;
    box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.1);
    color: #4a2c17;
}

.form-group select option {
    color: #4a2c17;
    background: white;
}

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

.submit-button {
    background: linear-gradient(45deg, #ff7f50, #ffa07a);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.3);
    display: block;
    margin: 2rem auto 0;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #ff7f50, #ffa07a);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
}

.error-message {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.error-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.error-list li {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: #4a2c17;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        padding: 1rem 3%;
        gap: 1rem;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        height: 60px;
        width: auto;
    }

    .nav-links {
        gap: 1.5rem;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

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

    .hero-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 3%;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .about-image {
        flex: none;
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    section {
        padding: 60px 3%;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .services-grid-right {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .service-category {
        width: 100%;
        max-width: 500px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Service Page Mobile Styles */
    .service-hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .service-hero-image {
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .service-hero-text {
        text-align: center;
    }

    .service-hero-text h1 {
        font-size: 1.8rem;
    }

    .service-description {
        font-size: 1.1rem;
    }

    .service-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail {
        padding: 1rem;
    }

    .service-detail strong {
        font-size: 0.9rem;
    }

    .service-detail span {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem;
    }

    .benefits-grid .benefit-item:nth-child(1),
    .benefits-grid .benefit-item:nth-child(2),
    .benefits-grid .benefit-item:nth-child(3),
    .benefits-grid .benefit-item:nth-child(4) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .service-contact .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-contact .contact-item {
        padding: 1.5rem;
    }

    /* Mobile Pricing Table Styles */
    .service-pricing-table h3 {
        font-size: 1.1rem;
    }

    .pricing-options {
        padding: 1rem;
    }

    .pricing-option {
        padding: 0.5rem 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .option-name {
        font-size: 0.9rem;
    }

    .option-price {
        font-size: 1rem;
    }

    .service-duration-info {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Booking Confirmation Page Styles */
.confirmation-section {
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.confirmation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.confirmation-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    margin-bottom: 30px;
}

.confirmation-content h1 {
    font-family: 'Young Serif', serif;
    color: #4a2c17;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.confirmation-message {
    text-align: left;
    margin-bottom: 30px;
}

.confirmation-message p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.booking-summary {
    background: rgba(255, 127, 80, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ff7f50;
}

.booking-summary h3 {
    color: #4a2c17;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.booking-summary ul {
    list-style: none;
    padding: 0;
}

.booking-summary li {
    padding: 6px 0;
    color: #666;
}

.next-steps,
.contact-reminder {
    background: #fef4ec;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.next-steps h3,
.contact-reminder h3 {
    color: #4a2c17;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.next-steps ul,
.contact-reminder ul {
    list-style: none;
    padding: 0;
}

.next-steps li,
.contact-reminder li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.contact-reminder li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff7f50;
    font-weight: bold;
}

.next-steps li:last-child,
.contact-reminder li:last-child {
    border-bottom: none;
}

.contact-reminder a {
    color: #ff7f50;
    text-decoration: none;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

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

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

.btn-secondary {
    background: white;
    color: #ff7f50;
    border: 2px solid #ff7f50;
}

.btn-secondary:hover {
    background: #ff7f50;
    color: white;
    transform: translateY(-2px);
}

.confirmation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-info,
.hours-info,
.payment-info,
.preparation-tips {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.location-info h4,
.hours-info h4,
.payment-info h4,
.preparation-tips h4 {
    color: #4a2c17;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.location-info p,
.hours-info p,
.payment-info p {
    margin-bottom: 10px;
    color: #666;
}

.location-info small {
    color: #999;
    font-style: italic;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.payment-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.payment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.preparation-tips ul {
    list-style: none;
    padding: 0;
}

.preparation-tips li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.preparation-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

.preparation-tips li:last-child {
    border-bottom: none;
}

/* Responsive Design for Confirmation Page */
@media (max-width: 768px) {
    .confirmation-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .confirmation-content {
        padding: 25px;
    }
    
    .confirmation-content h1 {
        font-size: 2rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}