/* ===== MARSO DISTRIBUCIONES - STYLESHEET ===== */
/* Archivo de estilos principal para la landing page */

:root {
    /* Color Palette - Premium */
    --color-navy: #0A2540;
    --color-navy-light: #1A3A5C;
    --color-off-white: #FAF9F6;
    --color-gold: #D4AF37;
    --color-amber: #FFBF00;
    --color-gray-light: #E5E7EB;
    --color-text-dark: #1F2937;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(1.5rem, 5vw, 4rem);
    --container-max: 1400px;
    
    /* Effects */
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.15);
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background-color: var(--color-off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== BASE RESPONSIVE MEDIA ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
    height: auto;
}

/* ===== NAVIGATION - Sticky with Blur ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 5vw, 3rem);
}

.nav-logo {
    height: clamp(36px, 4vw, 52px);
    width: auto;
}

.navbar.scrolled {
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-medium);
}

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-amber);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION - Editorial Style ===== */
.hero {
    min-height: 100vh;
    background-color: #1A2A3A;
    background-image: url('images/frame_video.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: clamp(6rem, 14vh, 9rem) 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 191, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.5);
    z-index: 0;
}

.hero-title {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 350;
    line-height: 1.6;
    letter-spacing: 5px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.6) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(212, 175, 55, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-style: normal;
    text-shadow: none;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.3vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.8px;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    max-width: min(92vw, 60rem);
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    height: clamp(140px, 28vw, 240px);
    width: auto;
    display: inline-block;
}

.hero-brands {
    width: 100%;
    max-width: clamp(240px, 65vw, 600px);
    height: auto;
    display: inline-block;
}

.hero-year {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.2em;
}

/* Fix para hero en dispositivos móviles y tablets */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

/* ===== BUTTONS - Premium Style ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-navy);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-catalog {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    background: transparent;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1.5px solid var(--color-navy);
    cursor: pointer;
    margin-top: 1.25rem;
    align-self: flex-start;
}

.btn-catalog:hover {
    background: var(--color-navy);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--section-padding) 1.5rem;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #6B7280;
    max-width: 700px;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ===== CATALOG GRID - Modern Layout ===== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.catalog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.catalog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.catalog-card:hover .catalog-image {
    transform: scale(1.05);
}

.catalog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.catalog-description {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.catalog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== HISTORY SECTION - Timeline Style ===== */
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.history-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.history-highlight {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(26, 58, 92, 0.7) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.history-highlight h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.3;
    word-break: break-word;
}

/* Responsive - Small Mobile Devices */
@media (max-width: 480px) {
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.35rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.75rem;
    align-items: stretch;
}

.contact-form {
    background: white;
    padding: 1.1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form .btn-primary {
    margin-top: auto;
}

.form-group {
    margin-bottom: 0.7rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--color-off-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-info {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.82) 0%, rgba(10, 37, 64, 0.78) 100%), url('images/Contacta.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 1.1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--color-gold);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-gold);
}

.info-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: auto;
    width: 100%;
    padding: 1rem 2rem;
    background: #1FA855;
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 10px rgba(31, 168, 85, 0.25);
}


.whatsapp-btn:hover {
    background: #1C9A4C;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(31, 168, 85, 0.3);
}

/* ===== MAP EMBED ===== */
.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.35rem;
    background: white;
    border: 2px solid #F0F0F0;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    border-color: #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 2px 6px rgba(10, 37, 64, 0.15);
}

.info-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.info-card-content p {
    font-size: 0.94rem;
    color: #6B7280;
    line-height: 1.65;
}

.ubicacion-map {
    display: flex;
    align-items: stretch;
}

.map-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 360px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Ubicación Grid */
@media (max-width: 1024px) {
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .ubicacion-grid {
        gap: 1.2rem;
    }
    
    .info-card {
        padding: 1.25rem;
        gap: 1.2rem;
    }
    
    .info-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .info-card-content h3 {
        font-size: 1.05rem;
    }
    
    .info-card-content p {
        font-size: 0.92rem;
    }
    
    .map-container {
        min-height: 280px;
    }
}

/* Responsive para móviles muy pequeños */
@media (max-width: 480px) {
    .ubicacion-grid {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .ubicacion-info {
        gap: 0.85rem;
    }
    
    .info-card {
        padding: 0.95rem;
        gap: 0.85rem;
        flex-direction: row;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .info-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
        min-width: 48px;
        flex-shrink: 0;
    }
    
    .info-card-icon svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    .info-card-content {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .info-card-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
        white-space: normal;
        word-break: break-word;
    }
    
    .info-card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        white-space: normal;
        word-break: break-word;
    }
    
    .map-container {
        min-height: 220px;
    }
}

/* Extra pequeño - Protección ultra */
@media (max-width: 360px) {
    .ubicacion-grid {
        gap: 0.6rem;
        padding: 0 0.3rem;
    }
    
    .info-card {
        padding: 0.85rem;
        gap: 0.75rem;
    }
    
    .info-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        min-width: 44px;
    }
    
    .info-card-icon svg {
        width: 29px !important;
        height: 29px !important;
    }
    
    .info-card-content h3 {
        font-size: 0.88rem;
    }
    
    .info-card-content p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-navy);
    color: white;
    padding: 3rem 1.5rem 0rem;
    margin-top: 0;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer-brand p {
    opacity: 0.85;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.2rem auto;
    width: 90%;
}

/* ===== RESPONSIVE DESIGN - Mobile First ===== */
@media (max-width: 1024px) {
    .history-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-highlight {
        min-height: 380px;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .history-highlight {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .history-highlight h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.2rem;
    }
}

@media (max-width: 360px) {
    .history-highlight {
        padding: 1.2rem 0.8rem;
    }
    
    .history-highlight h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .history-stats {
        gap: 0.8rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(2rem, 5vw, 4rem);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 37, 64, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .catalog-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .catalog-image {
        height: 200px;
    }
    
    .catalog-content {
        padding: 1.3rem;
    }
    
    .catalog-title {
        font-size: 1.25rem;
    }
    
    .catalog-description {
        font-size: 0.88rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

/* ===== CALL BUTTON ===== */
.call-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.call-button.visible {
    opacity: 1;
    visibility: visible;
}

.call-button svg {
    width: 18px;
    height: 18px;
}

.call-button:hover {
    background: linear-gradient(135deg, #2A5A7C 0%, var(--color-navy-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10, 37, 64, 0.4);
}

.call-button:active {
    transform: translateY(-1px);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .call-button {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .call-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .call-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .call-button svg {
        width: 15px;
        height: 15px;
    }
    
    .catalog-image {
        height: 160px;
    }
    
    .catalog-content {
        padding: 1.1rem;
    }
    
    .catalog-title {
        font-size: 1.1rem;
    }
    
    .catalog-description {
        font-size: 0.8rem;
    }
    
    .catalog-badge {
        font-size: 0.68rem;
        padding: 0.28rem 0.75rem;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    background: white;
    border: 1px solid var(--color-gray-light);
    box-shadow: var(--shadow-medium);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: block;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
    z-index: 1001;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
    animation: cookie-banner-in 0.4s ease;
}

@keyframes cookie-banner-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner-content a:hover {
    color: var(--color-gold);
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.cookie-accept {
    background: var(--color-navy);
    color: white;
}

.cookie-accept:hover {
    background: var(--color-navy-light);
}

.cookie-reject {
    background: var(--color-gray-light);
    color: var(--color-text-dark);
}

.cookie-reject:hover {
    background: #d5d7db;
}

.cookie-config,
.cookie-secondary {
    background: white;
    border: 1px solid var(--color-gray-light);
    color: var(--color-text-dark);
}

.cookie-config:hover,
.cookie-secondary:hover {
    border-color: var(--color-navy-light);
    color: var(--color-navy);
}

.cookie-settings-button {
    margin-top: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.cookie-settings-button.visible {
    display: inline-flex;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 1.5rem;
}

.cookie-modal.open {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-navy);
}

.cookie-modal-close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-navy-light);
}

.cookie-modal-intro {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.cookie-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--color-off-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.cookie-option p {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    display: inline-flex;
    align-items: center;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 999px;
    transition: var(--transition-smooth);
}

.cookie-toggle-slider::before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-navy);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: var(--color-navy-light);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cookie-settings-button {
        margin-top: 0.6rem;
        font-size: 0.72rem;
    }

    .cookie-modal-content {
        padding: 1.25rem;
    }

    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== PROCESS/HOW IT WORKS SECTION ===== */
.process-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0.4rem;
    align-items: center;
    justify-content: space-between;
}

.process-card {
    background: transparent;
    padding: 1.7rem 1.05rem;
    border-radius: var(--border-radius);
    box-shadow: none;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    flex: 1;
    max-width: 270px;
}

.process-card:hover {
    transform: none;
    box-shadow: none;
}

.process-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.7rem;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.2);
}

.process-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: var(--color-navy);
}

.process-icon svg {
    width: 56px;
    height: 56px;
    stroke-width: 1.2;
}

.process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.7rem;
}

.process-description {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.5;
}

.process-arrow {
    color: var(--color-gold);
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.process-arrow svg {
    transition: transform 0.3s ease;
}

/* Responsive Process Grid */
@media (max-width: 1024px) {
    .process-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .process-card {
        max-width: calc(50% - 0.5rem);
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-card {
        max-width: 100%;
        padding: 1.4rem 1.05rem;
    }
    
    .process-number {
        font-size: 1.5rem;
    }
    
    .process-arrow {
        display: flex;
        min-width: 100%;
        padding: 0.5rem 0;
    }
    
    .process-arrow svg {
        transform: rotate(90deg);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gold {
    color: var(--color-gold);
}

.bg-navy {
    background: var(--color-navy);
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== BRANDS CAROUSEL ===== */
.brands-carousel-section {
    position: relative;
    padding-bottom: 2rem !important;
    padding-top: 3rem !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    border-radius: var(--border-radius);
    box-shadow: none;
    padding: 3rem 0;
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll-carousel 25s linear infinite;
    width: fit-content;
}

.carousel-image {
    height: clamp(50px, 8vw, 100px);
    width: auto;
    max-width: clamp(180px, 40vw, 600px);
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(0%) opacity(0.95);
    transition: var(--transition-smooth);
}

.carousel-image:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.02);
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-600px - 3rem));
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-track {
        animation-duration: 15s;
        gap: 2rem;
    }
    
    .carousel-image {
        height: clamp(65px, 14vw, 95px);
        max-width: clamp(200px, 65vw, 500px);
    }
    
    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-400px - 2rem));
        }
    }
}
