/*
 * main.css - Estilos Principales de la Landing Page de Transportes J y C
 * Identidad: Fondo blanco puro, acentos en Rojo Corporativo (#E30613) y Verde Profundo / Casi Negro (#071F14)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --white: #ffffff;
    --primary-red: #E30613; /* Rojo Corporativo */
    --primary-red-hover: #c50510;
    --primary-red-light: rgba(227, 6, 19, 0.08);
    --deep-green: #071F14; /* Verde Profundo Principal (Casi Negro) */
    --deep-green-dark: #04130c; /* Verde Aún Más Oscuro para fondos contrastantes */
    --deep-green-light: rgba(7, 31, 20, 0.05);
    
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-light: rgba(255,255,255,0.1);
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    --max-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px -1px rgba(7, 31, 20, 0.02), 0 2px 4px -1px rgba(7, 31, 20, 0.01);
    --shadow-md: 0 10px 15px -3px rgba(7, 31, 20, 0.05), 0 4px 6px -2px rgba(7, 31, 20, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(7, 31, 20, 0.08), 0 10px 10px -5px rgba(7, 31, 20, 0.04);
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Estilos Generales y Reseteo
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--deep-green);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--deep-green);
    line-height: 1.25;
}

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

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

section {
    padding: 100px 24px;
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Componentes de Diseño y Botones
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--deep-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--deep-green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--deep-green);
    color: var(--deep-green);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--deep-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Título de Secciones */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-red);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--deep-green);
}

.section-title span {
    color: var(--primary-red);
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 16px;
}

/* ==========================================================================
   Header y Menú de Navegación
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 24px;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(7, 31, 20, 0.03);
    border-bottom: 1px solid rgba(7, 31, 20, 0.05);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    max-height: 50px;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    max-height: 42px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--deep-green);
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-cta {
    padding: 10px 20px;
    font-size: 12px;
}

/* Menú Móvil */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--deep-green);
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    background: linear-gradient(135deg, rgba(7, 31, 20, 0.02) 0%, rgba(227, 6, 19, 0.01) 100%), #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.02) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}

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

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

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tagline::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    background-color: var(--deep-green);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

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

/* ==========================================================================
   Sección de Servicios
   ========================================================================== */
.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-red);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    flex-grow: 1;
}

/* ==========================================================================
   Sección de Flota (Slider/Grid Premium)
   ========================================================================== */
.fleet {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(7, 31, 20, 0.1);
}

.fleet-img-container {
    height: 240px;
    background-color: var(--deep-green);
    overflow: hidden;
    position: relative;
}

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

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

.fleet-capacity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.fleet-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--deep-green);
}

.fleet-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.fleet-specs {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.fleet-spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.fleet-spec-val {
    font-weight: 700;
    color: var(--deep-green);
}

/* ==========================================================================
   Sección del Blog / Comunicados
   ========================================================================== */
.blog {
    background-color: var(--white);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.blog-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #eee;
}

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

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

.blog-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-readmore {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: var(--deep-green);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card:hover .blog-readmore {
    color: var(--primary-red);
}

/* ==========================================================================
   Sección de Contacto y Ubicación
   ========================================================================== */
.contact {
    background: linear-gradient(135deg, var(--white) 0%, rgba(7, 31, 20, 0.03) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-info-content p, .contact-info-content a {
    font-size: 15px;
    color: var(--text-muted);
}

/* Formulario de Contacto */
.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--deep-green);
}

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

.form-label-landing {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--deep-green);
}

.form-control-landing {
    width: 100%;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--deep-green);
    background-color: #fff;
    transition: var(--transition);
}

.form-control-landing:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

/* Mapa de Ubicación Chiclayo */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Footer (Pie de Página)
   ========================================================================== */
.footer {
    background-color: var(--deep-green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 24px 30px;
    font-size: 14px;
    border-top: 4px solid var(--primary-red);
}

.footer-top {
    max-width: var(--max-width);
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

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

.footer-about p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
}

.footer-contact-list i {
    color: var(--primary-red);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-credits {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
}

.footer-credits span {
    color: var(--white);
    font-weight: 700;
}

/* ==========================================================================
   Botón Flotante de WhatsApp CTA
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   Modales y Ventanas Emergentes (Blog)
   ========================================================================== */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 31, 20, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.4s ease;
}

.blog-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.blog-modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-modal.active .blog-modal-content {
    transform: scale(1) translateY(0);
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: var(--transition);
}

.blog-modal-close:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.blog-modal-img {
    height: 350px;
    background-color: #eee;
}

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

.blog-modal-body {
    padding: 40px;
}

.blog-modal-meta {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-modal-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.blog-modal-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
}

.blog-modal-text p {
    margin-bottom: 16px;
}

/* ==========================================================================
   Efectos de Transición Scroll Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Ajustes de tipo de transiciones */
.reveal-fade-in {
    opacity: 0;
}
.reveal-fade-in.active {
    opacity: 1;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(50px);
}
.reveal-slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-zoom-in {
    opacity: 0;
    transform: scale(0.92);
}
.reveal-zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Responsive Adaptations (Adaptable a todos los dispositivos)
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -4px 0 30px rgba(7, 31, 20, 0.05);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        z-index: 999;
        transition: right 0.4s ease;
    }
    
    .nav.active {
        right: 0;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-img-wrapper {
        margin: 0 auto;
        transform: none;
    }
    
    .hero-img-wrapper:hover {
        transform: none;
    }
    
    .hero-img-wrapper img {
        height: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .btn {
        width: 100%;
    }
    
    .blog-modal-body {
        padding: 24px;
    }
    
    .blog-modal-title {
        font-size: 20px;
    }
}
