/*
═══════════════════════════════════════════════════════════════════
ALTEC ÉLECTRICITÉ - Stylesheet
Site One-Page Premium
═══════════════════════════════════════════════════════════════════
Charte couleurs :
- Bleu principal: #08215a
- Bleu secondaire: #014687
- Jaune: #fec800
- Beige clair: #ebe7e2
- Texte sombre: #1a1a2e
═══════════════════════════════════════════════════════════════════
*/

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #08215a;
    --color-secondary: #014687;
    --color-accent: #fec800;
    --color-light: #ebe7e2;
    --color-white: #ffffff;
    --color-text: #1a1a2e;
    --color-text-light: #5a5a6e;
    --font-main: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(8, 33, 90, 0.08);
    --shadow-md: 0 4px 16px rgba(8, 33, 90, 0.12);
    --shadow-lg: 0 8px 32px rgba(8, 33, 90, 0.16);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item a {
    color: var(--color-white);
}

.topbar-item a:hover {
    color: var(--color-accent);
}

.icon-small {
    width: 14px;
    height: 14px;
}

.topbar-zone {
    color: var(--color-accent);
    font-weight: 500;
}

@media (max-width: 767px) {
    .topbar-right {
        width: 100%;
        text-align: center;
    }
    
    .topbar-left {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: var(--color-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 36px;
}

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

.nav-link {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

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

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

.nav-link-cta {
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    padding: 0;
}

.burger span {
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid var(--color-light);
    }
    
    .nav-link-cta {
        margin-top: 12px;
        border-bottom: none;
    }
    
    .burger {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/bg.jpg') center center / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 33, 90, 0.12) 0%, rgba(1, 70, 135, 0.08) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 60px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(8, 33, 90, 0.8), 0 4px 24px rgba(8, 33, 90, 0.6);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(8, 33, 90, 0.8), 0 3px 16px rgba(8, 33, 90, 0.5);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(8, 33, 90, 0.8);
}

.icon-feature {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

@media (max-width: 767px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 40px 24px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-form {
    width: 100%;
    margin-top: 12px;
}

.btn-fixed-width {
    width: 100%;
    max-width: 180px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 33, 90, 0.08);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    padding: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
    stroke-width: 2;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.service-list li {
    padding: 6px 0 6px 16px;
    position: relative;
    line-height: 1.5;
    text-align: left;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2em;
}

/* ============================================
   ARGUMENTS SECTION
   ============================================ */
.arguments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.argument-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.argument-card:hover {
    box-shadow: var(--shadow-md);
}

.argument-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.argument-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    stroke-width: 2;
}

.argument-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.argument-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   À PROPOS SECTION
   ============================================ */
.apropos-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.apropos-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.apropos-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.apropos-info {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--color-light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.info-line {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-line:last-child {
    margin-bottom: 0;
}

.icon-inline {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-line a {
    color: var(--color-primary);
    font-weight: 500;
}

.info-line a:hover {
    color: var(--color-accent);
}

.info-line-address {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
    margin-bottom: 16px;
}

.address-text {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.address-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.address-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.address-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.address-link-waze {
    display: none;
}

@media (max-width: 991px) {
    .apropos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apropos-info {
        position: static;
    }
}

@media (max-width: 767px) {
    .address-link-waze {
        display: block;
    }
    
    .info-line-address {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .address-links {
        align-items: flex-start;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    stroke-width: 2;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(254, 200, 0, 0.1);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-box {
    background: var(--color-primary);
    padding: 36px;
    border-radius: 12px;
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.contact-info-item {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 6px;
}

.contact-info-item a {
    color: var(--color-accent);
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--color-white);
}

.contact-info-item em {
    font-size: 0.9rem;
    color: var(--color-white);
}

.contact-info-item span {
    color: var(--color-white);
}

.contact-info-item .icon-inline {
    stroke: var(--color-accent);
}

.contact-urgence {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.urgence-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgence-title .icon-inline {
    stroke: var(--color-accent);
}

.contact-urgence p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-urgence {
    width: 100%;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .contact-form {
        padding: 28px 20px;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.section-map {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 40vh;
    min-height: 280px;
    position: relative;
}

#map {
    width: 100%;
    height: 40vh;
    filter: grayscale(0%);
}

.custom-marker {
    background: transparent;
    border: none;
}

.leaflet-popup-content-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    margin: 16px;
    font-family: var(--font-main);
    line-height: 1.6;
}

.leaflet-popup-tip {
    background: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-tagline {
    opacity: 0.85;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-accent);
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin-bottom: 8px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-legal {
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE CALL BUTTON
   ============================================ */
.btn-call-mobile {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.btn-call-mobile:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(254, 200, 0, 0.4);
}

.btn-call-mobile svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    stroke-width: 2;
}

@media (max-width: 767px) {
    .btn-call-mobile {
        display: flex;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(254, 200, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(254, 200, 0, 0.6);
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(8, 33, 90, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

#cookieAccept {
    background: var(--color-accent);
    color: var(--color-primary);
}

@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content button {
        width: 100%;
    }
}

/* ============================================
   BUSINESS HOURS MODAL
   ============================================ */
.hours-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hours-modal.show {
    opacity: 1;
    visibility: visible;
}

.hours-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 33, 90, 0.75);
    backdrop-filter: blur(4px);
}

.hours-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.hours-modal.show .hours-modal-content {
    transform: scale(1);
}

.hours-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.hours-modal-text {
    color: var(--color-text-light);
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: center;
}

.hours-modal-text strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.hours-modal-text.vacation-message:empty {
    display: none;
}

.hours-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.hours-modal-buttons .btn {
    flex: 1;
}

.hours-modal-buttons .btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

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

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

@media (max-width: 767px) {
    .hours-modal-content {
        padding: 32px 24px;
    }
    
    .hours-modal-buttons {
        flex-direction: column;
    }
}

/* ============================================
   VACATION BANNER
   ============================================ */
.vacation-banner {
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
}
