/* Combined and optimized CSS */
:root {
    --primary: #10255C;
    --secondary: #EF904C;
    --accent: #ff6600;
    --light: #f5f5f5;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
    --spacing-xl: 4rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-sm: 0.5rem;
    --text-light: white;
    --border-radius-md: 50px;
    --text-primary: #333;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    background-color: white;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Responsive Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    main {
        max-width: 100%;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 769px) {
    body {
        font-size: 16px;
    }

    main {
        max-width: 1400px;
    }
}

/* Optimized image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading styles */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Optimized animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Will-change hints for performance */
.hero-carousel {
    will-change: transform;
}

.carousel-slide {
    will-change: opacity, transform;
}

/* Optimized transitions */
.carousel-slide {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Optimized layout shifts */
.hero {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
    margin: 0 auto var(--spacing-md);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero .cta-button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    margin-right: 1rem;
}

.hero .whatsapp-button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.hero .whatsapp-button .whatsapp-svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 3rem;
    }

    .hero-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.15rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .hero .cta-button,
    .hero .whatsapp-button {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Optimized font loading */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2') format('woff2');
}

/* Optimized media queries */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 1.15rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
}

/* Optimized print styles */
@media print {
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .cta-button {
        display: none !important;
    }
}

/* Modern Header */
.brand-header {
    padding: 1.5rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

.brand-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero h1 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 auto var(--spacing-md);
}

/* Hero button styles */
.hero .cta-button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.hero .cta-button:hover {
    background: var(--secondary);
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Modern Card Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

/* Ensure reviews and FAQ sections are never affected by parent grid */
.services-grid .reviews-section,
.services-grid .faq-section {
    grid-column: 1 / -1 !important;
    display: block !important;
    width: 100% !important;
}

/* Force reviews and FAQ to be block-level and full width */
.reviews-section,
.faq-section {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Medium screens - 2 columns */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 16px rgba(0,0,0,0.1);
}

.card-media {
    height: 220px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.card-media a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-card .card-media {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: visible;
    text-align: left;
}

.card-content h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.card-content p {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 1.25rem;
    flex: 1;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 0 0;
    padding: 0;
    width: 100%;
    gap: 0.5rem;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

.action-icons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    min-width: 0;
    overflow: visible;
    justify-content: flex-end;
    margin-left: auto;
    padding: 2px;
}

.phone-card-icon {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 0;
}

.phone-card-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    opacity: 0.9;
    text-decoration: none;
    background-color: white;
}

.phone-card-icon .material-icons {
    font-size: 20px;
    color: var(--primary);
}

.whatsapp-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: none;
    flex-shrink: 0;
}

.whatsapp-card-icon:hover {
    transform: translateY(-2px);
    background-color: transparent;
    box-shadow: none;
}

.whatsapp-card-icon .whatsapp-img {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.whatsapp-card-icon {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
}

.whatsapp-card-icon .whatsapp-svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

/* WhatsApp icon visible on all screen sizes */

/* Service card button styles */
.service-card .cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    width: auto;
}

.service-card .cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 3px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* Enhanced Loading States */
        .shimmer-loading {
            position: relative;
            overflow: hidden;
            background: #f1f5f9;
        }

        .shimmer-loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.6),
                transparent
            );
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% {
                left: 200%;
            }
        }
        /* Existing styles... */

        /* Enhanced Booking Modal */
        .booking-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(16,37,92,0.2);
            z-index: 1001;
            max-width: 500px;
            width: 90%;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(16,37,92,0.6);
            z-index: 1000;
        }

/* Reviews Section */
.reviews-section {
    padding: 4rem 1.5rem;
    background: var(--light);
    text-align: center;
    display: block !important;
    width: 100% !important;
    clear: both;
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 1.1rem;
    color: var(--dark);
}

.google-reviews-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--dark);
    transition: opacity 0.3s ease;
}

.google-reviews-link:hover {
    opacity: 0.8;
}

.google-logo {
    width: 25%;
    height: auto;
    display: block;
}

.reviews-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.reviews-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.review-slide {
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.review-text {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    flex-grow: 1;
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Reviews Carousel Indicators */
.reviews-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-indicator:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.review-indicator.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* Large screens - show 2 cards */
@media (min-width: 1025px) {
    .review-slide {
        flex: 0 0 calc(50% - 1rem);
        width: calc(50% - 1rem);
    }
}

/* Medium screens - show 1 card */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-slide {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .reviews-carousel-track {
        gap: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 1rem;
    }
    
    .reviews-carousel-track {
        gap: 0;
    }
}

/* Clients Section */
.clients-section {
    padding: 4rem 1.5rem;
    background: white;
    text-align: center;
    overflow: hidden;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    margin: 3rem auto 0;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.client-logo {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
    flex-shrink: 0;
    width: 200px;
}

.client-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5 - 2rem * 5));
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients-section {
        padding: 3rem 1rem;
    }
    
    .client-logo {
        padding: 1rem;
        width: 150px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 5 - 2rem * 5));
        }
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background: var(--light);
    max-width: 1400px;
    margin: 4rem auto 0;
    width: 100%;
    box-sizing: border-box;
    display: block !important;
    clear: both;
}

.faq-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    width: 100%;
    display: block;
    column-count: 1 !important;
    column-gap: 0 !important;
    columns: 1 !important;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-question span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    display: none;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients-section,
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .client-logo {
        padding: 1rem;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-question,
    .faq-answer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Showcase Section */
.service-showcase {
    padding: 4rem 1.5rem;
    background: white;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

/* Carousel Section */
.carousel-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.description-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@media (min-width: 769px) {
    .description-wrapper {
        padding-right: 0;
        margin-right: 0;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.slide-content {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.service-image img,
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    border: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Thumbnails Row */
.thumbnails-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnails-row::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex: 0 0 200px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--secondary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-play-icon svg {
    color: white;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Responsive Design */
@media (min-width: 1024px) {
    .service-showcase {
        padding: 4rem 1.5rem;
    }

    .showcase-container {
        grid-template-columns: 45% 55%;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .description-wrapper {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
    }
    
    .service-description {
        padding-right: 0;
        margin-right: 0;
    }
    
    .service-description * {
        margin-right: 0 !important;
    }

    .thumbnail {
        flex: 0 0 240px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .service-showcase {
        padding: 4rem 1.5rem;
    }

    .showcase-container {
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;
    }

    .carousel-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .description-wrapper {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
    }
    
    .service-description {
        padding-right: 0;
        margin-right: 0;
    }
    
    .service-description * {
        margin-right: 0;
    }

    .thumbnail {
        flex: 0 0 200px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .service-showcase {
        padding: 3rem 1rem;
    }

    .showcase-container {
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .thumbnail {
        flex: 0 0 160px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .service-showcase {
        padding: 2rem 1rem;
    }

    .showcase-container {
        gap: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .thumbnail {
        flex: 0 0 140px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Video Placeholder */
.video-placeholder {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}

.video-placeholder h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.video-placeholder p {
    color: var(--text-primary);
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (min-width: 1024px) {
    .video-placeholder {
        grid-column: 1;
        max-width: 100%;
        margin: 1.5rem 0 0 0;
    }
    
    .video-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .video-placeholder {
        margin-top: 1.5rem;
    }
}

/* Service price styles */
.service-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 1rem 0;
    padding: 0;
    flex-wrap: wrap;
}

.service-price .price-label {
    font-size: 0.75rem;
    color: var(--text-primary);
    margin-right: 0;
    line-height: 0.95;
    font-style: italic;
    font-weight: normal;
    display: inline-block;
}

.service-price .price {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.service-price .currency-symbol {
    width: 16px;
    height: 14px;
    margin-right: 2px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* More link styles */
.more-link {
    display: none !important;
}

@media (max-width: 768px) {
    .service-card {
        height: auto;
    }
    
    .card-content {
        display: block;
    }
    
    .card-content p {
        flex: none;
    }
    
    .card-actions {
        margin-top: 0;
    }
}

.breadcrumbs {
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #eee;
    margin: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumbs ul,
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    white-space: nowrap;
    overflow-x: auto;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.breadcrumbs span {
    white-space: nowrap;
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.75rem 1rem;
    }
    
    .breadcrumbs li {
        font-size: 0.85rem;
    }
}

