/* =====================================================
   EVENT GO - Custom Styles
   Sonido Impecable para Grandes Eventos
   ===================================================== */

/* =====================================================
   CSS Variables / Custom Properties
   ===================================================== */
:root {
    /* Primary Colors */
    --primary: #9acd32;
    --primary-dark: #7ab82a;
    --primary-light: #b8e04e;
    --primary-rgb: 154, 205, 50;
    
    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --text-dark: #333333;
    
    /* Accent Colors */
    --accent-green: #9acd32;
    --accent-blue: #00bfff;
    --accent-purple: #8b5cf6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(154, 205, 50, 0.3) 0%, rgba(154, 205, 50, 0.1) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(154, 205, 50, 0.3);
    --shadow-glow-lg: 0 0 60px rgba(154, 205, 50, 0.4);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* =====================================================
   Base Styles / Reset
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.95) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-light);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
}

.display-heading {
    font-family: var(--font-display);
    font-weight: 700;
}

/* =====================================================
   Preloader
   ===================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid transparent;
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 1.5s linear reverse infinite;
}

.loader-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

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

/* =====================================================
   Top Bar
   ===================================================== */
.top-bar {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(154, 205, 50, 0.1);
    font-size: 0.875rem;
}

.top-bar-left span,
.top-bar-right a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--primary);
}

.social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(154, 205, 50, 0.1);
    margin-left: 8px;
    color: var(--text-muted);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* =====================================================
   Navigation
   ===================================================== */
#mainNav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(154, 205, 50, 0.1);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.logo-img {
    max-height: 55px;
    transition: var(--transition-normal);
}

#mainNav.scrolled .logo-img {
    max-height: 38px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    position: relative;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu-dark {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(154, 205, 50, 0.1);
    color: var(--primary);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-glow {
    box-shadow: 0 0 20px rgba(154, 205, 50, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-section > .container {
    height: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 205, 50, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition-normal);
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateX(-50%) scale(1.1);
    animation-play-state: paused;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

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

/* =====================================================
   Stats Counter
   ===================================================== */
.stats-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(154, 205, 50, 0.1);
    border-bottom: 1px solid rgba(154, 205, 50, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =====================================================
   Section Styles
   ===================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto;
    border-radius: 2px;
}

/* =====================================================
   Page Header / Banner
   ===================================================== */
.page-header {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/fondo.jpg') center/cover;
    opacity: 0.1;
}

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* =====================================================
   Events Section
   ===================================================== */
.events-section {
    background: var(--bg-darker);
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.event-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Image Modal Lightbox */
#imageModal .modal-dialog {
    max-width: 90vw;
}

#imageModal .modal-content {
    background: transparent;
}

#imageModal .modal-body img {
    max-height: 85vh;
    object-fit: contain;
}

/* =====================================================
   Cards
   ===================================================== */
.card-custom {
    background: var(--bg-card);
    border: 1px solid rgba(154, 205, 50, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card-custom:hover {
    transform: translateY(-10px);
    border-color: rgba(154, 205, 50, 0.3);
    box-shadow: var(--shadow-glow);
}

.card-custom .card-body {
    padding: 2rem;
}

.card-custom .card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-custom .card-text {
    color: var(--text-muted);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(154, 205, 50, 0.1);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(154, 205, 50, 0.1);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    transition: var(--transition-slow);
}

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

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(154, 205, 50, 0.1);
}

.about-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* =====================================================
   Gallery / Masonry
   ===================================================== */
.gallery-section {
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 200px;
    }
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonialSwiper {
    padding: 20px 60px 60px;
    position: relative;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(154, 205, 50, 0.1);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\F6B0';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: rgba(154, 205, 50, 0.1);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    border: 3px solid var(--primary);
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

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

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--primary);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: var(--bg-card);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    color: var(--primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--bg-dark);
}

.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(154, 205, 50, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* =====================================================
   Services Section
   ===================================================== */
.services-section {
    background: var(--bg-darker);
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.service-card .service-image {
    height: 280px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-card .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
}

.service-card .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card .service-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    background: var(--bg-dark);
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(154, 205, 50, 0.1);
    margin-bottom: 1rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-card);
    color: var(--text-white);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(154, 205, 50, 0.1);
    color: var(--primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239acd32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--bg-card);
    color: var(--text-muted);
    padding: 1.5rem;
    line-height: 1.8;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
    background: var(--bg-darker);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(154, 205, 50, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 205, 50, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-item .content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: var(--text-muted);
    margin: 0;
}

/* Form Styles */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(154, 205, 50, 0.2);
    color: var(--text-white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
}

.form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(154, 205, 50, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* =====================================================
   Products / Catalog Section
   ===================================================== */

.catalog-frame {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(154, 205, 50, 0.2);
}

.catalog-frame iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* Hero Banner Compact */
.hero-banner-compact {
    padding: 2rem 0;
}

.hero-banner-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2.5rem;
    min-height: 180px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: right center;
}

.hero-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.85) 40%, 
        rgba(10, 10, 10, 0.4) 70%, 
        transparent 100%);
    z-index: 1;
}

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

.hero-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hero-banner-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-banner-inner {
        padding: 2rem 1.5rem;
        background-position: center;
    }
    
    .hero-banner-inner::before {
        background: linear-gradient(180deg, 
            rgba(10, 10, 10, 0.9) 0%, 
            rgba(10, 10, 10, 0.7) 100%);
    }
    
    .hero-banner-title {
        font-size: 1.25rem;
    }
}

/* =====================================================
   Footer Styles
   ===================================================== */
.footer-info {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(154, 205, 50, 0.1);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.75rem;
    margin-right: 0.5rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 205, 50, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
}

.footer-contact li div span,
.footer-contact li div a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact li div a:hover {
    color: var(--primary);
}

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

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 205, 50, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Partners Section */
.partners-section {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(154, 205, 50, 0.1);
    border-bottom: 1px solid rgba(154, 205, 50, 0.1);
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.partner-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.partner-link:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.partner-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.partner-link:hover .partner-text,
.partner-text:hover {
    color: var(--primary);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-darker);
    border-top: 1px solid rgba(154, 205, 50, 0.1);
}

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

/* =====================================================
   Back to Top & WhatsApp Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(154, 205, 50, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20b858;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* =====================================================
   Vision Cards
   ===================================================== */
.vision-card {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(154, 205, 50, 0.1);
}

.vision-card:last-child {
    border-bottom: none;
}

.vision-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.vision-text {
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================================================
   Video Section
   ===================================================== */
.video-section {
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 205, 50, 0.2);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* =====================================================
   Clients / Carousel
   ===================================================== */
.clients-carousel {
    position: relative;
}

.client-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    border: 1px solid rgba(154, 205, 50, 0.1);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid var(--primary);
}

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

/* =====================================================
   Utilities
   ===================================================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.glow {
    box-shadow: var(--shadow-glow);
}

.glow-lg {
    box-shadow: var(--shadow-glow-lg);
}

/* Spacing Utilities */
.py-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #mainNav {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse {
        background: var(--bg-darker);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(154, 205, 50, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .stat-item {
        border-bottom: 1px solid rgba(154, 205, 50, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .footer-widget {
        margin-bottom: 2.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .top-bar,
    #mainNav,
    .whatsapp-float,
    .back-to-top,
    #preloader {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 30px 0;
    }
}
