:root {
    --primary-blue: #0071e3;
    --cyan-glow: #00f0ff;
    --text-main: #1d1d1f;
    --text-light: #86868b;
    --bg-main: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 60px rgba(0, 113, 227, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--text-main);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: baseline;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 113, 227, 0.1);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stats {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services,
.facilities,
.doctors {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
}

.carousel-slide {
    min-width: 320px;
    width: 320px;
    padding: 0 15px;
    flex-shrink: 0;
}

.carousel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    position: absolute;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
    border-color: rgba(0, 113, 227, 0.2);
}

.service-card-media {
    height: 240px;
    background: #f5f5f7;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.service-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-us {
    padding: 120px 40px;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.why-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-us-content > p {
    color: #a1a1a6;
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    color: var(--cyan-glow);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: #a1a1a6;
    font-size: 0.95rem;
}

.why-us-visual {
    position: relative;
    min-height: 500px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.diagnostic-visual {
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%, transparent 100%);
    padding: 20px;
}

.diagnostic-visual img {
    width: 100%;
    max-width: 420px;
    max-height: 300px;
    object-fit: contain;
}

.panel-info h5 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.panel-info p {
    color: #a1a1a6;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 113, 227, 0.3);
}

.facility-image {
    height: 220px;
    background: rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facility-info {
    padding: 24px;
}

.facility-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.facility-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.facility-info p svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.facility-info .btn {
    margin-top: 15px;
}

.doctors-category h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
    border-bottom: 2px solid rgba(0, 113, 227, 0.1);
    padding-bottom: 10px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.doctor-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 113, 227, 0.3);
}

.doctor-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 240, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    overflow: hidden;
}

.doctor-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.doctor-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    margin: 4vh auto;
    max-width: 980px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: 32px;
    padding: 40px;
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 30px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-main);
}

.modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.modal-photo {
    flex-shrink: 0;
    width: 170px;
    height: 170px;
    border-radius: 24px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    color: var(--text-light);
}

.modal-info {
    flex: 1;
    min-width: 0;
}

.modal-info h3 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.modal-info h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.modal-summary {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 113, 227, 0.08);
    color: var(--primary-blue);
    font-size: 0.88rem;
    font-weight: 600;
}

.modal-sections {
    display: grid;
    gap: 16px;
}

.modal-section {
    border: 1px solid rgba(0, 113, 227, 0.08);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 18px 20px;
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.modal-section-title svg {
    color: var(--primary-blue);
}

.modal-section ul {
    padding-left: 18px;
}

.modal-section li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.65;
}

.booking {
    padding: 120px 40px;
    background: var(--bg-main);
    position: relative;
}

.glass-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: 32px;
    padding: 60px;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.booking-header p {
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
    background: #ffffff;
}

.footer {
    background: #f5f5f7;
    padding: 80px 40px 40px;
    color: var(--text-main);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: var(--text-light);
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-links p svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.floating-wa {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.wa-icon {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 1200px) {
    .prev-btn { left: 8px; }
    .next-btn { right: 8px; }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .why-us-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-container,
    .hero,
    .services,
    .facilities,
    .doctors,
    .booking,
    .footer,
    .why-us,
    .stats-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-links { display: none; }
    .nav-actions .btn { padding: 10px 18px; font-size: 14px; }

    .hero {
        min-height: 100vh;
        padding-top: 110px;
        align-items: flex-start;
    }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { max-width: 100%; font-size: 1.05rem; }
    .hero-cta { flex-direction: column; }

    .section-header { margin-bottom: 50px; }
    .section-header h2,
    .why-us-content h2 { font-size: 2.3rem; }

    .carousel-slide {
        min-width: 86vw;
        width: 86vw;
        padding: 0 8px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }

    .stats-container { gap: 24px; }
    .form-row { flex-direction: column; gap: 0; }
    .footer-container { grid-template-columns: 1fr; }
    .glass-container,
    .modal-content { padding: 28px 20px; }

    .modal { padding: 12px; }
    .modal-body {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .modal-photo {
        width: 130px;
        height: 130px;
    }
    .modal-info h3 {
        font-size: 1.55rem;
    }
    .modal-meta {
        flex-direction: column;
        align-items: stretch;
    }
    .close-btn {
        top: 12px;
        right: 16px;
    }

    .floating-wa {
        width: 58px;
        height: 58px;
        bottom: 24px;
        right: 20px;
    }
}


/* Fix visibilidad de tarjetas */
.facilities-grid,
.doctors-grid {
    position: relative;
    z-index: 2;
}

.facility-card,
.doctor-card {
    opacity: 1;
    visibility: visible;
}

.facility-card {
    background: rgba(255, 255, 255, 0.92);
}

.facility-image {
    display: block;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f7 0%, #ececf1 100%);
}

.doctor-card {
    background: rgba(255, 255, 255, 0.94);
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   FIX FINAL - TRATAMIENTOS DE ÉLITE VISIBLES
   No rompe mobile ni la lógica del carrusel
========================================================= */

.services {
    position: relative;
    z-index: 10;
    background: #ffffff;
    overflow: hidden;
}

.services .section-header {
    position: relative;
    z-index: 12;
}

.carousel-container {
    position: relative;
    z-index: 15;
    min-height: 390px;
    display: flex;
    align-items: center;
}

.carousel-track-container {
    width: 100%;
    min-height: 390px;
    overflow: hidden;
    padding: 25px 0;
}

.carousel-track {
    display: flex !important;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 320px;
    width: 320px;
    padding: 0 15px;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card,
.service-card-image {
    display: flex !important;
    flex-direction: column;
    min-height: 340px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 113, 227, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 60px rgba(0, 113, 227, 0.16);
    border-color: rgba(0, 113, 227, 0.28);
}

.service-card-media {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fb 0%, #eaf7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.service-card-media::before {
    content: "Imagen tratamiento";
    position: absolute;
    color: #9aa3ad;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    z-index: 1;
}

.service-card-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-media img:not([src]),
.service-card-media img[src=""] {
    display: none;
}

.service-card-content {
    padding: 22px;
    background: #ffffff;
    flex: 1;
}

.service-card-content h3,
.service-card h3 {
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card-content p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.55;
}

.carousel-btn {
    z-index: 30;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
}

.carousel-btn:hover {
    background: #0071e3;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-container {
        min-height: 370px;
    }

    .carousel-track-container {
        min-height: 370px;
        padding: 20px 0;
    }

    .carousel-slide {
        min-width: 86vw;
        width: 86vw;
        padding: 0 8px;
    }

    .service-card,
    .service-card-image {
        min-height: 330px;
    }

    .service-card-media {
        height: 185px;
    }

    .service-card-content {
        padding: 20px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }

    .prev-btn {
        left: 4px;
    }

    .next-btn {
        right: 4px;
    }
}
