/* ==========================================================================
   MULTI-SERVICIOS DESIGN SYSTEM
   Custom CSS - Modern, Premium, Vivid yet Eye-Relaxing Slate/Teal Theme
   ========================================================================== */

/* 1. VARIABLES & RESET */
:root {
    /* Color Palette */
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    --color-bg-dark: #0f172a;
    --color-bg-dark-accent: #1e293b;
    --color-primary: #0d9488; /* Vibrant Teal */
    --color-primary-hover: #0f766e;
    --color-primary-light: rgba(13, 148, 136, 0.1);
    --color-secondary: #d97706; /* Warm Amber */
    --color-secondary-hover: #b45309;
    --color-secondary-light: rgba(217, 119, 6, 0.1);
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: #f1f5f9;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #128c7e;
    --color-border: #e2e8f0;
    
    /* Layout & Styling specs */
    --font-primary: 'Outfit', sans-serif;
    --navbar-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-inset: inset 0 2px 4px 0 rgba(0,0,0,0.06);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Typography & Base Helpers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-dark-bg {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-dark-bg h2, .section-dark-bg h3, .section-dark-bg h4 {
    color: var(--color-text-light);
}

/* 2. REUSABLE COMPONENTS & BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}
.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-bg-white);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
}
.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
}
.tag-amarillo {
     background-color: rgba(233, 247, 46, 0.925);
    color: #e71a0b;
}
.tag-azul {
    background-color: rgba(7, 22, 231, 0.925);
    color: #ffffff;
}
.tag-rojo {
    background-color: rgba(235, 5, 5, 0.925);
    color: #f1f504;
}



.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.section-tagline {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
}
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}
.header-divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* 3. HEADER & NAVIGATION */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: rgba(15, 23, 42, 0.85); /* Slate Dark Glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    letter-spacing: -1px;
}
.logo-accent {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(241, 245, 249, 0.8);
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-text-light);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(241, 245, 249, 0.2);
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-login:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
    border-color: var(--color-text-light);
}
.icon-login {
    width: 18px;
    height: 18px;
}

/* Hamburger mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}
.mobile-menu-btn .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* 4. HERO SECTION & CAROUSEL (10 ITEMS) */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    margin-top: var(--navbar-height);
    background-color: var(--color-bg-dark);
}

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

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}
.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    z-index: 3;
}

.carousel-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-text-light);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.carousel-slide.active .carousel-content {
    transform: translateY(0);
    opacity: 1;
}

.carousel-content .tag {
    margin-bottom: 20px;
}

.carousel-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.carousel-content p {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(241, 245, 249, 0.85);
    margin-bottom: 35px;
}

.carousel-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Slide controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-fast);
}
.carousel-control:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
}
.carousel-control svg {
    width: 24px;
    height: 24px;
}
.carousel-control.prev {
    left: 24px;
}
.carousel-control.next {
    right: 24px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dot {
    width: 24px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}
.carousel-dot.active {
    background-color: var(--color-primary);
    width: 48px;
}

/* 5. QUIÉNES SOMOS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}
.stat-card {
    flex: 1;
}
.stat-number {
    font-size: 2.2rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: 20px;
    background-color: var(--color-bg-white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}
.feature-box:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-info h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.feature-info p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* 6. GALERÍA FILTRABLE */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.filter-btn:hover {
    color: var(--color-bg-dark);
    border-color: #cbd5e1;
    transform: translateY(-1px);
}
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-media-wrapper {
    position: relative;
    padding-top: 65%; /* 16:10 Aspect Ratio */
    overflow: hidden;
}

.card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-card:hover .card-media {
    transform: scale(1.08);
}

.card-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(4px);
}
.gallery-card:hover .card-overlay-hover {
    opacity: 1;
}

.btn-zoom {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    transition: all var(--transition-normal);
    transform: scale(0.8);
}
.gallery-card:hover .btn-zoom {
    transform: scale(1);
}
.btn-zoom:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.1) !important;
}
.btn-zoom svg {
    width: 24px;
    height: 24px;
}
.btn-zoom svg.icon-play {
    margin-left: 3px;
}

.card-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.card-info h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-info p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-wa-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    background-color: var(--color-bg-light);
    color: var(--color-whatsapp-hover);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}
.card-wa-link:hover {
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
    border-color: var(--color-whatsapp);
}
.card-wa-link svg {
    width: 16px;
    height: 16px;
}

/* 7. EXPERIENCIAS (TESTIMONIALS) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-dark-accent);
    border-radius: var(--border-radius-md);
    padding: 35px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: rgba(13, 148, 136, 0.2);
    margin-bottom: 20px;
}
.testimonial-quote svg {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(241, 245, 249, 0.85);
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info h5 {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 2px;
}
.author-info p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 15px;
}
.testimonial-rating .star {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

/* 8. CONTÁCTANOS & FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-panel {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 40px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 {
    color: var(--color-text-light);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.panel-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-text h5 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.detail-text p, .detail-text a {
    font-size: 0.95rem;
    font-weight: 500;
}
.detail-text a:hover {
    color: var(--color-primary);
}

.simulated-map {
    height: 180px;
    width: 100%;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-bg-dark-accent);
    /* Pattern background representing a map */
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.map-marker {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    filter: drop-shadow(0 2px 8px rgba(13, 148, 136, 0.5));
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.contact-form-wrapper {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    transition: all var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 14px 28px;
}
.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* 9. REDES SOCIALES SECTION */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.social-card {
    background-color: var(--color-bg-dark-accent);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-normal);
}

.social-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-normal);
}

.social-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}
.social-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.social-card h4 {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.social-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    transition: color var(--transition-fast);
}

.social-handle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

/* Social media custom hovers */
.instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.15);
}
.instagram-card:hover .social-card-bg {
    opacity: 1;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    opacity: 0.07;
}
.instagram-card:hover .social-icon-wrapper {
    background-color: #e1306c;
    border-color: #e1306c;
    transform: scale(1.1);
}
.instagram-card:hover .social-handle {
    color: #e1306c;
}

.tiktok-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 242, 234, 0.1);
}
.tiktok-card:hover .social-card-bg {
    background-color: rgba(255,255,255,0.02);
    opacity: 1;
}
.tiktok-card:hover .social-icon-wrapper {
    background-color: #010101;
    border-color: #ff0050;
    color: var(--color-text-light);
    box-shadow: -2px -2px 0 #00f2fe, 2px 2px 0 #ff0050;
    transform: scale(1.1);
}
.tiktok-card:hover .social-handle {
    color: var(--color-text-light);
}

.facebook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(24, 119, 242, 0.15);
}
.facebook-card:hover .social-card-bg {
    background-color: #1877f2;
    opacity: 0.05;
}
.facebook-card:hover .social-icon-wrapper {
    background-color: #1877f2;
    border-color: #1877f2;
    transform: scale(1.1);
}
.facebook-card:hover .social-handle {
    color: #1877f2;
}

.youtube-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
}
.youtube-card:hover .social-card-bg {
    background-color: #ff0000;
    opacity: 0.05;
}
.youtube-card:hover .social-icon-wrapper {
    background-color: #ff0000;
    border-color: #ff0000;
    transform: scale(1.1);
}
.youtube-card:hover .social-handle {
    color: #ff0000;
}

/* 10. FOOTER */
.footer {
    background-color: #090d16;
    color: rgba(241, 245, 249, 0.6);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer h4 {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-grid {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}
.footer-brand p {
    font-size: 0.90rem;
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    font-size: 0.95rem;
}
.footer-links ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.footer-wa-btn {
    width: 100%;
}

.footer-bottom {
    background-color: #05070c;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
}

/* 11. FLOATING WHATSAPP BUTTON */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition-normal);
    animation: wa-pulse 2s infinite;
}
.whatsapp-floating-btn:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}
.whatsapp-floating-btn svg {
    width: 30px;
    height: 30px;
}

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

/* 12. LIGHTBOX & MODALS */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    backdrop-filter: blur(8px);
}
.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--color-text-light);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}
.lightbox-close:hover {
    color: var(--color-primary);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-media-container {
    width: 100%;
    height: auto;
}
.lightbox-media-container img, .lightbox-media-container video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--color-text-light);
    text-align: center;
}
.lightbox-caption h4 {
    color: var(--color-text-light);
    font-size: 1.15rem;
    font-weight: 500;
}

/* Login Modal */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-card {
    background-color: var(--color-bg-white);
    padding: 45px;
    width: 100%;
    max-width: 480px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--color-border);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}
.login-modal-overlay.active .login-card {
    transform: scale(1);
}

.login-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}
.login-close-btn:hover {
    color: var(--color-text-dark);
}

.login-header {
    margin-bottom: 30px;
    text-align: center;
}
.login-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}
.login-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.password-wrapper {
    position: relative;
}
.btn-toggle-password {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.btn-toggle-password:hover {
    color: var(--color-text-dark);
}
.btn-toggle-password svg {
    width: 20px;
    height: 20px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
}
.forgot-password {
    color: var(--color-primary);
    font-weight: 600;
}
.forgot-password:hover {
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 12px 0;
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}
.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    z-index: 1;
}
.login-divider span {
    background-color: var(--color-bg-white);
    padding: 0 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.social-login-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-social-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-social-login:hover {
    background-color: var(--color-bg-light);
    border-color: #cbd5e1;
}

.login-footer {
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}
.signup-link {
    color: var(--color-primary);
    font-weight: 700;
}
.signup-link:hover {
    text-decoration: underline;
}

/* Success Form Submit Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.success-popup.active {
    opacity: 1;
    visibility: visible;
}
.success-popup-card {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    border: 1px solid var(--color-border);
}
.success-popup.active .success-popup-card {
    transform: scale(1);
}
.success-check-icon {
    width: 70px;
    height: 70px;
    color: var(--color-primary);
    margin: 0 auto 20px auto;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    padding: 15px;
}
.success-popup-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.success-popup-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}
.success-popup-card button {
    width: 100%;
}


/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet Viewports */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .carousel-content h2 {
        font-size: 2.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-contact {
        grid-column: span 2;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }
    :root {
        --navbar-height: 70px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        transition: left 0.4s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-login {
        font-size: 1.1rem;
        padding: 10px 30px;
        margin-top: 10px;
        width: 80%;
        justify-content: center;
    }
    
    /* Carousel Adjustments */
    .hero-section {
        height: 70vh;
    }
    .carousel-content h2 {
        font-size: 2rem;
    }
    .carousel-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .carousel-actions {
        flex-direction: column;
        gap: 12px;
    }
    .carousel-actions .btn {
        width: 100%;
    }
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    .carousel-control.prev {
        left: 12px;
    }
    .carousel-control.next {
        right: 12px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-panel {
        padding: 24px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-contact {
        grid-column: span 1;
    }
    
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-floating-btn svg {
        width: 25px;
        height: 25px;
    }
    
    .login-card {
        padding: 24px;
    }
    .social-login-row {
        grid-template-columns: 1fr;
    }
}
