html {
    scroll-behavior: smooth;
}

/* Services Hero Section - Reduced Height */
.services-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 90px;
    scroll-snap-align: start;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services-hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
}

/* Added overlay styles for consistent hero section appearance */
.services-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 20, 0.55);
    z-index: 1;
}

.services-hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.5) 0%,
        rgba(15, 15, 20, 0.4) 25%,
        rgba(26, 26, 30, 0.3) 50%,
        rgba(74, 50, 35, 0.2) 75%,
        rgba(15, 15, 20, 0.6) 100%
    );
    z-index: 2;
}

.services-hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    min-height: 60vh;
    z-index: 3;
}

.services-hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid var(--accent-gold);
    margin-bottom: 32px;
    transition: var(--transition-medium);
    background: rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(10px);
}

.hero-badge:hover {
    background: var(--accent-gold);
    color: var(--neutral-white);
}

.services-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 600;
    color: var(--neutral-white);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 48px;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.services-hero-tagline {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 48px;
}

.brand-highlight {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tagline-text {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.services-hero-actions {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Services Hero Button Styles */
.services-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-medium);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-height: 48px;
    justify-content: center;
}

.services-hero-actions .btn-primary {
    background: var(--accent-gold);
    color: var(--neutral-white);
    box-shadow: var(--shadow-soft);
}

.services-hero-actions .btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.services-hero-actions .btn-primary svg {
    transition: var(--transition-fast);
}

.services-hero-actions .btn-primary:hover svg {
    transform: translateX(4px);
}

.services-hero-actions .btn-outline {
    background: transparent;
    color: var(--neutral-white);
    border: 1px solid var(--neutral-white);
    position: relative;
    overflow: hidden;
}

.services-hero-actions .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neutral-white);
    transition: var(--transition-medium);
    z-index: -1;
}

.services-hero-actions .btn-outline:hover::before {
    left: 0;
}

.services-hero-actions .btn-outline:hover {
    color: var(--neutral-black);
    border-color: var(--neutral-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 4; /* Increased z-index to be above hero content */
    cursor: pointer;
    transition: var(--transition-medium);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-4px);
}

.scroll-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--neutral-light-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.scroll-indicator:hover .scroll-text {
    color: var(--accent-gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--neutral-light-gray);
    animation: scroll-pulse 2s infinite;
    transition: var(--transition-fast);
}

.scroll-indicator:hover .scroll-line {
    background: var(--accent-gold);
    height: 50px;
}

@keyframes scroll-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Service Detail Sections */
.service-detail {
    padding: 120px 0;
    background: var(--neutral-white);
    scroll-snap-align: start;
}

.service-detail.alternate {
    background: var(--neutral-light);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.service-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: var(--neutral-white);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.service-number::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
}

.service-info {
    flex: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--neutral-black);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--neutral-medium-gray);
    line-height: 1.7;
    letter-spacing: 0.3px;
    max-width: 800px;
}

/* Service Content Layouts */
.service-content-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.service-text {
    position: sticky;
    top: 120px;
}

/* Gallery Styles */
.service-gallery {
    margin-top: 40px;
}

/* Standard Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.gallery-item.main {
    grid-row: span 2;
}

/* Alternative Grid Layout */
.gallery-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Vertical Grid Layout */
.gallery-grid-vertical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Masonry Layout */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-masonry .gallery-item.large {
    grid-column: span 2;
}

/* Mixed Layout */
.gallery-mixed {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.gallery-mixed .gallery-item.large {
    grid-column: span 1;
}

.gallery-mixed .gallery-item:last-child {
    grid-column: span 2;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--neutral-medium-gray);
    transition: var(--transition-luxury);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-luxury);
    filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* Coming Soon Section */
.service-coming-soon {
    padding: 80px 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--neutral-light);
    border-radius: 8px;
    border: 2px dashed rgba(201, 169, 97, 0.3);
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.coming-soon-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--neutral-black);
    margin-bottom: 16px;
}

.coming-soon-content p {
    font-size: 16px;
    color: var(--neutral-medium-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Services CTA Section - Luxury Theme */
.services-cta {
    padding: 160px 0;
    background: var(--neutral-light);
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.03) 0%,
        rgba(74, 50, 35, 0.02) 50%,
        rgba(201, 169, 97, 0.03) 100%
    );
    z-index: 1;
}

.services-cta .container {
    position: relative;
    z-index: 2;
}

.services-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-cta .section-header-minimal {
    margin-bottom: 80px;
}

.services-cta .section-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 300;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.services-cta .section-title-minimal {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--neutral-black);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.services-cta .section-subtitle-minimal {
    font-size: 18px;
    font-weight: 300;
    color: var(--neutral-medium-gray);
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-highlight-single {
    background: var(--neutral-white);
    padding: 60px 48px;
    border-radius: 0;
    transition: var(--transition-luxury);
    border: 1px solid rgba(42, 42, 42, 0.06);
    margin-bottom: 60px;
    box-shadow: var(--shadow-subtle);
}

.services-cta-highlight-single:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(201, 169, 97, 0.2);
}

.services-cta-highlight-single h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--neutral-black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.services-cta-highlight-single p {
    font-size: 16px;
    color: var(--neutral-medium-gray);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.3px;
}

.services-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(42, 42, 42, 0.08);
}

.services-cta .btn-luxury-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: var(--accent-gold);
    color: var(--neutral-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition-luxury);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.services-cta .btn-luxury-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-medium);
}

.services-cta .btn-luxury-primary:hover::before {
    left: 100%;
}

.services-cta .btn-luxury-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.services-cta .btn-luxury-primary svg {
    transition: var(--transition-fast);
}

.services-cta .btn-luxury-primary:hover svg {
    transform: translateX(4px);
}

.services-cta-contact {
    text-align: center;
    background: var(--neutral-white);
    padding: 32px 40px;
    border-radius: 0;
    border: 1px solid rgba(42, 42, 42, 0.06);
    transition: var(--transition-medium);
}

.services-cta-contact:hover {
    border-color: rgba(201, 169, 97, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.services-cta-contact .contact-text {
    font-size: 14px;
    color: var(--neutral-medium-gray);
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.services-cta-contact .phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.services-cta-contact .phone-link:hover {
    color: var(--accent-gold-light);
}

/* Compact Services Hero Section */
.services-hero-compact {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 90px;
}

.services-hero-background-compact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services-hero-background-image-compact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-image-overlay-compact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 20, 0.45);
    z-index: 1;
}

.services-hero-gradient-overlay-compact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.4) 0%,
        rgba(15, 15, 20, 0.3) 25%,
        rgba(26, 26, 30, 0.2) 50%,
        rgba(74, 50, 35, 0.15) 75%,
        rgba(15, 15, 20, 0.5) 100%
    );
    z-index: 2;
}

.services-hero-container-compact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    min-height: 50vh;
    z-index: 3;
}

.services-hero-content-compact {
    max-width: 600px;
}

.services-hero-title-compact {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--neutral-white);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle-compact {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.services-hero-actions-compact {
    margin-bottom: 0;
}

.services-stats-compact {
    display: flex;
    gap: 24px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-item-compact {
    text-align: center;
    flex: 1;
}

.stat-item-compact .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.stat-item-compact .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--neutral-medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Services Section */
.services-interactive {
    padding: 120px 0;
    background: var(--neutral-white);
}

/* Services Tabs - Mobile Only */
.services-tabs {
    display: none; /* Hidden by default on desktop */
}

.services-content {
    position: relative;
}

/* Desktop: Show all service panels */
.service-panel {
    display: block;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 120px;
    padding-bottom: 120px;
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
}

.service-panel:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Mobile: Show tabs and hide panels by default */
@media (max-width: 768px) {
    .services-tabs {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 4px;
        margin-bottom: 40px;
        background: var(--neutral-light);
        padding: 8px;
        border-radius: 12px;
    }
    
    .service-tab {
        background: transparent;
        border: none;
        padding: 16px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: var(--transition-medium);
        text-align: center;
        position: relative;
    }
    
    .service-tab.active {
        background: var(--neutral-white);
        box-shadow: var(--shadow-soft);
    }
    
    .tab-number {
        display: block;
        font-family: var(--font-display);
        font-size: 12px;
        font-weight: 600;
        color: var(--accent-gold);
        margin-bottom: 4px;
        letter-spacing: 1px;
    }
    
    .tab-title {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: var(--neutral-charcoal);
        line-height: 1.3;
    }
    
    .service-tab:hover:not(.active) {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .services-content {
        min-height: 500px;
    }
    
    .service-panel {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: var(--transition-medium);
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .service-panel.active {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Content Panels */
.services-content {
    position: relative;
    min-height: 500px;
}

.service-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.service-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-panel-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.service-panel-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--neutral-black);
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-panel-info p {
    font-size: 16px;
    color: var(--neutral-medium-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--neutral-charcoal);
}

.service-features li::before {
    content: '✓';
    background: var(--accent-gold);
    color: var(--neutral-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Compact Gallery */
.gallery-grid-compact {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 400px;
}

.gallery-item-compact {
    border-radius: 8px;
    overflow: hidden;
    background: var(--neutral-medium-gray);
    cursor: pointer;
    transition: var(--transition-medium);
}

.gallery-item-compact.main {
    grid-row: span 2;
}

.gallery-item-compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.gallery-item-compact .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item-compact:hover .gallery-image {
    transform: scale(1.05);
}

/* Coming Soon Notice */
.coming-soon-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--neutral-light);
    border-radius: 8px;
    border: 2px dashed rgba(201, 169, 97, 0.3);
}

.coming-soon-icon {
    font-size: 2rem;
}

.coming-soon-text h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neutral-black);
    margin-bottom: 4px;
}

.coming-soon-text p {
    font-size: 14px;
    color: var(--neutral-medium-gray);
    margin: 0;
}

/* Gallery Placeholder */
.gallery-placeholder {
    height: 400px;
    background: var(--neutral-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(201, 169, 97, 0.3);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.gallery-placeholder p {
    color: var(--neutral-medium-gray);
    font-size: 16px;
}

/* Compact CTA Section */
.services-cta-compact {
    padding: 80px 0;
    background: var(--neutral-light);
}

.cta-content-compact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-main h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--neutral-black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-main p {
    font-size: 16px;
    color: var(--neutral-medium-gray);
    margin: 0;
}

.cta-actions-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.contact-direct-compact {
    text-align: right;
}

.contact-direct-compact .contact-text {
    display: block;
    font-size: 12px;
    color: var(--neutral-medium-gray);
    margin-bottom: 4px;
}

.contact-direct-compact .phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Mobile Responsive for Compact Design */
@media (max-width: 1024px) {
    .service-panel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid-compact {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    
    .gallery-item-compact.main {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-hero-compact {
        min-height: 80vh;
        margin-top: 70px;
    }
    
    .services-hero-container-compact {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-stats-compact {
        justify-content: space-around;
        margin: 0 20px;
    }
    
    .services-tabs {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .service-tab {
        padding: 16px 12px;
    }
    
    .tab-title {
        font-size: 12px;
    }
    
    .service-panel-info h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .service-panel_info {
        text-align: center;
    }
    
    .gallery-grid-compact {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
        height: auto;
    }
    
    .gallery-item-compact.main {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cta-content-compact {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-actions-compact {
        align-items: center;
    }
    
    .contact-direct-compact {
        text-align: center;
    }
    
    .services-interactive {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .services-hero-title-compact {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .services-hero-subtitle-compact {
        font-size: 16px;
    }
    
    .services-stats-compact {
        gap: 16px;
        padding: 24px 16px;
        margin: 0 16px;
    }
    
    .stat-item-compact .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-item-compact .stat-label {
        font-size: 10px;
    }
    
    .services-tabs {
        margin-bottom: 40px;
    }
    
    .service-tab {
        padding: 12px 8px;
    }
    
    .service-panel-info h3 {
        font-size: 1.6rem;
    }
    
    .service-panel-info p {
        font-size: 15px;
    }
    
    .service-features li {
        font-size: 13px;
    }
    
    .cta-main h2 {
        font-size: 2rem;
    }
    
    .btn-luxury-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Mobile Navigation for Services Page */
@media (max-width: 768px) {
    /* Services Hero Mobile Navigation Adjustments */
    .services-hero {
        margin-top: 70px;
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .services-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
        min-height: auto;
    }
    
    .services-hero-content {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 10px;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .services-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        margin-bottom: 20px;
        line-height: 1.1;
        text-align: center;
    }
    
    .services-hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .services-hero-tagline {
        padding: 20px 0;
        margin-bottom: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .brand-highlight {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .tagline-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .services-hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .services-hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 13px;
        min-height: 50px;
        border-radius: 4px;
        font-weight: 600;
    }
    
    .services-hero-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 24px 20px;
        gap: 20px;
        margin: 0 20px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .stat-divider {
        width: 1px;
        height: 40px;
        background: var(--accent-gold);
        opacity: 0.3;
    }
    
    .scroll-indicator {
        bottom: 20px;
        z-index: 4;
    }
    
    .scroll-text {
        font-size: 10px;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    /* Mobile service sections improvements */
    .service-detail {
        padding: 60px 0;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    
    .service-info {
        max-width: 100%;
    }
    
    .service-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .service-description {
        font-size: 15px;
        line-height: 1.6;
        color: var(--neutral-medium-gray);
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Mobile service content layout */
    .service-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-text {
        position: static;
        text-align: center;
        padding: 0 20px;
    }
    
    /* Mobile gallery improvements */
    .service-gallery {
        margin-top: 40px;
        padding: 0 16px;
    }
    
    .gallery-grid,
    .gallery-grid-alt,
    .gallery-grid-vertical,
    .gallery-masonry,
    .gallery-mixed {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item {
        min-height: 200px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-item.main,
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Coming soon section mobile */
    .service-coming-soon {
        padding: 40px 0;
    }
    
    .coming-soon-content {
        margin: 0 20px;
        padding: 40px 24px;
        border-radius: 12px;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .coming-soon-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .coming-soon-content p {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    /* Mobile CTA section */
    .services-cta {
        padding: 80px 0;
    }
    
    .services-cta .section-header-minimal {
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .services-cta .section-title-minimal {
        font-size: clamp(2rem, 6vw, 2.8rem);
        line-height: 1.2;
    }
    
    .services-cta .section-subtitle-minimal {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .services-cta-highlight-single {
        padding: 24px 20px;
        margin: 0 20px 24px;
        border-radius: 8px;
        text-align: center;
    }
    
    .services-cta-highlight-single h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .services-cta-highlight-single p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .services-cta-actions {
        gap: 24px;
        padding: 0 20px;
    }
    
    .services-cta .btn-luxury-primary {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 16px 24px;
        font-size: 13px;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .services-cta-contact {
        padding: 20px 24px;
        margin: 0;
        border-radius: 8px;
        text-align: center;
    }
    
    .services-cta-contact .contact-text {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .services-cta-contact .phone-link {
        font-size: 1.2rem;
    }
}

/* Essential Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--neutral-black);
        margin: 3px 0;
        transition: 0.3s ease;
        transform-origin: center;
        border-radius: 1px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--accent-gold);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--accent-gold);
    }

    .nav-menu {
        position: fixed !important;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--neutral-cream);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.mobile-active {
        transform: translateX(0) !important;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 16px;
        border-bottom: 1px solid rgba(42, 42, 42, 0.1);
        width: 100%;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-weight: 500;
        color: var(--neutral-charcoal);
        text-decoration: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(201, 169, 97, 0.1);
        color: var(--accent-gold);
        border-bottom-color: var(--accent-gold);
    }

    .btn-contact {
        margin-top: 20px;
        padding: 16px 32px;
        border-radius: 8px;
        border: none !important;
        background: var(--accent-gold) !important;
        color: var(--neutral-white) !important;
        font-weight: 600;
        min-height: 50px;
        text-decoration: none;
    }

    .btn-contact:hover {
        background: var(--accent-gold-light) !important;
    }
}