/* Color Palette */
:root {
    --rojo-corporativo: #8B1E1E;
    --crema-claro: #EBE6DC;
    --marron-oliva: #8C7D67;
    --negro-absoluto: #000000;
    --negro-puro: #050505;
    --blanco: #FFFFFF;
    --gris-oscuro: #333333;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--gris-oscuro);
}

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

/* Header / Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--blanco);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gris-oscuro);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--rojo-corporativo);
    font-weight: 600;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
    cursor: pointer;
    user-select: none;
}

/* Hamburger Menu - Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--gris-oscuro);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.flag-icon {
    width: 20px;
    height: auto;
}

.lang-selector span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gris-oscuro);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 75px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: #000;
}

.slide.active {
    opacity: 1;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 30, 30, 0.75);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--blanco);
    max-width: 600px;
    z-index: 10;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--blanco);
    color: var(--blanco);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-hero:hover {
    background: var(--blanco);
    color: var(--rojo-corporativo);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--blanco);
    font-size: 30px;
    cursor: pointer;
    z-index: 20;
    padding: 20px;
    transition: color 0.3s ease;
}

.slider-arrow:hover {
    color: var(--crema-claro);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--blanco);
}

/* Mission Section */
.mission {
    background: var(--blanco);
    padding: 80px 20px;
    text-align: center;
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--gris-oscuro);
    max-width: 900px;
    margin: 0 auto;
}

.separator {
    color: var(--rojo-corporativo);
    font-size: 28px;
    margin: 30px 0;
    letter-spacing: 3px;
}

/* Services Section */
.services {
    background: var(--marron-oliva);
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    color: var(--blanco);
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 60px;
    color: var(--crema-claro);
}

.service-card h3 {
    color: var(--blanco);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.service-card p {
    color: var(--crema-claro);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Products Section */
.products {
    background: var(--blanco);
    padding: 100px 20px;
}

.products .section-title {
    color: var(--rojo-corporativo);
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 30, 30, 0.15);
    border-color: rgba(139, 30, 30, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card h3 {
    color: var(--rojo-corporativo);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card p {
    color: var(--gris-oscuro);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.product-badge {
    display: inline-block;
    background: var(--rojo-corporativo);
    color: var(--blanco);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

/* Services Header */
.services-header {
    background: var(--rojo-corporativo);
    padding: 80px 20px;
    text-align: center;
    color: var(--blanco);
    margin-top: 70px;
}

.services-header h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Services Detail Section */
.services-detail {
    background: var(--blanco);
    padding: 80px 20px;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-detail-card {
    background: var(--crema-claro);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
}

.service-detail-header {
    background: var(--rojo-corporativo);
    padding: 30px 20px;
    text-align: center;
}

.service-detail-icon {
    font-size: 50px;
    color: var(--crema-claro);
    margin-bottom: 15px;
}

.service-detail-header h2 {
    color: var(--blanco);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.service-detail-content {
    padding: 30px 20px;
}

.service-detail-content p {
    color: var(--gris-oscuro);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--gris-oscuro);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.service-features i {
    color: var(--rojo-corporativo);
    font-size: 12px;
}

/* Services CTA */
.services-cta {
    background: var(--marron-oliva);
    padding: 80px 20px;
    text-align: center;
    color: var(--blanco);
}

.services-cta h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Value Added Section */
.value-added {
    background: var(--crema-claro);
    padding: 80px 20px;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-text h2 {
    color: var(--rojo-corporativo);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.value-text p {
    color: var(--gris-oscuro);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Dual Block Section */
.dual-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.block-left {
    background: var(--rojo-corporativo);
    padding: 80px 20px;
    color: var(--blanco);
}

.block-left h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.4;
}

.block-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.block-right {
    background: var(--crema-claro);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.block-right h2 {
    color: var(--rojo-corporativo);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.btn-contact {
    display: inline-block;
    padding: 15px 50px;
    background: transparent;
    border: 2px solid var(--rojo-corporativo);
    color: var(--rojo-corporativo);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-contact:hover {
    background: var(--rojo-corporativo);
    color: var(--blanco);
}

/* Clients Section */
.clients {
    background: rgba(139, 30, 30, 0.5);
    padding: 80px 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--rojo-corporativo);
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 500;
}

.clients .section-title {
    margin-top: 50px;
    margin-bottom: 10px;
    color: var(--rojo-corporativo);
}

.clients .section-subtitle {
    margin-bottom: 30px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-card {
    background: var(--crema-claro);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.client-logo {
    width: 80px;
    height: 80px;
    background: var(--rojo-corporativo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.client-logo i {
    font-size: 36px;
    color: var(--blanco);
}

.client-card h3 {
    color: var(--rojo-corporativo);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-card p {
    color: var(--gris-oscuro);
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: rgba(139, 30, 30, 0.5);
    padding: 100px 20px;
}

.contact-section .section-title {
    color: var(--rojo-corporativo);
    margin-bottom: 10px;
    margin-top: 30px;
}

.contact-section .section-subtitle {
    color: var(--rojo-corporativo);
    margin-bottom: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

.contact-info-box {
    background: var(--blanco);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info-box h3 {
    color: var(--rojo-corporativo);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 32px;
    color: var(--rojo-corporativo);
}

.contact-item h4 {
    color: var(--gris-oscuro);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gris-oscuro);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-form-box {
    background: var(--blanco);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    color: var(--rojo-corporativo);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    text-align: center;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rojo-corporativo);
}

.form-group textarea {
    resize: vertical;
    text-align: left;
}

.btn-submit {
    padding: 18px 40px;
    background: var(--rojo-corporativo);
    border: none;
    color: var(--blanco);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    border-radius: 8px;
}

.btn-submit:hover {
    background: var(--negro-absoluto);
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--negro-absoluto);
    padding: 60px 20px 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-block {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-address {
    color: var(--blanco);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info p {
    color: var(--blanco);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--rojo-corporativo);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #0077B5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--rojo-corporativo);
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rojo-corporativo);
}

.scroll-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--rojo-corporativo);
    border: none;
    color: var(--blanco);
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-top:hover {
    background: var(--crema-claro);
    color: var(--rojo-corporativo);
}

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

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
    font-size: 28px;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
}

.telegram-btn {
    background: #0088cc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .services-grid,
    .products-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .value-content {
        gap: 40px;
    }
    
    .value-text h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-image {
        height: 160px;
    }

    .product-content {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card p {
        font-size: 13px;
    }

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

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        padding: 15px;
        justify-content: space-between;
    }

    .logo-img {
        max-height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--blanco);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

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

    .nav-link {
        font-size: 18px;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-link:hover {
        background: var(--crema-claro);
    }

    .lang-selector {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #ddd;
        margin-top: 10px;
        padding-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .hero-slider {
        margin-top: 70px;
        height: calc(100vh - 70px);
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 14px;
    }

    .mission {
        padding: 50px 20px;
    }

    .mission-text {
        font-size: 18px;
    }

    .separator {
        font-size: 20px;
    }

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

    .services {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-icon {
        font-size: 48px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products {
        padding: 50px 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px 15px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card p {
        font-size: 13px;
    }

    .product-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-detail {
        padding: 50px 20px;
    }

    .service-detail-icon {
        font-size: 40px;
    }

    .service-detail-header h2 {
        font-size: 20px;
    }

    .service-detail-content p {
        font-size: 14px;
    }

    .service-features li {
        font-size: 13px;
    }

    .services-cta {
        padding: 50px 20px;
    }

    .services-cta h2 {
        font-size: 24px;
    }

    .services-cta p {
        font-size: 16px;
    }

    .value-added {
        padding: 50px 20px;
    }

    .value-text h2 {
        font-size: 24px;
    }

    .value-text p {
        font-size: 15px;
    }

    .value-content {
        grid-template-columns: 1fr;
    }

    .dual-block {
        grid-template-columns: 1fr;
    }

    .block-left {
        padding: 50px 20px;
    }

    .block-left h2 {
        font-size: 22px;
    }

    .block-left p {
        font-size: 15px;
    }

    .block-right {
        padding: 50px 20px;
    }

    .block-right h2 {
        font-size: 24px;
    }

    .btn-contact {
        padding: 12px 35px;
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-block {
        text-align: center;
        align-items: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer {
        padding: 50px 20px 30px;
    }

    .footer-logo-img {
        max-height: 60px;
    }

    .footer-address {
        font-size: 13px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .clients {
        padding: 50px 20px;
    }

    .client-card {
        padding: 30px 20px;
    }

    .client-logo {
        width: 60px;
        height: 60px;
    }

    .client-logo i {
        font-size: 28px;
    }

    .client-card h3 {
        font-size: 16px;
    }

    .client-card p {
        font-size: 13px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-info-box h3,
    .contact-form-box h3 {
        font-size: 22px;
    }

    .contact-item i {
        font-size: 28px;
    }

    .contact-item h4 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 15px;
    }

    .btn-submit {
        padding: 15px 30px;
        font-size: 14px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 24px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 25px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 45px;
    }

    .navbar .container {
        padding: 10px 15px;
    }

    .hero-slider {
        margin-top: 65px;
        height: calc(100vh - 65px);
    }

    .slide-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 12px;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 12px;
    }

    .slider-arrow {
        font-size: 18px;
        padding: 8px;
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 14px;
    }

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

    .services {
        padding: 40px 15px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products {
        padding: 40px 15px;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .product-card p {
        font-size: 12px;
    }

    .product-badge {
        font-size: 9px;
        padding: 2px 8px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-detail {
        padding: 40px 15px;
    }

    .service-detail-icon {
        font-size: 35px;
    }

    .service-detail-header h2 {
        font-size: 18px;
    }

    .service-detail-content p {
        font-size: 13px;
    }

    .service-features li {
        font-size: 12px;
    }

    .services-cta {
        padding: 40px 15px;
    }

    .services-cta h2 {
        font-size: 20px;
    }

    .services-cta p {
        font-size: 14px;
    }

    .value-added {
        padding: 40px 15px;
    }

    .value-text h2 {
        font-size: 20px;
    }

    .value-text p {
        font-size: 14px;
    }

    .block-left {
        padding: 40px 15px;
    }

    .block-left h2 {
        font-size: 18px;
    }

    .block-left p {
        font-size: 14px;
    }

    .block-right {
        padding: 40px 15px;
    }

    .block-right h2 {
        font-size: 18px;
    }

    .btn-contact {
        padding: 10px 30px;
        font-size: 13px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .clients {
        padding: 40px 15px;
    }

    .client-card {
        padding: 25px 15px;
    }

    .client-logo {
        width: 50px;
        height: 50px;
    }

    .client-logo i {
        font-size: 24px;
    }

    .client-card h3 {
        font-size: 15px;
    }

    .client-card p {
        font-size: 12px;
    }

    .contact-section {
        padding: 60px 15px;
    }

    .contact-section .section-title {
        font-size: 22px;
        margin-top: 20px;
    }

    .contact-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px 15px;
    }

    .contact-info-box h3,
    .contact-form-box h3 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item i {
        font-size: 24px;
    }

    .contact-item h4 {
        font-size: 14px;
    }

    .contact-item p {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 12px;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer {
        padding: 40px 15px 25px;
    }

    .footer-logo-img {
        max-height: 50px;
    }

    .footer-address {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn i {
        font-size: 22px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }

    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
}
