/* ========================================
   RESET Y VARIABLES
======================================== */

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

:root {
    /* Colores Azul Principal */
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    --secondary-color: #00A3E0;

    /* Colores de Soporte */
    --accent-color: #FFA500;
    --success-color: #28a745;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;

    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);

    /* Transiciones */
    --transition: all 0.3s ease;
}

/* ========================================
   ESTILOS GLOBALES
======================================== */

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   BOTONES
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   HEADER
======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.top-bar {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.navbar {
    background: var(--bg-white);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu a i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.dropdown-menu a span {
    flex: 1;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-menu a:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.dropdown-menu a::after {
    display: none;
}

/* ========================================
   CURRENCY ICON
======================================== */

.currency-icon {
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
    font-family: var(--font-primary);
}

.feature-box-icon .currency-icon {
    font-size: 1.56rem;
    color: var(--text-white);
}

.step-number .currency-icon {
    font-size: 1.56rem;
    color: var(--text-white);
}

.cta-feature .currency-icon {
    font-size: 1.56rem;
    color: var(--accent-color);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('img/especialistas_mudanzas.webp'),
                      linear-gradient(135deg, rgba(0,102,204,0.92) 0%, rgba(0,163,224,0.92) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.feature-item span {
    font-weight: 600;
}

.hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon i {
    font-size: clamp(12rem, 20vw, 18rem);
    color: rgba(255, 255, 255, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   SECTIONS
======================================== */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
======================================== */

.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   QUOTE FORM SECTION
======================================== */

.quote-form {
    background: var(--bg-light);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.map-container {
    margin: 2rem 0 0 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.map-container h3 {
    text-align: center;
    padding: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    background: var(--bg-light);
}

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

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ========================================
   BLOG SECTION
======================================== */

.blog {
    background: var(--bg-light);
}

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

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.blog-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   BLOG ARTICLE PAGES
======================================== */

.blog-article-header {
    background: var(--bg-light);
    padding: 2rem 0 3rem;
}

.blog-article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-article-breadcrumb a {
    color: var(--primary-color);
}

.blog-article-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-article-breadcrumb i {
    font-size: 0.75rem;
}

.blog-article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-article-meta i {
    color: var(--primary-color);
}

.blog-article-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.blog-article-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-content {
    padding: 4rem 0;
}

.blog-article-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
}

.blog-article-body {
    max-width: 800px;
}

.blog-article-body .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.blog-article-body h2 {
    font-size: 1.875rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.blog-article-body h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.blog-article-body ul,
.blog-article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article-body li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.blog-article-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.highlight {
    background: #fff3cd;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Special Boxes */
.tip-box,
.warning-box,
.example-box,
.cta-box,
.download-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tip-box {
    background: #e7f5ff;
    border-left: 4px solid #1971c2;
}

.tip-box i {
    color: #1971c2;
    font-size: 1.5rem;
    margin-right: 1rem;
    float: left;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #f59f00;
}

.warning-box i {
    color: #f59f00;
    font-size: 1.5rem;
    margin-right: 1rem;
    float: left;
}

.example-box {
    background: #f3f0ff;
    border-left: 4px solid #7950f2;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-box h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-box p,
.cta-box li {
    color: var(--bg-white);
}

.cta-box ul {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto;
}

.download-box {
    background: var(--bg-light);
    border: 2px dashed var(--primary-color);
    text-align: center;
}

.download-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Checklist Styles */
.checklist-section {
    margin: 2rem 0;
}

.checklist-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    transition: var(--transition);
}

.checklist li:hover {
    background: #e3f2fd;
}

.checklist i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.125rem;
}

.checklist-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.checklist-box .checklist li {
    background: var(--bg-white);
}

/* Share Article */
.share-article {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
    text-align: center;
}

.share-article p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.twitter {
    background: #1da1f2;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.related-post:hover {
    background: var(--bg-light);
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-post h4 {
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-post span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.cta-widget h3 {
    color: var(--bg-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    color: var(--bg-white);
}

/* Responsive Blog Articles */
@media (max-width: 968px) {
    .blog-article-content .container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-article-header h1 {
        font-size: 2rem;
    }

    .blog-article-image {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .blog-article-header h1 {
        font-size: 1.5rem;
    }

    .blog-article-body h2 {
        font-size: 1.5rem;
    }

    .blog-article-body h3 {
        font-size: 1.25rem;
    }

    .blog-article-image {
        height: 250px;
    }

    .blog-article-meta {
        gap: 1rem;
    }
}

/* ========================================
   FAQ SECTION
======================================== */

.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

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

.footer-col h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info i {
    color: var(--primary-light);
    margin-right: 0.5rem;
    width: 20px;
}

.contact-info a[href^="mailto"] {
    font-size: 0.875rem;
    word-break: break-word;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ========================================
   FLOATING ELEMENTS
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 968px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 118px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1.5rem 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .dropdown > a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2.25rem;
    }

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

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .hero-features {
        gap: 1rem;
        justify-content: center;
    }

    .hero-icon i {
        font-size: 10rem;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .hero-icon i {
        font-size: 8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

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

    .map-container iframe {
        height: 300px;
    }

    .map-container h3 {
        font-size: 1.25rem;
        padding: 1rem;
    }

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

/* ========================================
   SERVICE PAGES STYLES
======================================== */

/* Service Hero Variant */
.service-hero {
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600'),
                      linear-gradient(135deg, rgba(0,102,204,0.92) 0%, rgba(0,163,224,0.92) 100%);
}

.distribution-hero {
    background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1600'),
                      linear-gradient(135deg, rgba(0,102,204,0.92) 0%, rgba(0,163,224,0.92) 100%);
}

.estiba-hero {
    background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1600'),
                      linear-gradient(135deg, rgba(0,102,204,0.92) 0%, rgba(0,163,224,0.92) 100%);
}

.embalaje-hero {
    background-image: url('img/embalajes.webp'),
                      linear-gradient(135deg, rgba(0,102,204,0.92) 0%, rgba(0,163,224,0.92) 100%);
}

.flete-hero {
    background-image: url('img/taxi.webp?w=1600'),
                      linear-gradient(135deg, rgba(0,102,204,0.92) 0%, rgba(0,163,224,0.92) 100%);
}

/* Service Description Section */
.service-description {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-intro h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-intro p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

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

.feature-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

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

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Cargo Types Section */
.cargo-types {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

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

.cargo-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.cargo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cargo-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Work Process Section */
.work-process {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

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

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Coverage Area Section */
.coverage-area {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.coverage-text h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.coverage-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.coverage-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.coverage-list li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coverage-list i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.coverage-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-buttons .btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.cta-feature span {
    font-weight: 600;
}

/* Distribution Process Detailed */
.distribution-process {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.process-steps-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.step-detailed {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.step-detailed:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

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

.step-info p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Service Pages Responsive */
@media (max-width: 968px) {
    .coverage-content {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .step-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .step-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }

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

@media (max-width: 480px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        gap: 1.5rem;
    }
}
