/**
 * AGROPLANET RIOS - Estilos Principales
 * Paleta: Azul #0072BC | Verde #8DC63F
 */

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Titillium Web', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.top-bar {
    background-color: #0072BC;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

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

.top-bar-left .top-social {
    display: flex;
    gap: 12px;
}

.top-bar-left .top-social a {
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.top-bar-left .top-social a:hover {
    background: #8DC63F;
    transform: scale(1.1);
}

.top-bar-center span {
    font-weight: 600;
    letter-spacing: 1px;
}

.top-bar-center i {
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar-right a:hover {
    color: #8DC63F;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
    background-color: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 90px;
    width: auto;
    transition: height 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar.scrolled .logo img {
    height: 65px;
}

.nav-menu ul {
    display: flex;
    gap: 8px;
}

.nav-menu ul li a {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #8DC63F;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #0072BC;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 60%;
}

.nav-social-mobile {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    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);
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,60,120,0.92) 0%, rgba(0,114,188,0.7) 50%, rgba(141,198,63,0.3) 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 1;
}

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

.hero-content {
    max-width: 700px;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #8DC63F, #6db02a);
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(141,198,63,0.4);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6db02a, #5a9a20);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141,198,63,0.5);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #0072BC, #005a96);
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,114,188,0.3);
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #005a96, #004a7c);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,114,188,0.4);
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #8DC63F;
    opacity: 1;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: #8DC63F;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════ */
.section {
    padding: 90px 0;
}

.section-light {
    background-color: #f8f9fa;
}

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

.section-title h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #0072BC;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
}

.section-title .title-line {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #0072BC, #8DC63F);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border-top: 4px solid transparent;
    background-clip: padding-box;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072BC, #8DC63F);
    border-radius: 20px 20px 0 0;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,114,188,0.18);
}

.product-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img i {
    font-size: 72px;
    color: #0072BC;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.product-card:hover .product-card-img i {
    opacity: 0.8;
    transform: scale(1.15);
    color: #8DC63F;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    padding: 28px;
}

.product-card-body h3 {
    font-size: 21px;
    font-weight: 700;
    color: #0072BC;
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 22px;
}

.product-card .btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8DC63F;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.product-card .btn-card:hover {
    color: #0072BC;
    gap: 14px;
    border-bottom-color: #0072BC;
}

.product-card .btn-card i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.product-card:hover .btn-card i {
    transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES / WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 45px 28px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072BC, #8DC63F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,114,188,0.12);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #0072BC, #8DC63F);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,114,188,0.3);
}

.feature-icon i {
    font-size: 36px;
    color: #0072BC;
    transition: color 0.4s ease;
}

.feature-item:hover .feature-icon i {
    color: #fff;
}

.feature-item h3 {
    font-size: 21px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, #003c78 0%, #0072BC 50%, #005a96 100%);
    padding: 90px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(141,198,63,0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto 35px;
    opacity: 0.9;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn-whatsapp:hover {
    background: linear-gradient(135deg, #1ebe5d, #17a84e);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.cta-btn-whatsapp i {
    font-size: 26px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT / NOSOTROS
   ═══════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f4fd, #f0f9e8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder i {
    font-size: 80px;
    color: #0072BC;
    opacity: 0.3;
}

.about-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #0072BC;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.about-content .title-line-left {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0072BC, #8DC63F);
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-item .counter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #0072BC;
    line-height: 1;
}

.stat-item .stat-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #8DC63F;
}

.stat-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   MISSION / VISION
   ═══════════════════════════════════════════════════════════ */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #0072BC;
    transition: transform 0.3s ease;
}

.mv-card:nth-child(2) {
    border-left-color: #8DC63F;
}

.mv-card:hover {
    transform: translateY(-4px);
}

.mv-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #0072BC;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-card:nth-child(2) h3 {
    color: #8DC63F;
}

.mv-card h3 i {
    font-size: 28px;
}

.mv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-item i {
    font-size: 36px;
    color: #8DC63F;
    margin-bottom: 12px;
}

.value-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER (internal pages)
   ═══════════════════════════════════════════════════════════ */
.page-banner {
    background: linear-gradient(135deg, #003c78 0%, #0072BC 50%, #005a96 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(141,198,63,0.06);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    font-size: 16px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: #8DC63F;
}

.page-banner .breadcrumb a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.contact-form label .required {
    color: #e74c3c;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #0072BC;
    box-shadow: 0 0 0 4px rgba(0,114,188,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 4px rgba(231,76,60,0.1) !important;
}

.field-error {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 4px;
}

.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0072BC;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background: #005a96;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,114,188,0.3);
}

/* Contact Info Sidebar */
.contact-info-box {
    background: linear-gradient(135deg, #0072BC 0%, #005a96 100%);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    height: fit-content;
}

.contact-info-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item i {
    font-size: 20px;
    color: #8DC63F;
    margin-top: 3px;
    min-width: 24px;
}

.contact-info-item p {
    font-size: 15px;
    line-height: 1.5;
}

.contact-info-item a {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #8DC63F;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #8DC63F;
    transform: scale(1.1);
}

/* Alert messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: linear-gradient(180deg, #1B2A4A 0%, #111d35 100%);
    color: #ccc;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #8DC63F;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #8DC63F;
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 10px;
    color: #8DC63F;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px !important;
}

.footer-contact li i {
    color: #8DC63F;
    font-size: 16px;
    margin-top: 3px;
    min-width: 18px;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 14px;
    color: #aaa;
}

.footer-contact li a:hover {
    color: #8DC63F;
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

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

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════════════════════
   QUICK CONTACT STRIP (home)
   ═══════════════════════════════════════════════════════════ */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px;
    background: #fff;
    transition: transform 0.3s ease;
}

.quick-contact-item:nth-child(2) {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.quick-contact-item:hover {
    transform: translateY(-3px);
}

.quick-contact-item i {
    font-size: 32px;
    color: #0072BC;
}

.quick-contact-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-bottom: 2px;
}

.quick-contact-item p {
    font-size: 14px;
    color: #666;
}

/* Map */
.map-container {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}
