/* ==========================================================================
   INJOE DENTAL - UNIFIED DESIGN SYSTEM & STYLESHEET
   Consolidated Design Tokens, Global Resets, Headers, Footers, and Pages.
   ========================================================================== */

:root {
    /* Brand Design Tokens */
    --gold: #c5a059;
    --gold-dark: #a68549;

    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-dark-accent: #BDBDBD;

    /* Text Colors */
    --text-primary: #111111;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;

    /* Font Families */
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Compatibility Aliases for Legacy CSS Selectors */
    --dark: var(--bg-primary);
    --dark-grey: var(--bg-secondary);
    --text-grey: var(--text-secondary);
    --white: var(--text-primary);
    --bg-dark: var(--bg-primary);
    --card-bg: var(--bg-secondary);
    --black: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-main);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- GLOBAL TYPOGRAPHY ENFORCEMENT --- */
h1, h2, h3, h4, h5, h6, p, a, button, input, span, div, li, td, th, label, textarea, select {
    font-family: 'Montserrat', sans-serif;
}

i, em {
    font-style: normal !important;
}

/* Fluid Typography and Global Spacing */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.1;
    font-weight: 800;
}

h1 i, h2 i, h3 i {
    font-weight: 300;
    color: var(--gold);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
}

p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

section {
    padding: clamp(60px, 8vw, 120px) 10%;
    position: relative;
    box-sizing: border-box;
}

.section-tag {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Form Styles */
.premium-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.input-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.input-group input, 
.input-group select, 
.input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.4s;
    outline: none;
}

.input-group input:focus, 
.input-group select:focus,
.input-group textarea:focus {
    border-bottom: 2px solid var(--gold);
}

/* Scroll Reveal Base classes */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-enabled .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === CORE PAGE STYLES === */
/* --- HEADER REFINADO --- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 80px; /* Más aire a los lados */
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    display: flex;
    justify-content: space-between; /* Logo a la izq, Menú a la der */
    align-items: center; /* Alineación vertical perfecta */
    transition: all 0.4s ease;
    box-sizing: border-box;
}

/* El logo se mantiene imponente in Montserrat */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: #111111;
    text-transform: uppercase;
}

.logo span {
    color: var(--gold);
    font-weight: 300;
}

/* Navegación limpia y espaciada */
nav {
    display: flex;
    gap: 35px; /* Espacio uniforme entre links */
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* Hover y Activo: El toque dorado */
nav a:hover, nav a.active {
    color: var(--gold);
}

/* Eliminado indicador duplicado antiguo */

/* --- ESTILO DE CABECERA DE PÁGINA --- */
.page-header {
    padding: 150px 0 80px 0;
    text-align: center;
    background-color: var(--dark);
}

.page-header h1 {
    font-size: 5rem; /* Grande, estilo Envato */
    line-height: 1;
    margin: 20px 0;
    color: var(--white);
}

.page-header h1 i {
    color: var(--gold);
}

.page-subtitle {
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- GRID DE CASOS (EL ESQUEMA) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas grandes */
    gap: 60px;
    padding-bottom: 100px;
}

.case-item {
    cursor: pointer;
}

.case-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #BDBDBD; /* Color de fondo mientras no hay fotos */
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.case-item:hover .case-image-placeholder {
    border-color: var(--gold);
}

.placeholder-text {
    color: #333;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: bold;
}

.case-meta {
    margin-top: 25px;
}

.case-category {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.case-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* IMAGEN DE FONDO REALISTA */
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(100,100,100,0.65); /* Esto es lo que le da el toque premium dark */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.top-label {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 0;
}

h1 i { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 30px auto;
    max-width: 500px;
}

.cta-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    transition: 0.4s;
}

.cta-gold:hover {
    background: var(--gold);
    color: black;
}

/* --- SECCIÓN PROCESO --- */
.process {
    padding: 120px 0;
    background-color: var(--dark-grey); /* Tono claro (#f9f9f9) */
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-right: 20px;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.3;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--white);
}

.process-step p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 90%;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .step-line {
        display: none;
    }
}

/* SECCIÓN ABOUT */
.about {
    padding: 150px 0;
    display: flex;
    justify-content: center;
}

.about-wrapper {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 100px;
}

.about-image img {
    width: 450px;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
}

.about-info { max-width: 500px; }

.gold-line {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.section-tag {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 20px 0;
}

.about-info p {
    color: var(--text-grey);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-grey);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.link-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.img-wrapper {
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Borde sutil dorado */
    padding: 15px;
}

.img-wrapper img {
    width: 100%;
    filter: grayscale(0.4) contrast(1.1);
}

/* --- SECCIÓN SERVICIOS --- */
.services {
    padding: 100px 0;
    background-color: var(--dark-grey); /* Tono claro (#f9f9f9) */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: #ffffff; /* Fondo blanco */
    padding: 50px 40px;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(100,100,100,0.02);
    transition: 0.5s ease;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.08);
}

.service-icon {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    width: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

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

.service-card.active {
    background-color: var(--gold);
}

.service-card.active h3, 
.service-card.active p, 
.service-card.active .service-icon {
    color: #ffffff;
    border-color: #ffffff;
}

/* --- SECCIÓN RESULTADOS (ANTES Y DESPUÉS) --- */
.results {
    padding: 120px 0;
    background-color: var(--dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.result-card {
    background: #ffffff; /* Blanco */
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(100,100,100,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.result-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(100,100,100,0.08);
}

.result-img-container {
    height: 300px;
    overflow: hidden;
}

.result-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    padding: 30px;
    text-align: center;
}

.result-info h3 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.result-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* --- SECCIÓN TURISMO DENTAL (BANNER) --- */
.tourism {
    padding-bottom: 120px;
}

.tourism-card {
    display: flex;
    background-color: #BDBDBD; /* Contraste oscuro premium */
    border-radius: 25px;
    overflow: hidden;
    align-items: center;
    color: #ffffff;
}

.tourism-content {
    padding: 80px;
    flex: 1;
}

.tourism-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    margin: 20px 0;
}

.tourism-content h2 span {
    color: var(--gold);
    font-weight: 300;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #ffffff;
}

.check-list li span {
    color: var(--gold);
    margin-right: 10px;
    font-weight: bold;
}

.tourism-image {
    flex: 1;
    height: 100%;
}

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

.btn-gold-outline {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: #000000;
}

/* --- CONTENEDOR MULTIMEDIA PROFESIONAL --- */
.case-media-container {
    width: 100%;
    aspect-ratio: 16 / 10; /* Proporción cinematográfica */
    background: #BDBDBD;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.case-video, .case-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video/foto llene el cuadro sin deformarse */
    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Efecto de máscara oscura que se aclara al pasar el mouse */
.media-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(100,100,100,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.media-overlay span {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.case-item:hover .media-overlay {
    opacity: 1;
}

.case-item:hover .case-video, 
.case-item:hover .case-img {
    transform: scale(1.05); /* Zoom suave al estilo Envato */
}

/* --- MEJORA DE ESPACIADO GENERAL --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px; /* Mucho espacio entre filas para que respiren los casos */
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* --- SECCIÓN FEATURES (Diferenciadores) --- */
.features {
    padding: 100px 0;
    border-top: 1px solid #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.feature-item {
    position: relative;
    padding: 40px;
    background: #0f0f0f;
    transition: 0.5s ease;
}

.feature-item:hover {
    background: #151515;
    transform: translateY(-5px);
}

.feature-number {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    opacity: 0.6;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- SECCIÓN CTA BANNER (Impacto visual) --- */
.cta-banner {
    padding: 100px 5%;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    background: #BDBDBD;
    overflow: hidden;
}

.cta-image {
    flex: 1;
    height: 500px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: 1s ease;
}

.cta-wrapper:hover .cta-image img {
    filter: grayscale(0%) contrast(1); /* Efecto llamativo al pasar el mouse */
    transform: scale(1.05);
}

.cta-text {
    flex: 1;
    padding: 80px;
}

.cta-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 20px 0;
}

.cta-text p {
    color: var(--text-grey);
    margin-bottom: 40px;
}

/* Estado inicial de los elementos (ocultos y un poco abajo) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Estado cuando se vuelven visibles */
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Retraso en las tarjetas de beneficios para que aparezcan una tras otra */
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.4s; }

.cta-image {
    position: relative;
    overflow: hidden;
}

/* Sombra interna para que la imagen se funda con el texto negro */
.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17,17,17,1) 0%, rgba(17,17,17,0) 20%);
}

/* --- ARREGLO DE VISIBILIDAD --- */
.reveal {
    opacity: 1; /* Por defecto se ve */
    transform: translateY(0);
    transition: all 1s ease-out;
}

/* Solo si el JS está activo, aplicamos el estado oculto inicial */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.js-enabled .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- ESTILO DE LA GALERÍA (Para que no se vea vacío) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
    padding: 80px 0;
}

.case-image-wrapper {
    background: #BDBDBD;
    aspect-ratio: 16 / 10;
    position: relative;
    border: 1px solid #222;
    overflow: hidden;
}

.placeholder-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #333;
    font-size: 0.6rem;
    letter-spacing: 4px;
}

.case-info {
    margin-top: 25px;
}

.case-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-top: 10px;
}

/* --- COMPACT GALLERY --- */
.compact-gallery {
    padding: 80px 0;
    background: var(--dark);
}

.compact-header {
    margin-bottom: 50px;
}

.compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos casos por fila */
    gap: 30px;
}

.compact-item {
    display: flex; /* Alinea media y texto uno al lado del otro */
    background: #BDBDBD;
    border: 1px solid #1a1a1a;
    transition: 0.4s ease;
    height: 250px; /* Altura fija para que sea compacto */
}

.compact-item:hover {
    border-color: var(--gold);
    background: #161616;
}

/* Espacio de la Imagen/Video */
.compact-media {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.compact-media img, .compact-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: black;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 3px 8px;
    letter-spacing: 1px;
}

/* Espacio del Texto */
.compact-detail {
    flex: 1.2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-cat {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.compact-detail h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.compact-detail p {
    color: var(--text-grey);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.view-case {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    border-bottom: 1px solid var(--gold);
    align-self: flex-start;
    padding-bottom: 2px;
}
/* Subtítulos que flotan (Minimalismo puro) */
.media-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.masonry-item:hover .media-caption {
    opacity: 1;
    transform: translateY(0);
}

.media-caption .tag {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    display: block;
}

.media-caption h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
}

/* --- CORRECCIÓN PROCESS CARD --- */
.process-refined {
    padding: 100px 0;
    background: var(--dark);
}

.process-card {
    display: flex;
    align-items: stretch;
    background: #0f0f0f;
    border: 1px solid rgba(197, 160, 89, 0.2);
    min-height: 450px;
    overflow: hidden;
}

.process-image {
    flex: 1;
    position: relative;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.image-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: black;
    padding: 5px 15px;
    font-size: 0.6rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.process-info {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-info h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 20px 0;
    color: white;
}

.process-info h2 i {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.process-info p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
}

/* Responsivo para que en Mac/Laptop se vea perfecto */
@media (max-width: 992px) {
    .process-card {
        flex-direction: column;
    }
    .process-info {
        padding: 40px;
    }
}

/* --- NUEVA SECCIÓN MÉTODO DIGITAL --- */
.method-refined {
    padding: 100px 5%; /* Aire a los lados y arriba/abajo */
    background: var(--dark);
}

.method-card {
    display: flex; /* Diseño horizontal imagen-texto */
    align-items: stretch; /* Mismo alto para ambas partes */
    background: #0d0d0d; /* Un negro ligeramente distinto para profundidad */
    border: 1px solid rgba(197, 160, 89, 0.1);
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.5s ease;
}

.method-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 40px rgba(100,100,100,0.4);
}

/* Espacio Multimedia */
.method-media {
    flex: 1.1; /* Un poco más de espacio para la imagen */
    position: relative;
    overflow: hidden;
}

.method-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Llenado perfecto sin deformar */
    transition: 0.8s ease;
}

.method-card:hover .method-media img {
    transform: scale(1.05); /* Zoom suave al estilo Envato */
}

.image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(100,100,100,0.5) 0%, rgba(100,100,100,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.image-overlay span {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Espacio de Texto Refinado */
.method-info {
    flex: 1; /* Espacio equilibrado para el texto */
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-gold {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.method-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    line-height: 1.1;
    color: white;
}

.method-info h2 i {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--gold);
}

.method-info p {
    color: var(--text-grey);
    line-height: 1.8;
    margin: 30px 0 40px 0;
    font-size: 1rem;
    max-width: 450px;
}

/* El botón de lujo que abre el Pop-up */
.btn-lujo {
    align-self: flex-start;
    border-bottom: 1px solid var(--gold);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-lujo:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* --- ESTILOS DEL MODAL --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(100,100,100,0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #BDBDBD;
    margin: 5% auto;
    padding: 50px;
    border: 1px solid var(--gold);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(100,100,100,0.5);
}

.close-modal {
    position: absolute;
    top: 20px; right: 30px;
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
}

.modal-header h2 span {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.modal-

.info-item {
    margin-bottom: 20px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.info-item h4 {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-grey);
    font-size: 0.8rem;
}

.whatsapp-action {
    margin-top: 40px;
    text-align: center;
}

.btn-whatsapp {
    display: flex; /* Flexbox para alinear icono y texto */
    align-items: center;
    justify-content: center;
    gap: 12px; /* Espacio entre icono y texto */
    background: #25d366; /* Verde oficial de WhatsApp */
    color: white;
    padding: 18px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-whatsapp:hover {
    background: #128c7e; /* Verde más oscuro al pasar el mouse */
    transform: scale(1.02);
}

.btn-whatsapp svg {
    fill: white;
}

/* --- FOOTER STYLE --- */
.main-footer {
    background-color: #050505; /* Un negro más profundo para el cierre */
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2); /* Línea dorada muy sutil */
    color: white;
}

.main-footer .logo {
    color: #ffffff;
}

.main-footer p {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col-brand p {
    color: #eeeeee;
    margin: 25px 0;
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #eeeeee;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: #050505;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #444;
}

.footer-bottom a {
    color: #444;
    text-decoration: none;
    margin-left: 20px;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col-brand p {
        margin: 25px auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Estilos del Modal */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100,100,100,0.8); /* Fondo oscuro traslúcido */
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #BDBDBD; /* Negro Injoe */
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #c5a059; /* Borde dorado */
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #c5a059;
    font-size: 28px;
    cursor: pointer;
}

.appointment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.opt-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.opt-btn:hover {
    background: #c5a059;
    color: black;
    border-color: #c5a059;
    transform: translateY(-2px);
}

/* Contenedor de Navegación */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px; /* Espacio amplio entre links como en la referencia */
}

.nav-link {
    text-decoration: none;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px; /* Toque elegante de la referencia */
    text-transform: uppercase;
    transition: 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #c5a059; /* Dorado */
}

/* Línea sutil debajo de la opción activa, perfectamente centrada */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* letter-spacing adds space to the right, so we offset the center slightly to the left to perfectly balance it visually */
    left: calc(50% - 1px);
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: #c5a059;
}

/* Selector de Idioma (ES | EN) */
.lang-switcher {
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555555;
    text-decoration: none;
    transition: 0.3s ease;
}

.lang-option:hover {
    color: #111111;
}

.lang-option.active {
    font-weight: 700;
    color: #c5a059; /* Dorado para el activo */
}

.lang-sep {
    color: #cccccc;
    font-size: 0.85rem;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #BDBDBD;
    border: 1px solid #c5a059;
    min-width: 100px;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown span {
    display: block;
    padding: 10px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
}

.lang-dropdown span:hover {
    background: #c5a059;
    color: black;
}

/* === SUCCESS STORIES PAGE STYLES === */
/* ==========================================================================
   CASOS.CSS - Identidad Visual Injoe Dental
   ========================================================================== */

/* --- HEADER REFINADO --- */

/* --- SECCIÓN TÍTULO --- */
.page-

h1 {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

/* --- MOSAICO DE CASOS (Grid Irregular) --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    padding: 60px 10%;
}

.case-card {
    position: relative;
    overflow: hidden;
    background: #BDBDBD;
    border-radius: 2px;
}

/* Clases para variedad de tamaños */
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }
.big { grid-column: span 2; grid-row: span 2; }

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
}

.case-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(100,100,100,0.9), transparent);
    opacity: 0;
    transition: 0.5s ease;
    box-sizing: border-box;
}

.case-card:hover .case-overlay { opacity: 1; }

.case-overlay h3 {
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 1.8rem;
    margin: 0;
}

/* --- FOOTER STYLE --- */

.social-links a {
    color: var(--gold);
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 12px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: black;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2000;
}
.mobile-menu-toggle svg {
    width: 32px;
    height: 32px;
    fill: #111111;
    transition: transform 0.3s ease;
}
.mobile-menu-toggle.open svg {
    transform: rotate(90deg);
}

/* Responsivo para móviles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    header {
        padding: 15px 20px !important;
    }
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
        gap: 40px;
    }
    nav.open {
        right: 0;
    }
    nav a {
        font-size: 1.5rem;
    }
    .lang-switcher {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
    }
    
    .giant-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.1;
    }
    
    .philosophie-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .philosophie-image img {
        height: auto;
        max-height: 400px;
    }

    .philosophie-text p {
        max-width: 100% !important;
        margin: 0 auto;
    }

    .signature {
        justify-content: center;
    }
}

/* 3. ESTÉTICA DE LAS SECCIONES (Contenedores)
   ========================================================================== */

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* 4. IMÁGENES Y GALERÍA (Base para Casos de Éxito)
   ========================================================================== */
.case-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.case-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* 5. FOOTER
   ========================================================================== */

/* --- ESTILO EDITORIAL DE GALERÍA --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    position: relative;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    background: #BDBDBD;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(100,100,100,0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Forzamos que la imagen cubra todo el 3:4 sin deformarse */
.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s;
}

.case-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Ajuste para que al filtrar, el "display: none" no rompa el centrado */
.case-card[style*="display: none"] {
    display: none !important;
}

/* Texto superpuesto elegante */
.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(100,100,100,0.85) 0%, rgba(100,100,100,0.4) 60%, transparent 100%);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s;
}

.case-overlay h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin: 0;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: 1px;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
}

.step-number {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 2.5rem;
}

.step-line {
    height: 1px;
    background: var(--gold);
    flex-grow: 1;
    margin: 0 20px;
    opacity: 0.3;
}

.step-

/* --- REDISEÑO SECCIÓN PROCESO --- */
.process {
    background-color: #080808; /* Un tono más oscuro que el fondo general */
    padding: 120px 10%;
    position: relative;
}

.process::before {
    content: 'METHODOLOGY';
    position: absolute;
    top: 50px;
    right: 10%;
    font-size: 8rem;
    font-family: var(--font-accent);
    color: rgba(197, 160, 89, 0.03); /* Texto gigante de fondo muy sutil */
    font-weight: 900;
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-10px);
}

.step-number {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 3.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
    opacity: 0.6;
}

.process-step h3 {
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.process-step p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Efecto de brillo en la esquina al hacer hover */
.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--gold) transparent transparent;
    opacity: 0;
    transition: 0.3s;
}

.process-step:hover::after {
    opacity: 0.5;
}

.premium-gallery {
    padding: 100px 0;
    background: #0a0a0a;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 150px; /* Gran espacio entre casos para que cada uno respire */
    max-width: 1200px;
    margin: 0 auto;
}

.case-slide {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* La foto es más grande que el texto */
    align-items: center;
    gap: 80px;
    padding: 0 5%;
}

/* Invertimos el orden en los casos pares para dinamismo visual */
.carousel-slide:nth-child(even) .case-slide {
    grid-template-columns: 0.8fr 1.2fr;
}
.carousel-slide:nth-child(even) .case-image { order: 2; }
.carousel-slide:nth-child(even) .case-detail { order: 1; text-align: right; }

.case-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(100,100,100,0.5);
}

.case-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

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

.case-detail {
    padding: 20px;
}

.step-num {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 20px;
}

.case-detail h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: var(--font-accent);
}

.case-detail p {
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.case-meta {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 20px;
}

.carousel-slide:nth-child(even) .case-meta {
    justify-content: flex-end;
}

.case-meta span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.philosophie-

.philosophie-container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophie-text {
    flex: 1;
}

.giant-title {
    font-family: var(--font-accent);
    font-size: 5.5rem; /* Tamaño masivo como en la captura */
    line-height: 0.95;
    margin: 30px 0;
    font-weight: 700;
}

.giant-title i {
    color: var(--gold);
    font-weight: 300;
}

.philosophie-text p {
    font-family: var(--font-main);
    color: #cccccc; /* Light text for readability on dark background */
    font-size: 1.1rem;
    max-width: 450px;
    line-height: 1.8;
}

.signature {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.signature p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.gold-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* La imagen con el borde decorativo de la referencia */
.philosophie-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.philosophie-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-accent-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    border: 1px solid var(--gold);
    z-index: 1;
}

/* --- MINI HERO --- */
.mini-hero {
    position: relative;
    padding: 180px 10% 80px;
    background-color: #0d0d0d;
    /* background-image: url('tu-fondo-texturizado-oscuro.jpg'); */ /* Opcional */
    background-size: cover;
    text-align: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 0%, #0d0d0d 90%);
}

.mini-hero .container {
    position: relative;
    z-index: 2;
}

/* --- FILTROS DE TRATAMIENTO --- */
.treatment-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--white);
    padding: 10px 25px;
    font-family: var(--font-main);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.treatment-tag {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* --- MODAL PREMIUM FIX --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(100,100,100,0.95); /* Fondo muy oscuro para que resalte el blanco */
    backdrop-filter: blur(10px);
}

.modal-content-premium {
    background-color: #fff;
    margin: 5% auto;
    padding: 80px;
    width: 90%;
    max-width: 650px; /* Más angosto y alto, tipo folleto */
    position: relative;
    color: #000;
    box-shadow: 0 50px 100px rgba(100,100,100,0.5);
}

.close-modal {
    position: absolute;
    right: 30px; top: 20px;
    font-size: 35px;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
}

.close-modal:hover { color: var(--gold); }

.modal-left h2 {
    font-size: 3.5rem;
    line-height: 0.9;
    margin: 20px 0;
    color: #000;
}

.modal-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-n {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 1.5rem;
}

.step-txt h4 {
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.step-txt p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Botón de WhatsApp sólido */
.btn-gold-full {
    display: block;
    text-align: center;
    background: var(--gold);
    color: #fff;
    padding: 20px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.4s;
}

.btn-gold-full:hover {
    background: #BDBDBD;
}

/* --- BEFORE & AFTER SLIDER & CAROUSEL --- */
.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(100,100,100,0.1);
    user-select: none;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-img {
    z-index: 1;
}

.after-img {
    z-index: 2;
    width: 100%;
    /* clip-path will be set by JS based on slider value */
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gold);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(100,100,100,0.2);
    transition: all 0.3s;
}

.slider-container:hover .slider-handle::after {
    background: var(--gold);
    color: #ffffff;
}

/* Labels */
.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(100,100,100,0.7);
    color: #ffffff;
    padding: 6px 15px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
    font-weight: 700;
    border-radius: 2px;
    pointer-events: none;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* Range input cover */
.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: ew-resize;
    margin: 0;
}

/* --- PATIENT CAROUSEL --- */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #111111;
    box-shadow: 0 5px 15px rgba(100,100,100,0.05);
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.btn-prev {
    left: 0;
}

.btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dddddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* === DENTAL TOURISM PAGE STYLES === */

/* --- HEADER REFINADO --- */

/* --- HERO TURISMO --- */
.tourism-hero {
    height: 100vh;
    background: url('imagenes/hero-turismo.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(100, 100, 100, 0.55); /* Capa de alta calidad para legibilidad */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.hero-content h1 i { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--gold); 
    font-weight: 300; 
}

.hero-content p { 
    font-size: 1.1rem; 
    color: #e0e0e0; 
    margin-bottom: 40px; 
}

.btn-gold-solid {
    background: var(--gold);
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--gold);
}

.btn-gold-solid:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- FOOTER STYLE --- */

.social-links a {
    color: var(--gold);
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 12px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: black;
}

/* Responsivo para móviles */
@media (max-width: 768px) {

}

/* --- SECCIÓN ASIMÉTRICA (Oscuro) --- */
.travel-experience {
    background-color: #BDBDBD; /* Complementario oscuro */
    color: #ffffff;
    padding: 150px 10% 120px 10%;
}

.vision-wrapper { display: flex; align-items: center; gap: 80px; }

.vision-image { flex: 1.2; position: relative; }
.vision-image img { width: 100%; height: 600px; object-fit: cover; box-shadow: 30px 30px 60px rgba(100,100,100,0.1); }
.gold-frame { position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 1px solid var(--gold); z-index: -1; }

.vision-content { flex: 0.8; padding: 40px; }

.giant-title { font-family: var(--font-accent); font-weight: 700; font-size: 4rem; line-height: 1; margin-bottom: 30px; }

.travel-perks { margin-top: 30px; }
.perk { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; color: #cccccc; }
.perk span { color: var(--gold); margin-right: 10px; }

/* Botones */
.btn-gold-solid {
    background: var(--gold);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    transition: 0.4s;
}
.btn-gold-solid:hover { background: #fff; color: #000; }

/* --- ITINERARIO (Blanco) --- */
.itinerary-

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

.day-card {
    padding: 40px;
    background: #f9f9f9;
    border: 1px solid #eeeeee;
    transition: 0.4s;
}

.day-card.active, .day-card:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 10px 30px rgba(100,100,100,0.02);
}

.day-number {
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
}

.day-card h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #111111;
}

.day-card p {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.6;
}

/* --- FAQ SECTION (Oscuro) --- */
.faq-

.faq-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Texto a la izquierda, preguntas a la derecha */
    gap: 80px;
    align-items: start;
}

.faq-header h2 {
    margin-top: 20px;
    font-size: 3.5rem;
    color: #ffffff;
    font-family: var(--font-accent);
}

.faq-header p {
    color: #cccccc;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 35px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    transition: color 0.3s;
    color: #ffffff;
}

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

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.4s;
}

/* Respuesta oculta por defecto */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 35px;
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 90%;
}

/* Clase activa para el icono */
.faq-item.active .icon {
    transform: rotate(45deg);
    display: inline-block;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.modal {
    display: none; /* Debe estar en none al inicio */
    position: fixed;
    z-index: 9999; /* Valor muy alto para estar encima de todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100,100,100,0.8);
    backdrop-filter: blur(10px);
}

/* === ABOUT US PAGE STYLES === */
/* --- VARIABLES (Heredadas) --- */

/* --- HEADER (Ajustado para fondo blanco) --- */

/* --- HERO NOSOTROS --- */
.nosotros-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('MATERIAL/0H3A0318.jpg') center/cover no-repeat;
}

.nosotros-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(100,100,100,0.3) 0%, rgba(100,100,100,0.7) 100%);
    z-index: 1;
}

.nosotros-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.nosotros-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 20px 0;
}

.nosotros-hero h1 span { 
    color: var(--gold); 
    font-weight: 300; 
}

.nosotros-hero p { 
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #e0e0e0; 
    line-height: 1.6;
    max-width: 700px; 
    margin: 0 auto; 
}

/* --- SECCIÓN VISIÓN (Superposición) --- */
.about-vision {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.vision-wrapper {
    display: flex;
    align-items: center;
    max-width: 1300px;
}

.vision-image {
    flex: 1.2;
    position: relative;
}

.vision-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: 40px 40px 80px rgba(100,100,100,0.05);
}

.gold-frame {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.vision-content {
    flex: 0.8;
    background: #fff;
    padding: 80px;
    margin-left: -120px; /* Efecto de superposición editorial */
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(100,100,100,0.03);
}

.giant-title {
    font-family: var(--font-accent);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 30px;
}

.vision-content p { color: #666; line-height: 1.8; margin-bottom: 40px; }

/* --- VALORES (GRID) --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 150px 10%;
    background-color: #fcfcfc;
}

.value-item {
    text-align: center;
}

.v-num {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.value-item h3 { text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 20px; }
.value-item p { color: #777; font-size: 0.9rem; line-height: 1.6; }

/* --- FOOTER --- */

.visual-divider {
    width: 100%;
    height: 60vh; /* Altura ideal: ni muy alta ni muy corta */
    overflow: hidden;
    position: relative;
    background-color: #BDBDBD;
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container video, 
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto es lo que evita problemas en celular */
    object-position: center;
}

.v-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(100, 100, 100, 0.3); /* Oscurece un poco para que el texto resalte */
}

.v-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 2;
}

.v-content h2 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(100,100,100,0.5);
}

/* Ajuste para Celulares */
@media (max-width: 768px) {
    .visual-divider {
        height: 40vh; /* Más bajo en móvil para que no sea molesto */
    }
    .v-content h2 {
        font-size: 2rem;
    }
}

/* --- FIX HEADER --- */

/* Línea dorada bajo el link activo */

/* --- FOOTER STYLE --- */

.social-links a {
    color: var(--gold);
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 12px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: black;
}



/* --- SECCIÓN CONTACTO NOSOTROS --- */
.contact-nosotros {
    padding: 150px 0;
    background-color: #fff;
    color: #000;
}

.container-contact {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.info-group {
    margin-bottom: 40px;
}

.info-group h4 {
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-group p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 5px 0;
}

/* Lado del Mapa / Imagen */
.contact-map {
    position: relative;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* Ajuste Responsivo */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .map-placeholder {
        height: 350px;
    }

    .contact-nosotros {
        padding: 80px 0;
    }

    /* Nosotros & Success Stories Responsiveness */
    .vision-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .vision-image {
        width: 100%;
    }

    .vision-image img {
        height: auto;
        max-height: 450px;
    }

    .vision-content {
        padding: 40px;
        margin-left: 0;
        margin-top: -40px;
        width: 100%;
        box-sizing: border-box;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 10%;
    }

    .case-slide {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 0;
    }

    .carousel-slide:nth-child(even) .case-slide {
        grid-template-columns: 1fr !important;
    }

    .carousel-slide:nth-child(even) .case-image {
        order: unset !important;
    }

    .carousel-slide:nth-child(even) .case-detail {
        order: unset !important;
        text-align: left !important;
    }

    .carousel-slide:nth-child(even) .case-meta {
        justify-content: flex-start !important;
    }

    .case-detail {
        padding: 20px 0;
    }

    .case-detail h2 {
        font-size: 2.2rem;
    }

    .carousel-wrapper {
        padding: 0 20px;
        margin: 40px auto;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* --- FORMULARIOS PREMIUM --- */
.premium-form {
    margin-top: 50px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.input-group input, 
.input-group select, 
.input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #000;
    transition: border-color 0.4s;
    outline: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--gold);
}

.full-width {
    margin-bottom: 40px;
}



/* Ajuste móvil */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
}

.container-forms {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.forms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.form-card {
    background: #fcfcfc;
    padding: 50px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.4s;
}

.form-card.gold-border {
    border: 1px solid var(--gold);
    background: #fff;
    box-shadow: 0 20px 40px rgba(100,100,100,0.05);
}

.form-card h3 {
    font-family: var(--font-accent);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-card p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    font-size: 0.6rem;
    padding: 5px 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Botones Diferenciados */
.btn-submit-gold {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    padding: 18px 30px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-submit-gold:hover {
    background: #BDBDBD;
    border-color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-submit-dark {
    width: 100%;
    background: #BDBDBD;
    color: #fff;
    border: 1px solid #111111;
    padding: 18px 30px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-submit-dark:hover {
    background: transparent;
    color: #111111;
    border-color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 100, 100, 0.05);
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .forms-wrapper {
        grid-template-columns: 1fr;
    }
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: 0.3s;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
/* --- GLOBAL UI/UX REFINEMENTS --- */

/* Interactive Read More Link Component */
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.read-more span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.read-more:hover {
    color: var(--gold-dark);
}

.read-more:hover::after {
    width: 100%;
}

.read-more:hover span {
    transform: translateX(5px);
}

/* Hover Zoom Image Micro-Animation */
.about-image, .vision-image, .tourism-image, .contact-map, .card-image {
    overflow: hidden;
}

.about-image img, .vision-image img, .tourism-image img, .map-placeholder img {
    transition: transform 0.6s ease;
}

.about-image:hover img, .vision-image:hover img, .tourism-image:hover img, .contact-map:hover .map-placeholder img {
    transform: scale(1.05);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
