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

:root {
    --primary-color: #d4a5a5;
    --secondary-color: #c89595;
    --accent-color: #f5e6e6;
    --text-color: #333;
    --light-bg: #fafafa;
    --white: #ffffff;
    --dark: #2c2c2c;
    --rose-gold: #e8b4b8;
    --soft-pink: #f8e8e8;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 165, 165, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 1rem 0;
    margin-top: 1rem;
}

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

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    font-size: 0.9rem;
}

.dropdown-menu .submenu {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0 0 0 1.2rem;
    border-left: 2px solid rgba(212, 165, 165, 0.2);
}

.dropdown-menu .submenu li {
    padding: 0.35rem 0;
}

.dropdown-menu .submenu a {
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.85);
}

.dropdown-menu .submenu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: var(--soft-pink);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.7) 0%, rgba(200, 149, 149, 0.6) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    position: relative;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: var(--text-color);
}

.slider-controls button:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark);
    font-weight: 300;
}

.section-title strong {
    font-weight: 600;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #666;
}

/* About Section */
.about-section {
    background: var(--white);
    padding: 6rem 0;
}

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

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.about-content {
    padding: 2rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-pink) 100%);
    padding: 6rem 0;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 165, 165, 0.25);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 400;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    flex: 1;
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
    padding: 6rem 0;
}

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

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.15);
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author strong {
    color: var(--dark);
    font-size: 1.1rem;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-text {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* Price List Section */
.pricelist-section {
    background: var(--white);
    padding: 6rem 0;
}

.pricelist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.price-category {
    background: var(--soft-pink);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.25);
}

.price-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-category h3 i {
    font-size: 1.5rem;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.2);
    transition: padding-left 0.3s;
}

.price-list li:hover {
    padding-left: 0.5rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--dark);
    font-weight: 500;
    flex: 1;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.pricelist-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.pricelist-note p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.pricelist-note strong {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--soft-pink) 0%, var(--white) 100%);
    padding: 6rem 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-inline-links {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25d366;
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.store-hours {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--accent-color) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.2);
}

.store-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.store-hours ul {
    list-style: none;
}

.store-hours li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.store-hours li:last-child {
    border-bottom: none;
}

.store-hours strong {
    color: var(--dark);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--white);
    transform: scale(1.2);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
    z-index: 1;
}

.booking-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: var(--soft-pink);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn,
.cancel-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.3);
}

.cancel-btn {
    background: var(--light-bg);
    color: var(--text-color);
    border: 2px solid #e0e0e0;
}

.cancel-btn:hover {
    background: #e0e0e0;
}

.booking-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--soft-pink);
    text-align: center;
}

.booking-alternative p {
    color: #666;
    margin: 0.5rem 0;
}

.booking-alternative a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.booking-alternative a:hover {
    color: var(--secondary-color);
}

.booking-alternative i {
    margin-right: 0.5rem;
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--primary-color);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.summary-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-header i {
    font-size: 1.2rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.3);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
}

.summary-value.price-value {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.summary-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 165, 0.3);
}

.summary-note small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.summary-note i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.booking-success {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--accent-color) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
}

.booking-success i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.booking-success h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-success p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.booking-success a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.booking-success a:hover {
    text-decoration: underline;
}

.success-close-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.success-close-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Service Detail Pages */
.service-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.35) 0%, rgba(200, 149, 149, 0.15) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.65) 0%, rgba(22, 22, 22, 0.25) 100%);
    backdrop-filter: blur(2px);
}

.service-hero__layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.service-hero__media {
    flex: 1 1 380px;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.service-hero__media img {
    width: 100%;
    display: block;
    border-radius: 26px;
    object-fit: cover;
    height: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.service-hero__content {
    position: relative;
    color: var(--white);
    max-width: 520px;
    background: rgba(22, 22, 22, 0.65);
    padding: 2.5rem;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.service-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.service-hero__content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-hero__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ghost-button {
    display: inline-block;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background: var(--white);
    color: var(--primary-color);
}

.service-section {
    padding: 5rem 0;
}

.service-section.alt {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.service-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.service-section p.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    color: #666;
}

.service-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(212, 165, 165, 0.18);
    padding: 3rem;
}

.service-overview img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

.service-overview h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-overview p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-overview ul {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.service-overview ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #555;
}

.service-overview ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

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

.service-highlight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(212, 165, 165, 0.25);
}

.service-highlight-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-highlight-card p {
    color: #555;
    line-height: 1.7;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.service-gallery figure {
    position: relative;
    margin: 0;
}

.service-gallery img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    min-height: 220px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.service-gallery figcaption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

.service-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 18px;
    padding: 3.5rem 2rem;
    box-shadow: 0 20px 50px rgba(212, 165, 165, 0.35);
}

.service-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.service-cta .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.service-cta .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-settings {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cookie-settings:hover {
    background: var(--text-color);
    color: var(--white);
}

.cookie-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 4rem 0;
    }

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

    .pricelist-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin: 0.5rem 0 0 0;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        padding: 0.5rem 0;
    }

    .hero-slider {
        height: 550px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .service-hero {
        padding: 4rem 0;
        min-height: 320px;
    }

    .service-hero__layout {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .service-hero__content h1 {
        font-size: 2.4rem;
    }

    .service-hero__content {
        padding: 2rem;
    }

    .service-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.2rem;
    }

    .service-hero__media {
        max-width: 95%;
        margin: 0 auto;
    }

    .service-hero__media img {
        border-radius: 22px;
    }

    .service-highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .service-gallery {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-section,
    .services-section,
    .reviews-section,
    .contact-section,
    .pricelist-section {
        padding: 4rem 0;
    }

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

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .store-hours {
        width: 100%;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .dropdown-menu .submenu {
        padding-left: 0;
        border-left: none;
    }

    .dropdown-menu .submenu li {
        padding: 0.4rem 0;
    }

    .info-content {
        max-width: 90%;
        padding: 2rem;
    }

    .info-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .info-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-slider {
        height: 450px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        width: auto;
        display: inline-block;
    }

    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .about-section,
    .services-section,
    .reviews-section,
    .contact-section,
    .pricelist-section {
        padding: 3rem 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .pricelist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-category {
        padding: 1.5rem;
    }

    .price-category h3 {
        font-size: 1.5rem;
    }

    .service-name,
    .service-price {
        font-size: 0.9rem;
    }

    .service-highlight-grid {
        grid-template-columns: 1fr;
    }

    .service-hero__content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        align-items: stretch;
    }

    .ghost-button {
        width: 100%;
        text-align: center;
    }

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

    .contact-item {
        gap: 0.8rem;
    }

    .store-hours {
        padding: 1.5rem;
    }

    .store-hours h3 {
        font-size: 1.3rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        width: 98%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-content h2 {
        font-size: 1.4rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

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

    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .submit-btn,
    .cancel-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .booking-summary {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    .summary-header h3 {
        font-size: 1.1rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 0.6rem 0;
    }

    .summary-label {
        font-size: 0.9rem;
    }

    .summary-value {
        text-align: left;
        width: 100%;
        font-size: 1rem;
    }

    .summary-value.price-value {
        font-size: 1.2rem;
    }

    .summary-note small {
        font-size: 0.8rem;
    }

    .booking-alternative {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .booking-alternative p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a,
    .cta-button,
    .submit-btn,
    .cancel-btn,
    .slider-controls button {
        min-height: 44px;
        min-width: 44px;
    }

    .dot {
        width: 14px;
        height: 14px;
    }
}

