/* =============================================
   DeYi Wellness - Premium Wellness Website
   Color Palette: Natural Green, Deep Forest, Soft Sage
   ============================================= */

:root {
    /* Primary Colors - Hermès Orange Theme */
    --color-primary: #FF6600;
    --color-secondary: #FF8C42;
    --color-accent: #FFB266;
    --color-accent-light: #FFCC99;
    --color-accent-dark: #CC5200;

    /* Neutral Colors */
    --color-cream: #ffffff;
    --color-cream-dark: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #FF6600;
    --color-text-light: #FF8C42;
    --color-text-muted: #CC5200;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 10rem;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
    --font-chinese: 'Noto Sans SC', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Borders */
    --border-radius: 4px;
}

/* =============================================
   Reset & Base Styles
   ============================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: #FF6600;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =============================================
   Typography
   ============================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #FF6600;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #FF6600;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Layout
   ============================================= */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* =============================================
   Buttons
   ============================================= */

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #FF6600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    background-color: #CC5200;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF6600;
    background-color: transparent;
    border: 1px solid #FF6600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background-color: #FF6600;
    color: #ffffff;
}

/* =============================================
   Navigation
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: #FF6600;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 102, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ffffff;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.nav-menu a:hover {
    opacity: 1;
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    background-color: #ffffff;
    color: #FF6600 !important;
    border-radius: var(--border-radius);
    opacity: 1 !important;
    font-weight: 500;
}

.btn-nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all var(--transition-fast);
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background-color: #ffffff;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.40) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
}

/* Hero Text Section */
.hero-text {
    padding-right: 0;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    font-size: 1rem;
    color: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-sm);
}

.hero-chinese-logo {
    height: clamp(3rem, 5vw, 4rem);
    width: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.btn-hero {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #ffffff;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

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

.feature-icon {
    font-size: 1.75rem;
    filter: grayscale(1) brightness(10);
    opacity: 0.9;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

.feature-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: visible;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-main .placeholder-image {
    aspect-ratio: 3/4;
}

.hero-image-accent {
    position: absolute;
    top: 60px;
    right: -80px;
    width: 65%;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-image-accent .placeholder-image {
    aspect-ratio: 4/5;
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card-icon {
    font-size: 2rem;
    filter: grayscale(1);
    opacity: 0.8;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #FF6600;
    line-height: 1.2;
}

.floating-card-subtitle {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.scroll-text {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* =============================================
   Marquee Section
   ============================================= */

.marquee-section {
    background-color: #ffffff;
    padding: var(--spacing-md) 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: #FF6600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding-right: 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   About Section
   ============================================= */

.about-section {
    background-color: #ffffff;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 100%;
}

.about-image-main {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.about-image-main .placeholder-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #FF6600;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 45%;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image-accent .placeholder-image {
    aspect-ratio: 1/1;
}

/* About Text */
.about-text {
    padding-left: 0;
}

.about-intro {
    margin-bottom: var(--spacing-lg);
}

.about-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 102, 0, 0.9);
    margin-bottom: var(--spacing-md);
}

.about-description strong {
    color: #CC5200;
    font-weight: 500;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 102, 0, 0.06);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 102, 0, 0.3);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    background: rgba(255, 102, 0, 0.06);
    border-left-color: #FF6600;
    transform: translateX(5px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: #FF6600;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: #FF6600;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.9375rem;
    color: rgba(255, 102, 0, 0.75);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: rgba(255, 102, 0, 0.06);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: #FF6600;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 102, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 102, 0, 0.2);
}

/* Placeholder Images */
.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 102, 0, 0.3);
    z-index: -1;
}

.placeholder-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
}

/* =============================================
   Gallery Section
   ============================================= */

.gallery-section {
    background-color: #ffffff;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.gallery-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #FF6600;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.gallery-intro {
    font-size: 1.125rem;
    color: rgba(255, 102, 0, 0.8);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.gallery-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.showcase-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform var(--transition-normal);
}

.showcase-large {
    grid-column: span 2;
}

.showcase-item:hover {
    transform: translateY(-8px);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.showcase-image .placeholder-image {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.showcase-item:hover .showcase-image img,
.showcase-item:hover .placeholder-image {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.label-number {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 102, 0, 0.6);
    letter-spacing: 0.1em;
}

.label-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: #FF6600;
    letter-spacing: 0.02em;
}

/* Gallery image variations */
.gallery-img-1 .placeholder-image {
    background: linear-gradient(135deg, #ffffff 0%, #FFE5CC 100%);
}

.gallery-img-2 .placeholder-image {
    background: linear-gradient(135deg, #FFD6B3 0%, #FFC299 100%);
}

.gallery-img-3 .placeholder-image {
    background: linear-gradient(135deg, #FFE5CC 0%, #FFD6B3 100%);
}

.gallery-img-4 .placeholder-image {
    background: linear-gradient(135deg, #FFC299 0%, #FFB27F 100%);
}

.gallery-img-5 .placeholder-image {
    background: linear-gradient(135deg, #FFB27F 0%, #FFA366 100%);
}

/* =============================================
   Pricing Section
   ============================================= */

.pricing-section {
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.pricing-card {
    background-color: rgba(255, 102, 0, 0.06);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-category {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #FF6600;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.service-name {
    font-size: 0.9375rem;
    color: #2c2c2c;
}

.service-price {
    font-weight: 600;
    color: #FF6600;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: #CC5200;
}

/* =============================================
   Services Overview
   ============================================= */

.services-overview {
    background-color: #ffffff;
    padding: var(--spacing-xl) 0;
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #FF6600;
    line-height: 1.2;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 102, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: #ffffff;
    transition: all var(--transition-normal);
    min-height: 200px;
}

.service-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 102, 0, 0.05);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.service-number {
    position: relative;
    z-index: 1;
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 102, 0, 0.5);
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.service-item:hover .service-number {
    color: rgba(255, 102, 0, 0.8);
}

.service-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: #FF6600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    transition: transform var(--transition-fast);
}

.service-item:hover .service-title {
    transform: translateY(-4px);
}

.service-subtitle {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    color: rgba(255, 102, 0, 0.75);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* =============================================
   Service Detail Sections
   ============================================= */

.service-detail {
    background-color: #ffffff;
    position: relative;
}


.service-detail.alt-layout {
    background: linear-gradient(135deg, #FF6600 0%, #FF8C42 100%);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.alt-layout .service-detail-content {
    direction: rtl;
    grid-template-columns: 0.9fr 1.1fr;
}

.alt-layout .service-detail-content > * {
    direction: ltr;
}

/* Full-width layout when there is no image column */
.service-detail-content:has(> .service-detail-text:only-child) {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
}

.service-detail-text {
    padding: var(--spacing-md);
}

.service-detail-image {
    position: relative;
}

.service-detail-image .image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-detail-image .placeholder-image {
    aspect-ratio: 1/1;
    transition: transform var(--transition-slow);
}

.service-detail-image:hover .placeholder-image {
    transform: scale(1.05);
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 102, 0, 0.9);
    margin-bottom: var(--spacing-xl);
}

.treatment-list {
    margin-bottom: var(--spacing-xl);
    background: rgba(255, 102, 0, 0.05);
    border-radius: 12px;
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.treatment-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-fast);
}

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

.treatment-list li:hover {
    padding-left: 0.5rem;
    background: rgba(255, 102, 0, 0.04);
}

.treatment-name {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #2c2c2c;
    flex: 1;
}

.treatment-duration {
    font-size: 0.875rem;
    color: #888;
    background: #f2f2f2;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* =============================================
   Service Detail - Dynamic Image Height
   ============================================= */
.service-detail .service-detail-content {
    align-items: stretch;
}

.service-detail .service-detail-image {
    display: flex;
    flex-direction: column;
}

.service-detail .service-detail-image .image-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail .service-detail-image .placeholder-image {
    aspect-ratio: unset;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   Unified Pricing Table
   ============================================= */
.unified-pricing-wrapper {
    width: 100%;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    background: transparent;
    border-top: 2px solid #FF6600;
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.unified-pricing-wrapper:hover {
    border-bottom-color: #FF6600;
}

.unified-pricing-table {
    width: 100%;
    border-collapse: collapse;
}

/* Section Headers (Bold) */
.unified-pricing-table .section-header td {
    padding: 0.75rem 1.25rem;
    background: #FF6600;
    border-bottom: none;
    border-top: none;
    text-align: left;
}

.unified-pricing-table .section-header:first-child td {
    border-top: none;
}

.section-en {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-right: 0.625rem;
    letter-spacing: 0.02em;
}

.section-cn {
    display: inline-block;
    font-family: var(--font-chinese);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Regular Rows */
.unified-pricing-table tbody tr:not(.section-header) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-fast);
}

.unified-pricing-table tbody tr:not(.section-header):last-child {
    border-bottom: none;
}

.unified-pricing-table tbody tr:not(.section-header):hover {
    background: rgba(255, 102, 0, 0.04);
    transform: translateX(2px);
}

.unified-pricing-table tbody tr:not(.section-header) td {
    padding: 0.625rem 1.25rem;
    color: #2c2c2c;
    vertical-align: middle;
}

/* Column Styles */
.item-name {
    font-size: 1rem;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.5;
}

.name-en {
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: 500;
}

.name-cn {
    font-family: var(--font-chinese);
    font-size: 0.9375rem;
    color: #888;
    font-weight: 400;
}

.item-duration {
    font-size: 0.9375rem;
    font-weight: 400;
    text-align: center;
    color: #888;
    letter-spacing: 0.01em;
}

.item-price {
    text-align: right;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FF6600;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* =============================================
   Testimonials Section
   ============================================= */

.testimonials-section {
    background-color: #ffffff;
    padding: var(--spacing-xxl) 0;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #FF6600;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 102, 0, 0.8);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.testimonials-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.testimonial-item {
    position: relative;
    padding: 0;
    transition: transform var(--transition-normal);
}

.testimonial-item:hover {
    transform: translateY(-8px);
}

.testimonial-quote {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 0;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(255, 102, 0, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 102, 0, 0.95);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 102, 0, 0.2);
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    color: #FF6600;
}

.client-separator {
    color: rgba(255, 102, 0, 0.4);
    font-size: 0.875rem;
}

.client-service {
    font-size: 0.9375rem;
    color: rgba(255, 102, 0, 0.7);
    letter-spacing: 0.02em;
}

/* =============================================
   Visit Us Section
   ============================================= */

.visit-section {
    background-color: #ffffff;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.visit-info .section-label {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.visit-info .section-title {
    margin-bottom: var(--spacing-lg);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.visit-item {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.visit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: var(--spacing-xs);
}

.visit-item p {
    font-size: 1.125rem;
    color: #FF6600;
    line-height: 1.8;
}

.visit-item a {
    color: #FF6600;
    transition: color var(--transition-fast);
}

.visit-item a:hover {
    color: #CC5200;
}

.visit-map {
    min-height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* =============================================
   Map Section
   ============================================= */

.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
}

/* =============================================
   Contact Section
   ============================================= */

.contact-section {
    background-color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-main {
    max-width: 600px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #FF6600;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 102, 0, 0.85);
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
}

.btn-contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background-color: #25D366;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-contact-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-contact-whatsapp svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.btn-contact-whatsapp:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.contact-divider {
    display: flex;
    align-items: center;
    margin: var(--spacing-xl) 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 102, 0, 0.2);
}

.contact-divider span {
    padding: 0 var(--spacing-md);
    font-size: 0.875rem;
    color: rgba(255, 102, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 102, 0, 0.6);
}

.info-value {
    font-size: 1rem;
    color: rgba(255, 102, 0, 0.95);
    line-height: 1.6;
}

.contact-map {
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    display: block;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

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

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #FF6600;
    background-color: rgba(255, 102, 0, 0.06);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
    background-color: rgba(255, 102, 0, 0.1);
}

.contact-form .btn-primary {
    grid-column: 1 / -1;
    justify-self: start;
}

.contact-map-wrapper {
    margin-top: var(--spacing-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* =============================================
   Footer
   ============================================= */

.footer {
    background-color: #ffffff;
    color: #FF6600;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 102, 0, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FF6600;
}

.footer-chinese {
    font-family: var(--font-chinese);
    font-size: 1rem;
    color: #FF6600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column a {
    font-size: 0.9375rem;
    color: rgba(255, 102, 0, 0.6);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: #FF6600;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 102, 0, 0.4);
    border-radius: 50%;
    color: #FF6600;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: #FF6600;
    border-color: #FF6600;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 102, 0, 0.4);
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    /* Hero Section Responsive */
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title-main {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image-accent {
        top: 40px;
        right: -30px;
    }

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }

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

    .about-image-accent {
        top: -30px;
        right: -30px;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat-divider {
        display: none;
    }

    /* Gallery Section Responsive */
    .gallery-row {
        grid-template-columns: 1fr;
    }

    .showcase-large {
        grid-column: span 1;
    }

    .showcase-item {
        aspect-ratio: 16/10;
    }

    /* Services Overview Responsive */
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        min-height: 180px;
        padding: var(--spacing-lg);
    }

    .service-title {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background-color: #FF6600;
        transition: right var(--transition-normal);
        padding: var(--spacing-lg);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .about-content,
    .service-detail-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .alt-layout .service-detail-content {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }

    .about-features {
        justify-content: space-between;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .visit-content {
        grid-template-columns: 1fr;
    }

    .visit-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 5rem;
        --spacing-xl: 3.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 70px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .hero-feature-item {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 350px;
    }

    .hero-floating-card {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .floating-card-icon {
        font-size: 1.5rem;
    }

    .floating-card-title {
        font-size: 0.875rem;
    }

    .floating-card-subtitle {
        font-size: 0.6875rem;
    }

    /* About Section Mobile */
    .about-highlights {
        gap: var(--spacing-sm);
    }

    .highlight-item {
        padding: 1.25rem;
    }

    /* Gallery Section Mobile */
    .gallery-main-title {
        font-size: 2rem;
    }

    .gallery-intro {
        font-size: 1rem;
    }

    .label-number {
        font-size: 0.75rem;
    }

    .label-text {
        font-size: 1rem;
    }

    /* Services Overview Mobile */
    .services-overview {
        padding: var(--spacing-lg) 0;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        min-height: 160px;
        padding: var(--spacing-md);
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-subtitle {
        font-size: 0.875rem;
    }

    /* Testimonials Mobile */
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .testimonial-quote::before {
        font-size: 5rem;
    }

    /* Contact Section Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact-main {
        max-width: 100%;
    }

    .contact-map {
        height: 400px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Unified Pricing Table Mobile */
    .unified-pricing-wrapper {
        border-radius: 6px;
    }

    .section-en {
        font-size: 0.875rem;
    }

    .section-cn {
        font-size: 0.8125rem;
    }

    .unified-pricing-table .section-header td {
        padding: 0.5rem 0.75rem;
    }

    .unified-pricing-table tbody tr:not(.section-header) td {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    .item-name {
        font-size: 0.875rem;
    }

    .item-duration {
        font-size: 0.875rem;
    }

    .item-price {
        font-size: 0.9375rem;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .category-title {
        font-size: 1.125rem;
    }

    .category-chinese {
        font-size: 0.9375rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* Hero Section Small Mobile */
    .hero-title-main {
        font-size: 2.25rem;
    }

    .hero-chinese-logo {
        height: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image-accent {
        top: 30px;
        right: -20px;
        width: 55%;
    }

    .hero-floating-card {
        position: static;
        transform: none;
        margin-top: var(--spacing-md);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-value {
        font-size: 1.5rem;
    }

    .feature-label {
        font-size: 0.6875rem;
    }

    /* About Section Small Mobile */
    .about-image-accent {
        width: 50%;
        top: -20px;
        right: -20px;
    }

    .about-badge {
        left: 20px;
        bottom: 20px;
        padding: 1rem 1.25rem;
    }

    .badge-year {
        font-size: 1.25rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem 1rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    /* Gallery Section Small Mobile */
    .gallery-main-title {
        font-size: 1.75rem;
    }

    .showcase-label {
        padding: var(--spacing-md);
    }

    /* Services Overview Small Mobile */
    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .service-item {
        min-height: 140px;
    }

    .service-number {
        font-size: 0.75rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-subtitle {
        font-size: 0.8125rem;
    }

    /* Testimonials Small Mobile */
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-quote::before {
        font-size: 4rem;
        top: -20px;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-service {
        font-size: 0.875rem;
    }

    /* Contact Small Mobile */
    .contact-title {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1.0625rem;
    }

    .btn-contact-whatsapp {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .contact-map {
        height: 300px;
    }

    /* Other sections */
    .about-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Animations
   ============================================= */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for service cards */
.service-card {
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Fade in scale effect */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-scale.active {
    opacity: 1;
    transform: scale(1);
}
