/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0e27;
    --secondary-color: #1a1f3a;
    --accent-color: #2c3e50;
    --gold-accent: #d4af37;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-4 {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: none; /* Ocultar texto cuando hay logo */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-accent);
    border-bottom: 2px solid var(--gold-accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section with Slider */
.hero-slider {
    position: relative;
    height: 95vh;
    padding: 10px 0;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: flex;
    transition: transform 7s ease-in-out;
    will-change: transform;
}

.slide {
    position: relative;
    width: 50%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 58, 0.75);
    z-index: 2;
}

/* Hero Section with Video Background */
.hero-video-section {
    position: relative;
    height: 99vh;
    padding: 10px 0;
    overflow: hidden;
}

/* En móvil, ajustar altura y padding */
@media (max-width: 768px) {
    .hero-video-section {
        height: 130vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 58, 0.75);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content .container {
    position: relative;
    z-index: 11;
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-section {
    text-align: left;
}

.hero-content .hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content .hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0;
    color: var(--gold-accent);
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    min-width: 200px;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.hero-buttons .btn-secondary {
    background-color: rgba(74, 85, 104, 0.8);
    color: var(--white);
    border: 2px solid rgba(74, 85, 104, 0.9);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background-color: rgba(74, 85, 104, 0.95);
    border-color: rgba(74, 85, 104, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Stats Cards Section */
.hero-stats-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-card {
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

.stat-card-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #9a7a1a 100%);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.stat-card-gold:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.stat-card-gray {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-card-gray:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #556173 0%, #374151 50%, #1f2937 100%);
}

.stat-card .stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.stat-card-gold .stat-number {
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-card .stat-unit {
    font-size: 1.8rem;
    font-weight: 600;
    vertical-align: super;
    line-height: 0;
}

.stat-card .stat-currency {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 0.2rem;
    opacity: 0.95;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    margin-top: 0.3rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

/* Page Hero Services with Background Image */
.page-hero-services {
    position: relative;
    height: 30vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.75);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
    color: var(--white);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8941f 100%);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8941f 0%, var(--gold-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.75);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 5rem 0;
    color: var(--white);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content .btn {
    display: block;
    margin: 2.5rem auto 0;
    max-width: 300px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-width: 280px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--gold-accent);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Detail */
.services-detail {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* New Services Grid Structure */
.services-grid-new {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.service-row {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 0;
}

.service-row-reverse {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0;
}

.service-row-reverse .service-box-image {
    order: 2;
}

.service-row-reverse .service-box-text {
    order: 1;
}

.service-box {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box-image {
    background-color: var(--primary-color);
}

.service-box-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-box-overlay {
    display: none;
}

.service-box-content {
    display: none;
}

.service-header-with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-new {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-box-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.service-box-text {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 3rem;
}

.service-box-content-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header-with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-box-content-text h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.service-box-content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-hover);
}

.service-icon {
    flex-shrink: 0;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.service-features li {
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Clients Section */
.clients-section {
    padding: 3rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
    opacity: 1;
}

.clients-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    width: 100%;
    max-width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-accent);
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.client-logo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-accent);
}

.client-logo-placeholder span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.client-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: var(--transition);
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.location-map-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.location-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.map-container {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location-info {
    padding: 2rem;
    background-color: var(--white);
    border-top: 3px solid var(--gold-accent);
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.location-info p {
    color: var(--text-light);
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.location-code {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Vision Section */
.vision-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

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

.vision-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vision-card ul {
    list-style: none;
}

.vision-card ul li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.vision-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* What We Do Section */
.what-we-do-section {
    padding: 3rem 0;
    background-color: var(--white);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.video-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.video-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
}

.video-text-column h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.video-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.video-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 1rem;
}

.video-column {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
    background-image: url('images/Fondo%20%231%20%281%29.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
    z-index: 1;
}

.video-thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.play-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.play-button-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-thumbnail:hover .play-button-circle {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
}

.watch-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.video-thumbnail:hover .watch-text {
    opacity: 1;
    transform: translateY(0);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}


.what-we-do-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.what-we-do-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.what-we-do-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.what-we-do-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Success Stories */
/* Financial Model Section */
.financial-model-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.financial-model-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.financial-model-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.model-inputs {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.model-inputs h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.input-group label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.model-inputs .btn {
    width: 100%;
    margin-top: 1rem;
}

.model-results {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.model-results h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.result-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.model-chart {
    height: 300px;
    margin-top: 2rem;
}

.story-description {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-description-en {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.success-stories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.story-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.story-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.story-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.story-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-results {
    list-style: none;
}

.story-results li {
    color: var(--text-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.story-results li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-details {
    flex: 1;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0.25rem 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    opacity: 0.95;
    transition: var(--transition);
    background-color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.pricing-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.tab-btn:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

.pricing-card.featured {
    border: 3px solid var(--gold-accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge-featured {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8941f 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pricing-badge {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-color);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    margin-bottom: 2rem;
}

.pricing-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-note {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-accent);
    max-width: 900px;
    margin: 3rem auto 0;
}

.pricing-note p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.pricing-note strong {
    color: var(--primary-color);
}

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

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

    .hero-slider {
        min-height: 160vh;
        padding: 40px 0;
    }
    
    .hero-video-section {
        height: 130vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-content .container {
        padding: 0 15px;
    }

    .hero-text-section {
        text-align: center;
    }

    .hero-content .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .hero-content .hero-tagline {
        font-size: 1rem;
        margin: 0.75rem 0;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats-section {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .stat-card {
        padding: 1.2rem 1rem;
        min-width: 180px;
    }

    .stat-card .stat-number {
        font-size: 2.2rem;
    }

    .stat-card .stat-unit {
        font-size: 1.4rem;
    }

    .stat-card .stat-currency {
        font-size: 1.1rem;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
        margin-top: 0.4rem;
    }

    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-stats-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
        padding: 1.5rem 1.2rem;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .stat-card .stat-unit {
        font-size: 1.6rem;
    }

    .stat-card .stat-currency {
        font-size: 1.2rem;
    }

    .stat-card .stat-label {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row,
    .service-row-reverse {
        grid-template-columns: 1fr;
    }

    .service-row-reverse .service-box-image,
    .service-row-reverse .service-box-text {
        order: 0;
    }

    .service-box {
        min-height: 350px;
    }

    .service-box-content,
    .service-box-content-text {
        padding: 2rem;
    }

    .service-header-with-icon {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .service-icon-new {
        width: 50px;
        height: 50px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-text {
        font-size: 1.1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 250px;
    }

    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .video-section {
        padding: 3rem 0;
    }

    .video-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-text-column h2 {
        font-size: 2rem;
        text-align: center;
    }

    .video-intro,
    .video-description {
        font-size: 1rem;
        text-align: center;
    }

    .video-intro {
        margin-bottom: 1.5rem;
    }

    .play-button-circle svg {
        width: 50px;
        height: 50px;
    }

    .watch-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: auto;
        min-height: 160vh;
        padding: 30px 0;
    }
    
    .hero-video-section {
        height: 130vh;
        padding-top: 70px;
        padding-bottom: 15px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-content .container {
        padding: 0 10px;
    }

    .hero-content .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-content .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }

    .hero-content .hero-tagline {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-stats-section {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
    }

    .hero-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }

    .hero-stats-section {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .stat-card {
        max-width: 100%;
        padding: 1.2rem 1rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stat-card .stat-number {
        font-size: 2rem;
        line-height: 1.1;
    }

    .stat-card .stat-unit {
        font-size: 1.3rem;
    }

    .stat-card .stat-currency {
        font-size: 1rem;
    }

    .stat-card .stat-label {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        line-height: 1.3;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-form-container .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 3rem 0;
    }

    .page-hero-services {
        height: 30vh;
        min-height: 250px;
    }

    .page-hero-content {
        padding: 1.5rem 0;
    }

    .services-preview,
    .services-detail,
    .about-section,
    .vision-section,
    .what-we-do-section,
    .clients-section,
    .financial-model-section,
    .success-stories,
    .contact-section {
        padding: 2.5rem 0;
    }

    .financial-model-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .model-chart {
        height: 250px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .service-box {
        min-height: 300px;
    }

    .service-box-content h2,
    .service-box-content-text h2 {
        font-size: 1.3rem;
    }

    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-logo-item {
        max-width: 100%;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container {
        height: 220px;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-info h3 {
        font-size: 1.3rem;
    }

    .about-hero-section {
        min-height: 500px;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .page-hero-services {
        height: 30vh;
        min-height: 200px;
    }

    .page-hero-content {
        padding: 1rem 0;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .video-section {
        padding: 2.5rem 0;
    }

    .video-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-text-column h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .video-intro,
    .video-description {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 1rem;
    }

    .video-intro {
        margin-bottom: 1rem;
    }

    .video-wrapper {
        border-radius: 12px;
    }

    .video-container {
        border-radius: 12px;
    }

    .play-button-circle svg {
        width: 45px;
        height: 45px;
    }

    .watch-text {
        font-size: 0.8rem;
    }
}

