/* ============================================
   SERVICE CATEGORY PAGES - MASTER STYLESHEET
   Laura's Beauty Touch
   Shared styles for all service category pages
   ============================================ */

/* ============================================
   CATEGORY HERO SECTION - ABOUT STYLE
   ============================================ */
.category-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--forest-green);
    background-image: var(--hero-bg-image, url('../images/spaint.jpeg'));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Enable parallax only on desktop for performance */
@media (min-width: 1024px) {
    .hero-background {
        background-attachment: fixed;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(59, 74, 47, 0.85) 0%, 
        rgba(42, 53, 34, 0.9) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(169, 200, 156, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 200, 156, 0.4);
    color: var(--mint-green);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--ivory-white);
    line-height: 1.2;
    margin: 0 0 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--mint-green), transparent);
    margin: 0 auto 25px;
    border-radius: 10px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(250, 250, 247, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(250, 250, 247, 0.85);
    line-height: 1.8;
    margin: 0 0 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--mint-green);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 1s both, bounceAnimation 2s ease-in-out 1.5s infinite;
}

.hero-scroll-indicator span {
    color: var(--mint-green);
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounceAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-mouse {
    display: none;
}

/* ============================================
   SERVICES LIST SECTION
   ============================================ */
.services-list-section {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(to bottom,
        var(--ivory-white) 0%,
        var(--cream) 50%,
        var(--ivory-white) 100%);
    overflow: hidden;
}

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

/* Category Introduction */
.category-intro {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.intro-decoration-left,
.intro-decoration-right {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint-green), transparent);
    border-radius: 10px;
}

.intro-decoration-left {
    left: 0;
    transform: translateY(-50%);
}

.intro-decoration-right {
    right: 0;
    transform: translateY(-50%);
}

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

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 25px;
    line-height: 1.2;
}

.intro-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--warm-taupe);
    line-height: 1.8;
    margin: 0;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(169, 200, 156, 0.2);
    border-top-color: var(--mint-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 25px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--warm-taupe);
    font-weight: 400;
}

/* No Services Message */
.no-services-message {
    text-align: center;
    padding: 100px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(59, 74, 47, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.no-services-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.no-services-icon i {
    font-size: 2.5rem;
    color: white;
}

.no-services-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--forest-green);
    margin: 0 0 20px;
}

.no-services-message p {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: var(--warm-taupe);
    line-height: 1.7;
    margin: 0 0 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    color: var(--forest-green);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(169, 200, 156, 0.3);
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(169, 200, 156, 0.4);
}

/* ============================================
   ELEGANT SERVICE LIST LAYOUT
   ============================================ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(59, 74, 47, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 320px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animations */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(59, 74, 47, 0.15);
}

/* Service Image */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(59, 74, 47, 0.1) 50%,
        rgba(59, 74, 47, 0.3) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.service-item:hover .service-image-overlay {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    color: var(--forest-green);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Service Content */
.service-content {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header {
    margin-bottom: 20px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 15px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-item:hover .service-name {
    color: var(--mint-green);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--warm-taupe);
    font-weight: 500;
}

.service-meta-item i {
    color: var(--mint-green);
    font-size: 1.1rem;
}

.meta-divider {
    width: 1px;
    height: 20px;
    background: rgba(59, 74, 47, 0.2);
}

.service-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin: 0 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.service-book-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-forest));
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(59, 74, 47, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 74, 47, 0.35);
    background: linear-gradient(135deg, var(--deep-forest), var(--forest-green));
}

.service-details-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--forest-green);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid var(--forest-green);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-details-button:hover {
    background: var(--forest-green);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
.services-cta-section {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg,
        var(--forest-green) 0%,
        var(--deep-forest) 100%);
    overflow: hidden;
}

.cta-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.cta-decoration-left,
.cta-decoration-right {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.cta-decoration-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--mint-green) 0%, transparent 70%);
    animation: floatAnimation 20s ease-in-out infinite;
}

.cta-decoration-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--warm-taupe) 0%, transparent 70%);
    animation: floatAnimation 25s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.cta-content {
    text-align: center;
    padding: 0 20px;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--mint-green);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin: 0 0 25px;
    line-height: 1.2;
}

.cta-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    color: var(--forest-green);
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(169, 200, 156, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(169, 200, 156, 0.5);
}

.cta-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--mint-green);
    font-size: 1.2rem;
}

/* ============================================
   SERVICE DETAIL MODAL
   ============================================ */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--cream);
}

.modal-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.modal-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    color: var(--forest-green);
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.modal-body {
    padding: 45px 50px;
    overflow-y: auto;
    flex: 1;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 20px;
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--warm-taupe);
    font-weight: 600;
}

.modal-meta-item i {
    color: var(--mint-green);
    font-size: 1.2rem;
}

.modal-meta-divider {
    width: 1px;
    height: 25px;
    background: rgba(59, 74, 47, 0.2);
}

.modal-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint-green), transparent);
    margin: 30px 0;
    border-radius: 10px;
}

.modal-description h3,
.modal-full-description h3,
.modal-benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
    margin: 0 0 15px;
}

.modal-description p,
.modal-full-description p {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin: 0 0 20px;
}

.modal-benefits {
    margin-top: 30px;
}

.modal-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-benefits li {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    padding: 12px 0 12px 35px;
    position: relative;
}

.modal-benefits li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--mint-green);
    font-size: 1.1rem;
}

.modal-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(59, 74, 47, 0.1);
    flex-wrap: wrap;
}

.modal-book-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-forest));
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(59, 74, 47, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 74, 47, 0.35);
}

.modal-contact-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--forest-green);
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 35px;
    border: 2px solid var(--forest-green);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-contact-button:hover {
    background: var(--forest-green);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    color: var(--forest-green);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(169, 200, 156, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(169, 200, 156, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .category-hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .service-item {
        grid-template-columns: 350px 1fr;
        min-height: 280px;
    }
    
    .service-content {
        padding: 35px 40px;
    }
    
    .service-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 900px) {
    .category-hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .services-list-section {
        padding: 80px 30px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-image-wrapper {
        height: 280px;
    }
    
    .service-content {
        padding: 35px 30px;
    }
    
    .services-cta-section {
        padding: 80px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
        justify-content: center;
    }
    
    .modal-body {
        padding: 35px 30px;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-cta {
        flex-direction: column;
    }
    
    .modal-book-button,
    .modal-contact-button {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .category-hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 22px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
        font-size: 0.85rem;
    }
    
    .services-list-section {
        padding: 60px 20px;
    }
    
    .category-intro {
        margin-bottom: 50px;
    }
    
    .intro-decoration-left,
    .intro-decoration-right {
        display: none;
    }
    
    .intro-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .services-list {
        gap: 30px;
    }
    
    .service-image-wrapper {
        height: 240px;
    }
    
    .service-badge {
        top: 15px;
        left: 15px;
        font-size: 0.75rem;
        padding: 7px 15px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
    
    .service-name {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .service-meta {
        gap: 15px;
    }
    
    .service-meta-item {
        font-size: 0.95rem;
    }
    
    .service-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-book-button,
    .service-details-button {
        width: 100%;
        justify-content: center;
    }
    
    .services-cta-section {
        padding: 60px 20px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-image-wrapper {
        height: 250px;
    }
    
    .modal-body {
        padding: 30px 25px;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .modal-meta-divider {
        display: none;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
}
