/**
 * Index CSS - Jovilse Portal Landing Page
 * Modern, professional landing page styling for Jovilse Distribuidora Ferretera
 */

/* ===== CSS VARIABLES - JOVILSE BRAND PALETTE ===== */
:root {
    /* Jovilse Colors */
    --jovilse-red: #D81414;
    --jovilse-blue: #1177B0;
    --jovilse-blue-dark: #015276;
    --jovilse-green: #2EA05F;
    --jovilse-green-light: #6BD110;
    
    /* Supporting Colors */
    --white: #ffffff;
    --gray-light: #F8F9FA;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --border-color: #dee2e6;
    
    /* Design System */
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --shadow-2xl: 0 24px 64px rgba(0,0,0,0.25);
    
    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-sm: 60px 0;
    --container-padding: 0 20px;
}

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hacer que el footer siempre quede al fondo */
.footer-section {
    margin-top: auto !important;
}

/* Asegurar que las secciones principales crezcan */
.quick-access-section,
.features-section,
.contact-section,
#services-section {
    flex: 1 0 auto;
}

/* ===== CORRECCIÓN PARA NAVBAR FIJO ===== */
/* Margen superior para secciones que van después del navbar fijo */
#section-order,
#section-personalinformations,
#section-invoices,
#section-propals,
#section-expeditions,
#section-tickets,
#section-projects,
section[id^="section-"] {
    padding-top: 100px !important;
    margin-top: 0 !important;
    flex: 1 0 auto;
}

/* Ajuste para el headbar cuando existe */
header.commonhead {
    margin-top: 60px !important;
}

/* Asegurar espacio después del navbar fijo en páginas con contenedor directo */
body > .container:first-of-type,
body > section:first-of-type,
#mainNav + .container,
#mainNav + section {
    margin-top: 80px;
}

/* ===== LAYOUT CONTAINERS ===== */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid-custom {
    width: 100%;
    padding: var(--container-padding);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--jovilse-blue-dark) 0%, var(--jovilse-blue) 50%, var(--jovilse-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    max-height: 80px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    animation: logoFloat 3s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 15px;
    opacity: 0.95;
    color: #E8F4FD;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: var(--transition);
    animation: statFloat 4s ease-in-out infinite;
}

.hero-stat:nth-child(1) { animation-delay: 0.5s; }
.hero-stat:nth-child(2) { animation-delay: 1s; }
.hero-stat:nth-child(3) { animation-delay: 1.5s; }

@keyframes statFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 40px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.hero-scroll-icon {
    color: var(--white);
    font-size: 24px;
    opacity: 0.8;
    transition: var(--transition);
}

.hero-scroll-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== BUTTONS ===== */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--jovilse-red), #FF4757);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: var(--white);
    text-decoration: none;
}

.btn-lg-custom {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-lg);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--section-padding);
    background: var(--gray-light);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--jovilse-blue-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--jovilse-red), var(--jovilse-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--jovilse-blue), var(--jovilse-green));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, var(--jovilse-blue), var(--jovilse-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jovilse-blue-dark);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== QUICK ACCESS SECTION ===== */
.quick-access-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-access-card {
    background: linear-gradient(135deg, var(--jovilse-blue-dark) 0%, var(--jovilse-blue) 100%);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: var(--transition-slow);
}

.quick-access-card:hover::before {
    transform: scale(1);
}

.quick-access-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    text-decoration: none;
    color: var(--white);
}

.quick-access-card.gradient-red {
    background: linear-gradient(135deg, var(--jovilse-red) 0%, #FF4757 100%);
}

.quick-access-card.gradient-green {
    background: linear-gradient(135deg, var(--jovilse-green) 0%, var(--jovilse-green-light) 100%);
}

.quick-access-card.gradient-blue {
    background: linear-gradient(135deg, var(--jovilse-blue-dark) 0%, var(--jovilse-blue) 100%);
}

.quick-access-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.quick-access-card:hover .quick-access-icon {
    opacity: 1;
    transform: scale(1.1);
}

.quick-access-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.quick-access-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--gray-light);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.contact-info {
    padding: 0 20px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--jovilse-blue-dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--gray-dark);
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--jovilse-blue), var(--jovilse-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-map {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    text-align: center;
}

.contact-map h4 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jovilse-blue-dark);
    margin-bottom: 20px;
}

.map-placeholder {
    background: var(--gray-light);
    border-radius: var(--border-radius);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    border: 2px dashed var(--border-color);
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--jovilse-blue-dark);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    color: var(--white);
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--jovilse-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes for scroll triggers */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    .container-custom {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container-custom {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .quick-access-grid {
        gap: 25px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }
    
    .hero-section {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 30px 0;
    }
    
    .hero-stat {
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .features-grid,
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-access-card {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .quick-access-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .btn-custom {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .btn-lg-custom {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.7rem;
    }
    
    .contact-details li {
        margin-bottom: 15px;
    }
    
    .map-placeholder {
        height: 200px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .quick-access-icon {
        font-size: 2rem;
    }
    
    .quick-access-title {
        font-size: 1.1rem;
    }
    
    .btn-custom {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .contact-details i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-jovilse-red { color: var(--jovilse-red) !important; }
.text-jovilse-blue { color: var(--jovilse-blue) !important; }
.text-jovilse-blue-dark { color: var(--jovilse-blue-dark) !important; }
.text-jovilse-green { color: var(--jovilse-green) !important; }

.bg-jovilse-red { background-color: var(--jovilse-red) !important; }
.bg-jovilse-blue { background-color: var(--jovilse-blue) !important; }
.bg-jovilse-blue-dark { background-color: var(--jovilse-blue-dark) !important; }
.bg-jovilse-green { background-color: var(--jovilse-green) !important; }

.shadow-custom { box-shadow: var(--shadow-md) !important; }
.shadow-custom-lg { box-shadow: var(--shadow-lg) !important; }
.rounded-custom { border-radius: var(--border-radius) !important; }
.rounded-custom-lg { border-radius: var(--border-radius-lg) !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn-custom:focus,
.quick-access-card:focus {
    outline: 3px solid rgba(17, 119, 176, 0.5);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-section,
    .footer-section {
        display: none !important;
    }
    
    .features-section,
    .quick-access-section,
    .contact-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}