/* GHOUSE Website Styles */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}


/* CSS Variables */
:root {
       /* ===== NOVA PALETA CORPORATIVA PROFISSIONAL 2024 ===== */
    
    /* Header/Footer - Solução Profissional */
    --header-bg: #990000;           /* Branco limpo - solução profissional padrão */
    --footer-bg: #990000;           /* Branco para consistência com header */
    
    /* Vermelho Estratégico - Apenas para Destaques */
    --primary-color: #990000;       /* Vermelho institucional - botões, CTAs, destaques */
    --secondary-color: #B5121B;     /* Vermelho hover - interações */
    --accent-color: #CC3333;        /* Vermelho suave - elementos secundários */
    
    /* Tipografia Profissional */
    --text-dark: #2C2C2C;           /* Texto principal - máximo contraste */
    --text-muted: #6C757D;          /* Texto secundário - legível mas suave */
    --text-light: #ADB5BD;          /* Labels, notas, texto terciário */
    --text-white: #FFFFFF;          /* Texto em fundos escuros */
    
    /* Fundos Corporativos */
    --bg-white: #FFFFFF;            /* Fundo principal limpo */
    --bg-light: #F8F9FA;            /* Secções alternadas - cinza muito claro */
    --bg-muted: #E9ECEF;            /* Cards, boxes - definição subtil */
    --bg-dark: #2F3349;             /* Fundos escuros (header/footer) */
    
    /* UI Estrutural */
    --border-color: #E1E5E9;        /* Bordas definidas mas suaves */
    --border-light: #F1F3F4;        /* Bordas muito subtis */
    --gray-ui: #6C757D;             /* Elementos UI neutros */
    
    /* Sombras Modernas */
    --shadow: 0 2px 12px rgba(47, 51, 73, 0.08);        /* Sombra baseada na cor principal */
    --shadow-hover: 0 6px 24px rgba(47, 51, 73, 0.12);  /* Sombra hover mais intensa */
    --shadow-strong: 0 4px 20px rgba(47, 51, 73, 0.15); /* Sombra para elementos importantes */

    
    /* Typography */
    --font-family: 'General Sans', 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0 !important;
    padding-top: 140px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    width: 100% !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
.header {
    background:     #54060A;
   
        
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 140px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
    
    box-shadow: var(--shadow-strong) !important;
}








.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    position: relative;
}

.logo-img {
    height: 120px !important;
    width: auto;
    margin-top: 10px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}


/* Mobile positioning - small screens */
@media (max-width: 991px) {
    .logo-img {
        margin-left: 20px !important;
        margin-top: 5px !important;
        height: 70px !important;
    }
    
    .logo {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .header {
        height: 80px !important;
    }
    
    .header-content {
        height: 80px !important;
        padding: 0 var(--spacing-sm);
        justify-content: flex-start;
    }
    
    body {
        padding-top: 80px !important;
    }
    
    /* Ensure logo is visible on mobile */
    .header-content .logo {
        position: relative;
        z-index: 1000;
        display: flex !important;
        visibility: visible !important;
    }
}

/* Desktop positioning - only for large screens */
@media (min-width: 992px) {
    .navigation {
        margin-left: -200px;
    }
    
    .logo-img {
        margin-left: -220px !important;
    }
}

/* Language selector positioning */
.language-selector {
    margin-right: -250px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
   
   color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.current-lang i {
    color: inherit;
}

.current-lang:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

 .lang-option .flag {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 22px;
     font-size: 0.85em;
     font-weight: 600;
     letter-spacing: 0.02em;
     color: inherit;
 }

.lang-option:hover,
.lang-option.active {
    background: var(--bg-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 6px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
    display: block;
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    position: absolute;
}

.mobile-menu-toggle.active span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Perfil Empresa Hero Image Fix */
.hero[style*="quemSomos1.jpg"] {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 100vh !important;
    margin-top: -80px !important;
    padding-top: 80px !important;
    position: relative !important;
}

/* Scroll Zoom Animation */
@keyframes scrollZoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.scroll-zoom {
    transform: scale(1);
    opacity: 1;
}

.scroll-zoom.animate {
    animation: scrollZoomIn 1.5s ease-out forwards;
}

/* Navigation */
.navigation {
   
    position: sticky;
    top: 80px;
    z-index: 999;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-xl);
    color: var(--bg-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 20px !important;
   
    }



/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Dropdown menu widths for specific items */
.navigation .nav-menu > li:nth-child(2) .dropdown-menu {
    min-width: 260px !important; /* QUEM SOMOS */
}

.navigation .nav-menu > li:nth-child(3) .dropdown-menu {
    min-width: 180px !important; /* FROTA */
}

.navigation .nav-menu > li:nth-child(4) .dropdown-menu {
    min-width: 280px !important; /* OUTROS INVESTIMENTOS */
}

.navigation .nav-menu > li:nth-child(5) .dropdown-menu {
    min-width: 180px !important; /* CONTACTOS */
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.4;
    border-bottom: 1px solid rgba(229, 229, 229, 0.3);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateX(3px);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 140px);
    min-height: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--text-white);
    border-color: var(--text-white);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: var(--font-size-3xl);
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: 6px;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-white);
    border: 1px solid white;
}

.btn-primary:hover {
     background: var(--text-white);
    color: var(--primary-color);

}

.btn-secondary {
    background: var(--accent-color);
    color: var(--text-white);
       border: 1px solid white;
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    text-align: justify;
    color: var(--text-dark);
    max-width: 890px;
    margin: 0 auto;
   
}

/* Services Section */
.services {
    padding-top: var(--spacing-3xl);
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.service-icon i {
    font-size: var(--font-size-2xl);
    color: var(--text-white);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.service-description {
    color: var(--text-light);
    font-size: var(--font-size-xl);
    line-height: 1.6;
}

/* Fleet Section */
.fleet {
    padding: var(--spacing-3xl) 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.fleet-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.fleet-image {
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-content {
    padding: var(--spacing-xl);
}

.fleet-name {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.fleet-description {
    color: var(--text-light);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.fleet-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fleet-link:hover {
    color: var(--primary-color);
}

.fleet-link i {
    transition: transform 0.3s ease;
}

.fleet-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.about-description {
    color: var(--text-light);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: #54060A;
      
   
    
    color: #ffffff;
    padding: var(--spacing-xs) 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
   
    margin: 0 !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg) var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.footer-left {
    flex: 1;
}

.footer-logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.footer-center {
    flex: 1;
    text-align: left;
    margin-left: -80px !important;
}

.footer-right {
    flex: 1;
    text-align: left;
}

.footer-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    margin-right: 250px;
    
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
   
    text-align: center;
}
.footer-bottom {
    padding: var(--spacing-xs) 0;
}
.footer-links-bottom {
    margin-bottom: var(--spacing-xs);
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: var(--font-size-xs);
    transition: color 0.3s ease;
}



.footer-links-bottom span {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 var(--spacing-xs);
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--font-size-xs);
    line-height: 1.4;
}

.footer-copyright a {
    color: white !important;
    text-decoration: none !important;
}

.footer-copyright p a {
    color: white !important;
    text-decoration: none !important;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #111111;
    color: #ffffff;
    padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: bottom 0.4s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept {
    background: #990000;
    color: white;
}

.cookie-accept:hover {
    background: #B5121B;
    transform: translateY(-1px);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-settings {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cookie-settings-footer {
    color: #ffffff;
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10001;
}

.cookie-settings-modal.open {
    display: block;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cookie-settings-dialog {
    position: relative;
    max-width: 720px;
    margin: 6vh auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 2.2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.cookie-settings-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: rgba(0,0,0,0.06);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.cookie-settings-dialog h2 {
    margin: 0 0 0.75rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.cookie-settings-text {
    margin: 0 0 1.5rem 0;
    color: #555;
    line-height: 1.6;
}

.cookie-settings-text a {
    color: #0b5ed7;
    text-decoration: none;
}

.cookie-settings-text a:hover {
    text-decoration: underline;
}

.cookie-settings-list {
    border-top: 1px solid #eee;
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cookie-setting-title {
    font-weight: 700;
    color: #111;
}

.cookie-setting-desc {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.cookie-setting-locked {
    opacity: 0.9;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Toggle switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #d0d0d0;
    transition: 0.2s;
    border-radius: 999px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cookie-switch input:checked + .cookie-slider {
    background-color: #990000;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

/* Google Maps blocked overlay */
.cookie-map-wrapper {
    position: relative;
}

.cookie-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    padding: 1.5rem;
}

.cookie-map-overlay-content {
    max-width: 520px;
    text-align: center;
    color: white;
}

.cookie-map-overlay-content p {
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-btn {
        min-width: 140px;
    }

    .cookie-settings-dialog {
        margin: 4vh 1rem;
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Mission Section */
.mission-section {
    background-color: #111111;
    padding-top: var(--spacing-3xl) ;
     padding-bottom: var(--spacing-lg) ;
    margin: 0 !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}



.mission-section .section-title {
    color: #ffffff;
}

.mission-section .section-subtitle {
    color: #ffffff;
}

/* Force full width sections */
.mission-section,
.footer {
    box-sizing: border-box !important;
}

.mission-section .container,
.footer-content,
.footer-bottom {
    box-sizing: border-box !important;
}
