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

:root {
    /* Vaaleat sävyt */
    --primary-color: #E8D5C4;
    --secondary-color: #F5EBE0;
    --accent-color: #D4A574;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --light-bg: #FAF7F5;
    --border-color: #E5D9D0;
    
    /* Fontit */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Varjot */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.btn-booking {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.btn-booking:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/054aac3ff07805b350454f57396a97c9');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 235, 224, 0.7) 0%, rgba(232, 213, 196, 0.6) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}



/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid #8B6F47;
}

.btn-primary:hover {
    background-color: #C09260;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border: 2px solid #6B5436;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
    background-color: var(--light-bg);
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

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

.form-group textarea {
    resize: vertical;
}

.booking-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.booking-message.success {
    background-color: #D4EDDA;
    color: #155724;
    display: block;
}

.booking-message.error {
    background-color: #F8D7DA;
    color: #721C24;
    display: block;
}

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

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

.service-card {
    background-color: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Service Addons */
.service-addons {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.addon-services-section {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.addon-header i {
    color: var(--accent-color);
    font-size: 1rem;
}

.addon-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addon-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.addon-service-item:hover {
    border-color: var(--accent-color);
    background: #fef9f5;
}

.addon-service-item:has(.addon-checkbox:checked) {
    border-color: var(--accent-color);
    background: #fef9f5;
    border-width: 2px;
}

.addon-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
}

.addon-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.addon-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.addon-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.service-tab {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.service-tab i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.service-tab:hover {
    border-color: var(--accent-color);
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.service-tab.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.service-tab.active i {
    color: var(--white);
}

/* Custom colors for specific category tabs */
.service-tab[data-category="kaikki"].active {
    background-color: #4a4a4a;
    border-color: #4a4a4a;
}

.service-tab[data-category="parturi"].active {
    background-color: #87ceeb;
    border-color: #87ceeb;
}

.service-tab[data-category="hiuspalvelut"].active {
    background-color: #ffb3ba;
    border-color: #ffb3ba;
}

.service-tab[data-category="lapset-nuoret"].active,
.service-tab[data-category="varjaukset"].active,
.service-tab[data-category="raidat"].active,
.service-tab[data-category="permanentit"].active {
    background-color: #90ee90;
    border-color: #90ee90;
}

/* Service Categories Container */
.service-categories {
    position: relative;
    min-height: 400px;
    margin-bottom: 3rem;
}

/* Service Categories */
.service-category {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Hide categories that are not active and not show-all */
.service-category:not(.active):not(.show-all) {
    display: none;
}

.service-category.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1.2s ease;
}

/* When showing all services */
.service-category.show-all {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-title i {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 3px solid transparent;
    gap: 1rem;
}

.service-item:hover {
    border-left-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

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

.service-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-duration i {
    margin-right: 0.3rem;
    color: var(--accent-color);
}

.service-item .service-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Service with sub-items (for detailed pricing) */
.service-with-details {
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid var(--accent-color);
}

.service-main-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 0.75rem;
}

.service-main-name {
    font-weight: 600;
    color: var(--text-dark);
}

.service-starting-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.service-sub-items {
    width: 100%;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
    margin-left: 0.5rem;
}

.service-sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
    gap: 1rem;
}

.service-sub-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.service-sub-name {
    flex: 1;
}

.service-sub-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-sub-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-sub-duration i {
    margin-right: 0.3rem;
    color: var(--accent-color);
}

.service-sub-price {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background-color: var(--secondary-color);
}

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

.product-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #E8D5C4 0%, #D4A574 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-image i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background-color: var(--light-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-portrait {
    aspect-ratio: 3 / 4;
}

.gallery-credit {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    line-height: 1.3;
    text-align: right;
    z-index: 10;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: var(--white);
}

.about .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-left: 0;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background-color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

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

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

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: #C09260;
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

/* Hide "Varaa aika" link in desktop menu (button is shown instead) */
.nav-link-booking {
    display: none;
}

@media (max-width: 768px) {
    /* Service Tabs */
    .service-tabs {
        gap: 0.5rem;
    }
    
    .service-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .service-tab span {
        display: inline;
    }
    
    /* Remove extra padding on mobile */
    .about-text,
    .contact-info {
        padding-left: 0;
    }
    
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 0;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Style booking link as button in mobile menu */
    .nav-link-booking {
        display: block; /* Show in mobile menu */
        background-color: var(--accent-color);
        color: var(--white) !important;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        border: 2px solid #8B6F47;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .nav-link-booking::after {
        display: none; /* Remove underline effect */
    }
    
    /* Hide ONLY navbar booking button on mobile */
    .navbar .btn-booking {
        display: none;
    }
    
    /* Show booking button in mobile menu */
    .nav-menu.active + .btn-booking {
        display: none;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Booking */
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Hero - Smaller on small mobile */
    .hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Service Tabs - More compact on small screens */
    .service-tab {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-tab i {
        font-size: 1rem;
    }
    
    /* Service Categories - Extra margin on mobile */
    .service-categories {
        margin-bottom: 4rem;
    }
    
    .service-category {
        padding: 1.5rem 1rem;
    }
    
    /* Service items - Stack on mobile */
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .service-details {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .booking-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .service-card,
    .product-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Scroll padding for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 5rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}