@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --dark: #12151B;
    --yellow: #FBBF24;
    --light: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* NAVBAR & HEADER */
header {
    background-color: var(--dark);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px; /* Increased logo size */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px; /* Slightly more gap */
}

.nav-links a {
    color: #FFFFFF !important; /* Force white color */
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 0.95rem; /* Slightly larger */
    transition: color 0.3s, opacity 0.3s;
}

.nav-links a:hover {
    color: var(--yellow) !important;
    opacity: 0.9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 20px;
    padding: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}

.search-container.active {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.search-input {
    width: 0;
    opacity: 0;
    border: none;
    background: transparent;
    color: var(--white);
    outline: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-container.active .search-input {
    width: 180px;
    opacity: 1;
    padding: 5px 15px;
}

.search-input::placeholder {
    color: #888;
}

.search-icon-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 10px;
    transition: color 0.3s;
}

.search-icon-btn:hover {
    color: var(--yellow);
}

/* HERO SECTION */
.hero {
    background-color: var(--dark);
    min-height: 60vh;
    padding: 120px 5% 80px;
    color: var(--white);
}

.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    border: 1px solid rgba(251, 191, 36, 0.5);
    color: var(--yellow);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.badge i {
    margin-right: 5px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--dark);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e5a913;
}

.hero-content .btn-primary {
    width: auto;
    max-width: 250px;
    padding: 15px 40px;
    justify-content: center;
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* For the glow */
}

.hero-machinery {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.1));
    position: relative;
    z-index: 2;
}

.glow-circle {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0) 70%);
    border-radius: 50%;
    position: absolute;
    top: -60px; /* Moved up as requested */
    z-index: 1;
}

/* Features Section */
.features-section {
    background-color: #F5F5F5;
    padding: 60px 5% 60px; /* Increased top padding */
    position: relative;
    z-index: 10;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background-color: #0B0F1A;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #161b25; /* Slightly lighter on hover */
    border-color: var(--yellow);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-card i {
    color: var(--yellow);
    font-size: 1.8rem;
}

.feature-text h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.75rem;
    color: #a0a0a0;
    line-height: 1.3;
    font-weight: 500;
}

/* RESPONSIVE (MOBILE) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .contact-container {
        flex-direction: column;
    }
    
    .hero-main {
        flex-direction: column;
        text-align: left;
    }

    .hero-image {
        display: none; /* Hide the glow/image on mobile for better spacing */
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 100px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
}

/* SECCIONES COMUNES */
.section-padding {
    padding: 60px 10%;
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-title span {
    color: var(--yellow);
}

/* CATEGORÍAS SECTION */
.categorias-section {
    background-color: #f5f6f8;
    padding: 80px 10%;
}

.categorias-header {
    text-align: center;
    margin-bottom: 50px;
}

.categorias-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.categorias-header h2 span {
    color: var(--yellow);
}

.categorias-header p {
    color: #666;
    font-size: 1rem;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cat-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.categoria-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid transparent;
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.15);
    border-color: var(--yellow);
}

.cat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.cat-icon-wrapper {
    position: relative;
}

.cat-line {
    width: 25px;
    height: 3px;
    background-color: var(--yellow);
    margin-bottom: 15px;
    border-radius: 2px;
}

.cat-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--yellow);
}

.cat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f0f0f4;
    line-height: 1;
}

.cat-card-body {
    flex-grow: 1;
    margin-bottom: 30px;
}

.cat-card-body h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.cat-list {
    list-style: none;
    padding: 0;
}

.cat-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-list li i {
    color: var(--yellow);
    font-size: 0.75rem;
}

.cat-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.cat-disponibles {
    font-size: 0.75rem;
    color: #999;
}

.cat-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.cat-link:hover {
    color: var(--yellow);
}

@media (max-width: 1024px) {
    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categorias-grid {
        grid-template-columns: 1fr;
    }
    .categorias-section {
        padding: 60px 5%;
    }
    .categorias-header h2 {
        font-size: 2rem;
    }
}

/* CONTACTO SECTION */
.contacto-section {
    background-color: var(--dark);
    padding: 100px 10%;
    color: var(--white);
}

.contacto-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contacto-info {
    flex: 1;
    max-width: 500px;
}

.contacto-label {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.contacto-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contacto-header p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contacto-lista {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacto-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--yellow);
    font-size: 1.2rem;
}

.contacto-text span {
    display: block;
    color: #888;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contacto-text p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.contacto-form-wrapper {
    flex: 1;
    background-color: #1a1d24;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

.contacto-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.5);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e5a913;
}

@media (max-width: 900px) {
    .contacto-container {
        flex-direction: column;
    }
    .contacto-info,
    .contacto-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contacto-section {
        padding: 60px 5%;
    }
    .contacto-header h2 {
        font-size: 2rem;
    }
}

/* CONÓCENOS SECTION */
.nosotros-section {
    background-color: var(--white);
    padding: 100px 10%;
    text-align: center;
}

.nosotros-label {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.nosotros-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.nosotros-header h2 span {
    color: var(--yellow);
}

.nosotros-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
}

.nosotros-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.nosotros-card {
    background-color: #f8f9fa;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s;
}

.nosotros-card:hover {
    transform: translateY(-5px);
}

.n-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.n-card-icon i {
    color: var(--yellow);
    font-size: 1.4rem;
}

.nosotros-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.nosotros-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.nosotros-banner {
    background-color: var(--dark);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.n-banner-logo {
    width: 80px;
    height: 80px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.n-banner-logo span {
    color: var(--dark);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.n-banner-content h5 {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.n-banner-content p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* STATS & TESTIMONIOS SECTION */
.stats-testimonios-section {
    background-color: var(--dark);
    padding: 80px 10%;
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    color: var(--yellow);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    color: #888;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonio-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.test-stars {
    color: var(--yellow);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.test-quote {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.test-author h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.test-author span {
    color: #888;
    font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nosotros-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .nosotros-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        width: 45%;
        text-align: center;
    }
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nosotros-cards {
        grid-template-columns: 1fr;
    }
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        width: 100%;
        text-align: left; /* Keep left alignment on mobile similar to image */
    }
    .nosotros-header h2 {
        font-size: 2rem;
    }
}

/* MEJORES PRODUCTOS SECTION */
.productos-section {
    background-color: #fcfcfc;
    padding: 80px 10%;
}

.productos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.p-header-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.p-header-text h2 span {
    color: var(--yellow);
}

.p-header-text p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.p-link-todos {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.p-link-todos:hover {
    color: #d19f18;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-img {
    position: relative;
    height: 220px;
    background-color: var(--dark);
    overflow: hidden;
}

.badge-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    z-index: 2;
}

.badge-top-left.yellow-text {
    color: var(--yellow);
}

.badge-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.white-bg {
    background-color: var(--white);
    color: var(--dark);
}

.dark-bg {
    background-color: #2a2d34;
    color: var(--yellow);
}

.grid-bg {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tractor-icon {
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--yellow);
    opacity: 0.9;
}

.product-info {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.p-category {
    font-size: 0.7rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-status {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.yellow-bg {
    background-color: var(--yellow);
    color: var(--dark);
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.p-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.spec-label {
    font-size: 0.65rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
}

.p-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.p-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.price-sub {
    font-size: 0.75rem;
    color: #999;
}

.btn-cotizar-small {
    background-color: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cotizar-small:hover {
    background-color: #e5a913;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .productos-section {
        padding: 60px 5%;
    }
    .p-header-text h2 {
        font-size: 2rem;
    }
    .p-link-todos {
        width: 100%;
        margin-top: 10px;
    }
}

/* FOOTER */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 5% 20px;
    font-size: 0.9rem;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--yellow);
    color: var(--dark);
}

.footer-links-container {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    min-width: 180px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.footer-column h4::before {
    content: '|';
    color: var(--yellow);
    margin-right: 8px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--yellow);
}

.contact-column ul li {
    display: flex;
    gap: 12px;
    color: #a0a0a0;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-column ul li i {
    color: var(--yellow);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-links-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* RESPONSIVE HERO (MOBILE) */
@media (max-width: 768px) {
    .hero {
        position: relative;
        overflow: hidden;
        padding-top: 140px;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-image {
        position: absolute;
        bottom: -50px;
        right: -100px;
        width: 140%;
        opacity: 0.15;
        z-index: 1;
        pointer-events: none;
    }

    .hero-machinery {
        max-width: 1000px;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   ANTIGRAVITY ANIMATIONS
   ========================================================================== */
@keyframes antigravityEntry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-entry {
    opacity: 0;
    animation: antigravityEntry 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.page-link.active {
    background-color: var(--yellow) !important;
    color: var(--dark) !important;
    border-color: var(--yellow) !important;
}