/* ========================================
   SERVICES PAGE - PERFECTED HERMES LUXURY STYLING
   Enhanced Synchronized Videos & Soft Med Spa Aesthetics
   ======================================== */

/* Enhanced Services Hero Section */
.services-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f2ed 50%, #f0ebe3 100%);
}

/* Synchronized Video Background */
.services-video-background {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 65vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-collage-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Perfect Desktop Video Layout */
.desktop-video-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    width: 100%;
}

.video-panel {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(255, 140, 0, 0.06);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.video-left,
.video-right {
    width: 280px;
    height: 500px;
}

.video-center {
    width: 320px;
    height: 570px;
    z-index: 2;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(255, 140, 0, 0.08);
}

/* Enhanced Video Hover Effects */
.video-panel:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(255, 140, 0, 0.12);
}

.video-center:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.18),
        0 20px 40px rgba(255, 140, 0, 0.15);
}

.video-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.8s ease;
    opacity: 0;
}

.video-panel.loaded video {
    opacity: 1;
}

/* Soft Loading Overlay */
.video-loading-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 246, 243, 0.9) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.6s ease;
    z-index: 3;
}

.video-panel.loaded .video-loading-overlay {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 140, 0, 0.2);
    border-top: 3px solid #ff8c00;
    border-radius: 50%;
    animation: softSpin 1.5s ease-in-out infinite;
}

@keyframes softSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Three Video Layout */
.mobile-video-layout {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    width: 100%;
    padding: 0 15px;
}

.video-mobile-left,
.video-mobile-right {
    width: 90px;
    height: 160px;
}

.video-mobile-center {
    width: 120px;
    height: 210px;
    z-index: 2;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(255, 140, 0, 0.08);
}

/* Ultra Mobile Single Video (for weak devices) */
.ultra-mobile-layout {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0 20px;
}

.video-single {
    width: 90%;
    max-width: 280px;
    height: 400px;
}

/* Enhanced Hero Content */
.services-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 40px;
    margin-top: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    box-shadow: 
        0 25px 50px rgba(255, 140, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-hero-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.1);
}

.hero-badge i {
    color: #ff8c00;
    font-size: 16px;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: titleReveal 0.8s ease-out 0.5s forwards;
}

.title-accent {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    animation: titleReveal 0.8s ease-out 0.7s forwards;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-family: var(--font-inter);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    animation: contentReveal 0.6s ease-out 1s forwards;
}

.hero-description .highlight {
    color: #ff8c00;
    font-weight: 600;
}

@keyframes contentReveal {
    to {
        opacity: 1;
    }
}

/* Soft Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    opacity: 0;
    animation: contentReveal 0.6s ease-out 1.2s forwards;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 140, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.1);
}

.stat-number {
    font-family: var(--font-playfair);
    font-size: 32px;
    font-weight: 700;
    color: #ff8c00;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Consultation Card */
.consultation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 24px;
    padding: 24px 32px;
    margin: 40px 0;
    transition: all 0.4s ease;
    opacity: 0;
    animation: contentReveal 0.6s ease-out 1.4s forwards;
}

.consultation-card:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 140, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.1);
}

.consultation-info {
    flex: 1;
}

.consultation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.consultation-header i {
    color: #ff8c00;
    font-size: 20px;
}

.consultation-header span {
    font-family: var(--font-playfair);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.consultation-details {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.consultation-details .price {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
}

.consultation-details .credit {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

.consultation-btn {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s ease;
    opacity: 0;
    animation: contentReveal 0.6s ease-out 1.6s forwards;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-circle {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.scroll-indicator:hover .scroll-circle {
    background: #ff8c00;
    border-color: #ff8c00;
    color: white;
    transform: scale(1.1);
}

.scroll-circle i {
    font-size: 20px;
    color: #ff8c00;
    transition: all 0.3s ease;
    animation: softBounce 2s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-circle i {
    color: white;
    animation: none;
}

.scroll-pulse {
    position: absolute;
    inset: -3px;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    opacity: 0;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes softBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes gentlePulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.3); }
}

.scroll-text {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: #ff8c00;
}

/* Service Categories Section */
.service-categories-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f2ed 0%, #f8f6f3 100%);
    overflow: hidden;
}

.section-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ambient-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.03) 0%, transparent 70%);
    filter: blur(60px);
    animation: ambientFloat 20s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 160px;
    height: 160px;
    top: 60%;
    right: 20%;
    animation-delay: -7s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes ambientFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(20px, -15px) scale(1.1); 
        opacity: 0.3; 
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.section-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
}

.section-badge i {
    color: #ff8c00;
    font-size: 16px;
}

.section-title {
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-title .title-line {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

.section-title .title-accent {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-family: var(--font-inter);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

/* Enhanced Category Cards */
.category-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 140, 0, 0.2);
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(255, 140, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.category-card:hover .card-glow {
    opacity: 1;
}

.category-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

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

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.1) 0%,
        rgba(42, 27, 10, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.category-card:hover .image-overlay {
    opacity: 1;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.category-badge span {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    color: #ff8c00;
    backdrop-filter: blur(10px);
}

.category-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-playfair);
    font-size: 18px;
    font-weight: 700;
    color: #ff8c00;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.category-content {
    padding: 32px;
}

.category-title {
    font-family: var(--font-playfair);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.category-description {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.category-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.highlight-item {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 4px 10px;
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 500;
    color: #ff8c00;
}

.category-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-from {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
}

.price-amount small {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Enhanced Explore Button */
.explore-btn {
    width: 100%;
    background: rgba(255, 140, 0, 0.08);
    border: 2px solid #ff8c00;
    border-radius: 20px;
    padding: 18px 24px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    color: #ff8c00;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.explore-btn:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.3);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.explore-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.btn-icon i {
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Service Details Modal */
.service-details-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-details-modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 32px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(255, 140, 0, 0.1);
}

.service-details-modal.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.modal-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    color: white;
    transform: scale(1.1);
}

.modal-content {
    padding: 32px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

/* Service Detail Content Structure */
.service-overview {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.service-overview h3 {
    font-family: var(--font-playfair);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-overview p {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    margin-bottom: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 140, 0, 0.2);
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h4 {
    font-family: var(--font-playfair);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.service-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-badges span {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 4px 10px;
    font-family: var(--font-inter);
    font-size: 11px;
    font-weight: 600;
    color: #ff8c00;
}

.service-description {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
    text-align: right;
}

.service-price small {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Care Instructions */
.care-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
}

.care-section {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.care-section:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 140, 0, 0.2);
}

.care-section h4 {
    font-family: var(--font-playfair);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.care-section h4 i {
    color: #ff8c00;
    font-size: 16px;
}

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

.care-list li {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.care-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
    font-size: 16px;
}

/* CTA Section */
.services-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f0ebe3 0%, #f5f2ed 100%);
    overflow: hidden;
}

.cta-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-ambient .ambient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    animation: ctaFloat 15s ease-in-out infinite;
}

.cta-ambient .orb-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cta-ambient .orb-2 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
    animation-delay: -7s;
}

@keyframes ctaFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(15px, -10px) scale(1.1); 
        opacity: 0.3; 
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    transition: all 0.4s ease;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-2px);
}

.cta-badge i {
    color: #ff8c00;
    font-size: 16px;
}

.cta-title {
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-title .title-line {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

.cta-title .title-accent {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-family: var(--font-inter);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.cta-description .highlight {
    color: #ff8c00;
    font-weight: 600;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.primary-cta,
.secondary-cta {
    padding: 18px 32px;
    border-radius: 18px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    border: none;
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 140, 0, 0.4);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ff8c00;
    color: #ff8c00;
    backdrop-filter: blur(20px);
}

.secondary-cta:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.cta-note i {
    color: #ff8c00;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .desktop-video-layout {
        gap: 16px;
    }
    
    .video-left,
    .video-right {
        width: 250px;
        height: 440px;
    }
    
    .video-center {
        width: 290px;
        height: 520px;
    }
    
    .services-hero-content {
        margin-top: 380px;
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .services-video-background {
        top: 100px;
        height: 50vh;
    }
    
    .video-collage-container {
        padding: 0 10px;
    }
    
    .desktop-video-layout {
        display: none;
    }
    
    .mobile-video-layout {
        display: flex;
    }
    
    .services-hero-content {
        margin-top: 320px;
        padding: 32px 24px;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        margin: 24px 0;
    }
    
    .stat-card {
        flex-direction: row;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .consultation-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-card {
        margin: 0;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-content {
        padding: 24px;
    }
    
    .modal-container {
        width: 95vw;
        height: 95vh;
        border-radius: 24px;
    }
    
    .modal-header {
        padding: 24px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .care-instructions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        min-height: 95vh;
    }
    
    .services-video-background {
        height: 45vh;
    }
    
    /* Check device capability for video layout */
    .video-mobile-left,
    .video-mobile-right {
        width: 70px;
        height: 130px;
    }
    
    .video-mobile-center {
        width: 100px;
        height: 180px;
    }
    
    .services-hero-content {
        margin-top: 280px;
        padding: 24px 16px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .hero-stats {
        margin: 20px 0;
    }
    
    .stat-card {
        padding: 10px 16px;
    }
    
    .consultation-card {
        padding: 16px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-circle {
        width: 50px;
        height: 50px;
    }
    
    .scroll-circle i {
        font-size: 18px;
    }
    
    .category-image {
        height: 180px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .explore-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Performance Optimizations */
.video-panel,
.category-card,
.service-item {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .scroll-circle i {
        animation: none;
    }
    
    .scroll-pulse {
        animation: none;
    }
    
    .loading-spinner {
        animation: none;
    }
    
    .ambient-circle {
        animation: none;
    }
    
    .cta-ambient .ambient-orb {
        animation: none;
    }
}

/* Accessibility Enhancements */
.keyboard-navigation *:focus {
    outline: 3px solid #ff8c00;
    outline-offset: 2px;
    border-radius: 8px;
}

/* Loading States */
.services-hero-content.loading {
    opacity: 0.5;
}

.video-panel.loading {
    opacity: 0.7;
}

/* Enhanced Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.5);
}

/* Video Panel Enhancement for Better Sync Visibility */
.video-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 48%,
        rgba(255, 140, 0, 0.1) 50%,
        transparent 52%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.video-panel:hover::before {
    opacity: 0.6;
}

/* Soft Animation Keyframes */
@keyframes softFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes creamyGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 140, 0, 0.2);
    }
}

/* Enhanced Visual Feedback */
.category-card.clicked {
    animation: gentleScale 0.6s ease-out;
}

.explore-btn.clicked {
    animation: softFadeIn 0.4s ease-out;
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .video-panel,
    .category-card,
    .service-item {
        transform: translateZ(0);
    }
}
