/* =====================================================
   ÓPTICA ORBERÁ - Estilos Globales
   ===================================================== */

/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* Variables CSS */
:root {
    --primary: #005689;
    --primary-light: #0077b6;
    --secondary: #FFD100;
    --secondary-hover: #e6bc00;
    --background-light: #F8FAFC;
    --background-dark: #0F172A;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --border-radius: 0.75rem;
    --shadow: 0 10px 25px -5px rgba(0, 86, 137, 0.1), 0 8px 10px -6px rgba(0, 86, 137, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 86, 137, 0.25);

    /* Márgenes laterales */
    --margin-mobile: 1.5rem;
    --margin-tablet: 3rem;
    --margin-desktop: 6rem;
    --margin-wide: 8rem;
}

/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: 'Montserrat', sans-serif;
}

/* =====================================================
   CONTENEDOR PRINCIPAL CON MÁRGENES
   ===================================================== */
.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--margin-tablet);
        padding-right: var(--margin-tablet);
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: var(--margin-desktop);
        padding-right: var(--margin-desktop);
    }
}

@media (min-width: 1400px) {
    .container {
        padding-left: var(--margin-wide);
        padding-right: var(--margin-wide);
    }
}

/* =====================================================
   LOGO
   ===================================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.logo-bracket {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
}

.logo-bracket.white {
    color: var(--white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    top: 12px;
    left: 12px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-text.white {
    color: var(--white);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
    .header {
        padding-left: var(--margin-tablet);
        padding-right: var(--margin-tablet);
    }
}

@media (min-width: 1024px) {
    .header {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.header-inner {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(0, 86, 137, 0.39);
}

.btn-phone:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .btn-phone {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    background: linear-gradient(rgba(0, 86, 137, 0.85), rgba(0, 86, 137, 0.7)),
        url('https://images.unsplash.com/photo-1516062423079-7ca13cdc7f5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
    .hero {
        padding-left: var(--margin-tablet);
        padding-right: var(--margin-tablet);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-left: var(--margin-desktop);
        padding-right: var(--margin-desktop);
    }
}

@media (min-width: 1400px) {
    .hero {
        padding-left: var(--margin-wide);
        padding-right: var(--margin-wide);
    }
}

.hero-content {
    max-width: 700px;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title span {
    color: var(--secondary);
}

.hero-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-feature .material-icons-round {
    color: var(--secondary);
}

/* =====================================================
   BOTONES
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-blue {
    background: var(--primary);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* =====================================================
   CARDS DE SERVICIOS
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 86, 137, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-icon .material-icons-round {
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-text {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* =====================================================
   SECCIONES
   ===================================================== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-divider {
    width: 6rem;
    height: 0.375rem;
    background: var(--secondary);
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   OFERTAS
   ===================================================== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.offer-card {
    background: var(--primary);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card-inner {
    display: flex;
    height: 100%;
}

.offer-sidebar {
    width: 25%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.offer-sidebar-text {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.offer-content {
    width: 75%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 1rem;
}

.offer-details {
    background: var(--white);
    border-radius: 1rem;
    padding: 1rem;
}

.offer-type {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.offer-feature {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    opacity: 0.7;
    font-weight: 600;
}

.offer-extra {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    font-weight: 700;
    color: var(--primary);
}

.offer-content .btn {
    margin-top: 1.5rem;
}

/* Card especial audífonos */
.offer-card-special {
    background: var(--white);
    border: 4px solid var(--primary);
}

.offer-image {
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 86, 137, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.offer-image-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.offer-special-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.offer-2x1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.offer-2x1 span {
    font-size: 3rem;
}

.offer-special-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-about {
    max-width: 300px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item .material-icons-round {
    color: var(--secondary);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours .closed {
    color: var(--secondary);
    font-weight: 700;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* =====================================================
   WHATSAPP BUTTON
   ===================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    z-index: 100;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: currentColor;
}

/* =====================================================
   UTILIDADES
   ===================================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    padding-left: var(--margin-mobile);
    padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
    .breadcrumb {
        padding-left: var(--margin-tablet);
        padding-right: var(--margin-tablet);
    }
}

@media (min-width: 1024px) {
    .breadcrumb {
        padding-left: var(--margin-desktop);
        padding-right: var(--margin-desktop);
    }
}

@media (min-width: 1400px) {
    .breadcrumb {
        padding-left: var(--margin-wide);
        padding-right: var(--margin-wide);
    }
}

.breadcrumb-list {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list .active {
    color: var(--primary);
    font-weight: 600;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* Content cards */
.content-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 137, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Feature list */
.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-item .material-icons-round {
    color: var(--primary);
    flex-shrink: 0;
}

/* About section with image */
.about-image-wrapper {
    position: relative;
}

.about-image-decoration {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: var(--secondary);
    border-radius: 1rem;
    z-index: -1;
}

.about-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.about-trust-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--primary);
    max-width: 250px;
}

.about-trust-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-trust-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Feature boxes */
.feature-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-box-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 86, 137, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-box-text {
    color: var(--text-light);
}

/* Map */
.map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 20rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact info boxes */
.contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-box-primary {
    background: var(--primary);
    color: var(--white);
}

.contact-box-primary:hover {
    background: var(--primary-light);
}

.contact-box-secondary {
    background: #f1f5f9;
    color: var(--text-dark);
}

.contact-box-secondary:hover {
    background: #e2e8f0;
}

.contact-box-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box-secondary .contact-box-icon {
    background: rgba(0, 86, 137, 0.1);
    color: var(--primary);
}

.contact-box-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    font-weight: 600;
}

.contact-box-value {
    font-weight: 700;
}