/* ===== RESET Y CONFIGURACIÓN BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    /* Fondo unificado para toda la página */
    background-color: #000;
    background-image: url('images/textura.png');
    background-attachment: fixed;
    background-size: 100px 100px;
    background-repeat: repeat;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Fuente decorativa para elementos especiales */
.font-decorative {
    font-family: 'Special Gothic Expanded One', sans-serif;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.preloader-content {
    text-align: center;
    color: #fff;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.preloader-img {
    height: 80px;
    width: auto;
    animation: pulse 2s infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.preloader-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #EAEAEA, #D0D0D0);
    width: 0%;
    transition: width 0.1s ease;
}



/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(234, 234, 234, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(234, 234, 234, 1);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.8));
}

.navbar.scrolled .logo-img {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.navbar-nav {
    margin-left: auto !important;
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Navbar toggler para móviles */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BOTÓN DE CAMBIO DE IDIOMA ===== */
#language-switch {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
}

#language-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

#language-switch:active {
    transform: translateY(0);
}

.navbar:not(.scrolled) #language-switch {
    border-color: rgba(0, 0, 0, 0.3);
    color: #000;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.navbar:not(.scrolled) #language-switch:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos específicos para móvil */
@media (max-width: 991.98px) {
    .language-switch-mobile {
        order: -1; /* Mueve el botón al principio */
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .language-switch-mobile #language-switch {
        margin-left: 0;
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #3c3c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #EAEAEA;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    color: #EAEAEA;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #EAEAEA, #D0D0D0);
    color: #000;
    box-shadow: 0 4px 15px rgba(234, 234, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 234, 234, 0.6);
    color: #000;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(234, 234, 234, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(234, 234, 234, 0.8); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #EAEAEA;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #EAEAEA, #D0D0D0);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    line-height: 1.8;
}

/* ===== VALORES SECTION ===== */
.valores-section {
    padding: 6rem 0;
}

.valores-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.valores-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.valores-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

    .valores-content {
        padding-left: 2rem;
    }

.valores-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.valores-pillars {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pillar:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pillar i {
    font-size: 2rem;
    color: #EAEAEA;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ===== SERVICIOS SECTION ===== */
.servicios-section {
    padding: 8rem 0;
}

/* ===== BELIEF SLIDER ===== */
.belief-slider-container {
    position: relative;
    padding: 8rem 0;
    min-height: 900px;
    display: flex;
    align-items: center;
}

.belief-swiper {
    width: 100%;
    height: 800px;
}

.belief-swiper .swiper-slide {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belief-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 234, 234, 0.1) 0%, rgba(208, 208, 208, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.servicio-card:hover::before {
    opacity: 1;
}

.servicio-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #EAEAEA, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(234, 234, 234, 0.4);
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.1) rotate(5deg);
}

.servicio-icon i {
    font-size: 2.5rem;
    color: #fff;
}



.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
    color: #fff;
    background: linear-gradient(45deg, #EAEAEA, #D0D0D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.slide-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.slide-text p {
    margin-bottom: 2rem;
    text-align: justify;
}

.slide-text p:last-child {
    margin-bottom: 0;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #EAEAEA;
    margin: 0;
    letter-spacing: -0.01em;
    display: inline;
}

.belief-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
    max-width: 600px;
}

.belief-list li {
    padding: 0.5rem 0;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.7;
}

.belief-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #EAEAEA;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Swiper Navigation */
.belief-swiper .swiper-button-next,
.belief-swiper .swiper-button-prev {
    color: #EAEAEA;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.belief-swiper .swiper-button-next:hover,
.belief-swiper .swiper-button-prev:hover {
    background: rgba(234, 234, 234, 0.2);
    transform: scale(1.1);
}

.belief-swiper .swiper-button-next::after,
.belief-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Swiper Pagination */
.belief-swiper .swiper-pagination {
    bottom: 1rem;
}

.belief-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.belief-swiper .swiper-pagination-bullet-active {
    background: #EAEAEA;
    transform: scale(1.2);
}

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

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: #007bff;
    transform: scale(1.2);
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.modal-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.modal-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

.servicio-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.servicio-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.servicio-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== FULL WIDTH IMAGE SECTION ===== */
.full-width-image-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.full-width-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* ===== FULL WIDTH VIDEO SECTION ===== */
.full-width-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.full-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}



.full-width-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.full-width-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .full-width-title {
        font-size: 2.5rem;
    }
    .full-width-subtitle {
        font-size: 1.1rem;
    }
}

/* ===== PLANES SECTION ===== */
.planes-section {
    padding: 6rem 0;
}

.plan-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.period {
    font-size: 1rem;
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.plan-features li i {
    width: 20px;
    color: #007bff;
}

.plan-features li i.fa-times {
    color: #dc3545;
}

.plan-cta {
    text-align: center;
}

/* ===== PLAN INFO CARD ===== */
.plan-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.plan-info-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.plan-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.plan-feature-item:hover::before {
    left: 100%;
}

.plan-feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
}

.plan-feature-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===== TESTIMONIOS SECTION ===== */
.testimonios-section {
    padding: 6rem 0;
}

.testimonios-swiper {
    padding: 2rem 0;
}

.testimonio-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonio-content {
    margin-bottom: 1.5rem;
}

.testimonio-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #fff;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #fff;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.swiper-pagination-bullet {
    background: #007bff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
}

.cta-content {
    padding-right: 2rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.feature i {
    color: #EAEAEA;
    font-size: 1.2rem;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ===== GALERÍA SECTION ===== */
.galeria-section {
    padding: 8rem 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 100%;
}

.galeria-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.galeria-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}



/* ===== SOBRE MÍ SECTION ===== */
.sobre-mi-section {
    padding: 6rem 0;
}

.sobre-mi-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.sobre-mi-image img {
    width: 100%;
    height: 1200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.sobre-mi-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.sobre-mi-content {
    padding-left: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-mi-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.sobre-mi-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.sobre-mi-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #EAEAEA;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(234, 234, 234, 0.1) 0%, rgba(208, 208, 208, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid #EAEAEA;
}

/* ===== CONTACTO SECTION ===== */
.contacto-section {
    padding: 6rem 0;
}

.contacto-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #EAEAEA;
    box-shadow: 0 0 0 0.2rem rgba(234, 234, 234, 0.25);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #EAEAEA;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #EAEAEA;
    margin-right: 0.5rem;
}

.footer-contact a {
    color: #EAEAEA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #EAEAEA;
    transform: translateY(-3px);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .valores-pillars {
        flex-direction: column;
        align-items: center;
    }
    
    .sobre-mi-stats {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .valores-pillars {
        gap: 1rem;
    }
    
    .sobre-mi-stats {
        gap: 1rem;
    }
    
    .contacto-card {
        padding: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Slider responsive adjustments */
    .belief-slider-container {
        padding: 4rem 0;
        min-height: 1200px;
    }
    
    .belief-swiper {
        height: 1100px;
    }
    
    .belief-swiper .swiper-slide {
        height: 1100px;
    }
    
    .belief-content {
        padding: 5rem 1rem;
    }
    
    /* Hide slider navigation on mobile */
    .belief-swiper .swiper-pagination {
        display: none !important;
    }
    
    .belief-swiper .swiper-button-next,
    .belief-swiper .swiper-button-prev {
        display: none !important;
    }
    
    .slide-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1.3rem;
    }
    
    /* Galería responsive adjustments */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .galeria-item img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
    
    /* Slider responsive adjustments for small screens */
    .belief-slider-container {
        padding: 3rem 0;
        min-height: 1100px;
    }
    
    .belief-swiper {
        height: 1000px;
    }
    
    .belief-swiper .swiper-slide {
        height: 1000px;
    }
    
    .belief-content {
        padding: 4.5rem 1rem;
    }
    
    /* Hide slider navigation on small mobile */
    .belief-swiper .swiper-pagination {
        display: none !important;
    }
    
    .belief-swiper .swiper-button-next,
    .belief-swiper .swiper-button-prev {
        display: none !important;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .belief-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }
    
    /* Galería responsive adjustments for small screens */
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .galeria-item {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .galeria-item img {
        height: 280px;
        border-radius: 15px;
    }
    
    /* Sobre mí responsive adjustments */
    .sobre-mi-content {
        padding-left: 0;
        padding-top: 2rem;
        height: auto;
    }
    
    .sobre-mi-image {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .sobre-mi-image img {
        height: 500px;
        width: 100%;
        max-width: 500px;
        object-fit: cover;
        object-position: top center;
        border-radius: 15px;
    }
}

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

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

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

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ===== AOS CUSTOMIZATIONS ===== */
html {
    scroll-behavior: smooth;
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: transform 0.3s ease;
}

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

.glow {
    transition: box-shadow 0.3s ease;
}

.glow:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    /* General responsive adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.4;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        line-height: 1.4;
    }
    
    /* Button adjustments */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 0.5rem;
    }
    
    /* Section padding adjustments */
    .valores-section {
        padding: 3rem 0;
    }
    
    .cta-section,
    .sobre-mi-section,
    .contacto-section {
        padding: 3rem 0;
    }
    
    .servicios-section {
        padding: 6rem 0;
        min-height: 800px;
    }
    
    /* Image adjustments */
    .valores-image img,
    .cta-image img {
        height: 300px;
        object-fit: cover;
    }
    
    /* Sobre mí image adjustments for mobile */
    .sobre-mi-image {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .sobre-mi-image img {
        height: 350px;
        width: 100%;
        max-width: 400px;
        object-fit: cover;
        object-position: top center;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    
    /* Gallery adjustments */
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0;
    }
    
    .galeria-item {
        border-radius: 15px;
        margin: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .galeria-item img {
        height: 300px;
        border-radius: 15px;
        width: 100%;
        object-fit: cover;
    }
    
    .galeria-section {
        padding: 3rem 0;
    }
    
    /* Form adjustments */
    .contacto-form .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    /* Navbar adjustments */
    .navbar {
        padding: 0.5rem 0;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-toggler {
        display: block !important;
        padding: 0.5rem;
        font-size: 1rem;
        border: none;
        background: transparent;
        cursor: pointer;
        z-index: 1001;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5em;
        height: 1.5em;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 10px 10px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        color: #fff !important;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Contact image adjustments for mobile */
    .contact-image-section {
        height: 60vh;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Servicios section adjustments for small devices */
    .servicios-section {
        padding: 5rem 0;
        min-height: 700px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 15vw, 6rem);
    }
    
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Contact image adjustments for tablets */
    .contact-image-section {
        height: 80vh;
    }
    
    /* Servicios section adjustments for tablets */
    .servicios-section {
        padding: 7rem 0;
        min-height: 900px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ===== FIXES FOR COMMON MOBILE ISSUES ===== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
}

/* Fix for Android Chrome viewport issues */
@media screen and (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for flexbox issues on mobile */
.row {
    margin-left: 0;
    margin-right: 0;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix for button touch targets */
.btn, .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
}

/* Fix for form elements on mobile */
input, textarea, select {
    font-size: 16px;
    max-width: 100%;
}

/* Fix for video elements */
video {
    max-width: 100%;
    height: auto;
}

/* Mobile video fixes */
@media (max-width: 768px) {
    .full-width-video-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .full-width-video-container {
        height: 100%;
    }
    
    .full-width-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .full-width-overlay {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .full-width-video-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .full-width-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .full-width-subtitle {
        font-size: 1rem;
    }
}

/* Fix for iframe elements */
iframe {
    max-width: 100%;
    height: auto;
}

/* ===== CONTACT IMAGE SECTION ===== */
.contact-image-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}