:root {
    --primary: #143e92;
    --primary-dark: #07542c;
    --secondary: #ffc107;
    --secondary-dark: #e6ac00;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --accent-color: #1f66f4;
    --default-color: #444444;
    --ubuntu-font: "Ubuntu", sans-serif;
    --heading-color: #37517e;
}

body {
    font-family: var(--ubuntu-font);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fafafa;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ubuntu-font);
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.6rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--dark);
}

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

.nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

/* NEW HERO SECTION STYLES */
.hero-section {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5eb 100%);
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 600px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark);
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.hero-btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-whatsapp {
    text-decoration: none;
    background-color: #0ea947;
    border: none;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-email {
    text-decoration: none;
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
}

.btn-email:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.hero-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    height: 100%;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.floating-shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.1;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--secondary-dark) 100%
    );
    border-radius: 30px;
    bottom: 50px;
    left: -50px;
    transform: rotate(45deg);
    opacity: 0.1;
}
/* END NEW HERO SECTION STYLES */

/* Stats */
.stats {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

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

.stat-item h3 {
    color: #fff;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Products */
.products {
    padding: 80px 0;
    background-color: white;
}

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

.section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Features */
.features {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.feature-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-content {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.specs {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.spec-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary);
    overflow: hidden;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.spec-card-header {
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.spec-card-body {
    padding: 15px;
}

.spec-item {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    height: 100%;
}

.spec-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.model-compare {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.model-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.model-header {
    background: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.model-body {
    padding: 20px;
}

.model-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.model-feature i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: rgba(18, 73, 182, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.3rem;
}

.feature-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--gray);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(
            rgba(34, 74, 234, 0.95),
            rgba(22, 66, 244, 0.896)
        ),
        url(../img/bg-stats.webp);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-banner h2 {
    color: white;
}

.cta-banner h2:after {
    background: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
}

/* Contact */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-card .contact-item i {
    color: #ffbf00;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    min-width: 30px;
}

/* Demo Section */
.demo {
    padding: 50px 0;
}

.main-video-container {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    transition: all 0.4s ease;
}

.main-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-info p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-badge {
    background: #e1f0fa;
    color: #2980b9;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.tech-badge i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.video-player {
    position: relative;
    background: #000;
}

.video-player .ratio {
    border-bottom: 1px solid #eaeaea;
}

.video-player iframe {
    border: none;
}

/* Stats Section */
.stats-container-demo {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    color: white;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.25);
}

.stat-item-demo {
    text-align: center;
    padding: 15px;
    min-width: 200px;
}

.stat-item-demo .number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item-demo .label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
}

.cta-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-section p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
    background: linear-gradient(90deg, #2c3e50, #3498db);
}

.cta-button i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #fff;
    background-color: #0d1b2a;
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    /* color: var(--accent-color); */
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #ff9501;
}

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

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    /* color: var(--accent-color); */
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: #fff;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

.footer .footer-cta a {
    font-size: 0.9rem;
    font-family: var(--ubuntu-font);
    color: #fff;
    text-decoration: none;
}

.footer .footer-contact p {
    margin-bottom: 10px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.email-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.email-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.language-toggle-li {
    padding: 5px 5px;
}

.language-toggle-switch {
    position: relative;
    width: 80px;
    height: 30px;
    display: inline-block;
}

.language-toggle-switch input {
    display: none;
}

.toggle-label {
    background-color: var(--accent-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 5px;
}

.toggle-option {
    z-index: 2;
    width: 40%;
    text-align: center;
    color: white;
    transition: color 0.3s ease;
}

.toggle-ball {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 30px;
    background-color: yellow;
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Position switch */
#langToggle:checked + .toggle-label .toggle-ball {
    transform: translateX(40px);
}

/* Active label color */
#langToggle:not(:checked) + .toggle-label .id-option {
    color: black;
}

#langToggle:checked + .toggle-label .en-option {
    color: black;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image-container {
        margin-top: 50px;
        transform: none;
    }

    .video-info h3 {
        font-size: 1.6rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }

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

    .hero-btn-lg {
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .tech-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    /* .language-toggle-li {
        padding: 10px 20px;
        display: flex;
    } */
}
