/*
Theme Name: Gerstal Global Construct
Theme URI: https://gerstal.ro
Author: Gerstal Team
Author URI: https://gerstal.ro
Description: Tema custom pentru Gerstal Global Construct - instalații sanitare, termice și reparații rapide în București și Ilfov.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gerstal
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


/* Reset și variabile CSS */

:root {
    /* Color system per brief */
    --primary: #0E5EA8;
    --primary-dark: #0C4569;
    --secondary: #0C4569;
    --accent: #22B573;
    --bg-soft: #D9F1FF;
    --text-dark: #0F1320;
    --text-light: #64748B;
    --white: #ffffff;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    /* Elevation */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    /* Rounded corners 12–16px */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-full: 9999px;
    /* Motion */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Source Serif Pro', Georgia, Cambria, 'Times New Roman', Times, serif;
    --container-max: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 131px;
    /* Compensare pentru topbar (36px) + spațiu (11px) + header (100px) */
}

.bg-soft {
    background-color: var(--bg-soft);
}

.container,
.wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}


/* Butoane */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.cta-whatsapp {
    background: #1DA851 !important;
    border-color: #1DA851 !important;
    color: #fff !important
}

.cta-whatsapp:hover {
    background: #0F7A3A !important;
    border-color: #0F7A3A !important;
    color: #fff !important;
    transform: translateY(-2px)
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: #0A3650;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-accent:hover {
    background: #1a9a60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}


/* Animații */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateY(0)
    }
    40%,
    43% {
        transform: translateY(-10px)
    }
}

@keyframes grow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8
    }
    70% {
        transform: scale(0.9);
        opacity: 1
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px)
    }
    50% {
        transform: translateY(-10px)
    }
}

/* Careers Section Floating Animations */
@keyframes float1 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(15px) rotate(270deg);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) translateX(-10px) rotate(120deg);
    }
    66% {
        transform: translateY(-25px) translateX(5px) rotate(240deg);
    }
}

@keyframes float3 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    20% {
        transform: translateY(-18px) translateX(8px) rotate(72deg);
    }
    40% {
        transform: translateY(-8px) translateX(-12px) rotate(144deg);
    }
    60% {
        transform: translateY(-28px) translateX(3px) rotate(216deg);
    }
    80% {
        transform: translateY(-12px) translateX(18px) rotate(288deg);
    }
}

@keyframes float4 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-22px) translateX(-8px) rotate(180deg);
    }
}

@keyframes float5 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) translateX(6px) rotate(90deg);
    }
    50% {
        transform: translateY(-6px) translateX(-3px) rotate(180deg);
    }
    75% {
        transform: translateY(-18px) translateX(9px) rotate(270deg);
    }
}

@keyframes float6 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-14px) translateX(-7px) rotate(120deg);
    }
    66% {
        transform: translateY(-21px) translateX(4px) rotate(240deg);
    }
}

@keyframes float7 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    20% {
        transform: translateY(-16px) translateX(5px) rotate(72deg);
    }
    40% {
        transform: translateY(-7px) translateX(-9px) rotate(144deg);
    }
    60% {
        transform: translateY(-24px) translateX(2px) rotate(216deg);
    }
    80% {
        transform: translateY(-10px) translateX(13px) rotate(288deg);
    }
}

@keyframes float8 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(15px) rotate(270deg);
    }
}

@keyframes float9 {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) translateX(-12px) rotate(180deg);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(14, 94, 168, 0.3)
    }
    to {
        box-shadow: 0 0 20px rgba(14, 94, 168, 0.6), 0 0 30px rgba(14, 94, 168, 0.4)
    }
}

.animate-fade-in-up {
    animation: fadeInUp .6s ease-out
}

.animate-fade-in-left {
    animation: fadeInLeft .6s ease-out
}

.animate-fade-in-right {
    animation: fadeInRight .6s ease-out
}

.animate-slide-in-down {
    animation: slideInDown .4s ease-out
}

.animate-pulse {
    animation: pulse 2s infinite
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out
}

.animate-float {
    animation: float 3s ease-in-out infinite
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate
}

.animate-bounce {
    animation: bounce 1s infinite
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Gradient fade masks for hinting */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Hide fade masks when at start/end */
.carousel-container.at-start::before {
    opacity: 0;
}

.carousel-container.at-end::after {
    opacity: 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    position: relative;
}

.carousel-card {
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-card.active {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 15;
}

.carousel-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: translateY(-50%);
    opacity: 0.5;
}

.carousel-nav:disabled:hover {
    transform: translateY(-50%);
    background: #ccc;
}

/* Reviews Carousel Styles */
.reviews-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.reviews-carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.reviews-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
    width: 100%;
}

.review-card {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 350px;
    width: 100%;
    background: #f9fafb;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.reviews-carousel-prev,
.reviews-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.reviews-carousel-prev {
    left: 0;
}

.reviews-carousel-next {
    right: 0;
}

.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.reviews-carousel-prev:disabled,
.reviews-carousel-next:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: translateY(-50%);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .reviews-carousel-container {
        padding: 0 40px;
    }
    
    .review-card {
        min-width: 250px;
        max-width: 300px;
    }
    
    .reviews-carousel-prev,
    .reviews-carousel-next {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .reviews-carousel-prev {
        left: 5px;
    }
    
    .reviews-carousel-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-container {
        padding: 0 35px;
    }
    
    .review-card {
        min-width: 220px;
        max-width: 280px;
    }
    
    .reviews-carousel-prev,
    .reviews-carousel-next {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .reviews-carousel-prev {
        left: 2px;
    }
    
    .reviews-carousel-next {
        right: 2px;
    }
}


/* FAQ Styles */

.faq-section .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .faq-list .faq-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .faq-list .faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(14, 94, 168, 0.1);
    transform: translateY(-2px);
}

.faq-section .faq-list .faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.faq-section .faq-list .faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

.faq-section .faq-list .faq-question::after {
    content: '+';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 94, 168, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-section .faq-list .faq-item.active .faq-question::after {
    content: '−';
    background: var(--primary);
    color: white;
}

.faq-section .faq-list .faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0;
}

.faq-section .faq-list .faq-item .faq-answer {
    padding: 0 1.5rem;
}

.faq-section .faq-list .faq-item.active .faq-answer {
    padding: 1.5rem;
}

.faq-section .faq-list .faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(14, 94, 168, 0.15);
    transform: translateY(-2px);
}

.faq-section .faq-list .faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
}

@media (max-width: 768px) {
    .faq-section .faq-list .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    .faq-section .faq-list .faq-answer {
        padding: 0;
        font-size: 0.95rem;
    }
    .faq-section .faq-list .faq-item.active .faq-answer {
        padding: 1.25rem;
    }
    .faq-section .faq-list .faq-question::after {
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
    }
}


/* Header Styles */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    z-index: 1001;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    transform: translateY(0);
}

.topbar.hidden {
    transform: translateY(-100%);
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    gap: 1rem;
    max-width: none;
    width: 100%;
}

.topbar-left .emergency-text {
    font-weight: 600
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    text-decoration: none;
    font-size: .8125rem;
    padding: .25rem .5rem;
    border-radius: var(--border-radius);
    transition: var(--transition)
}

.topbar-link:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.login-link {
    font-size: .8125rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--border-radius);
    padding: .25rem .75rem
}

.site-header {
    position: fixed;
    top: 47px;
    /* Poziționat sub topbar cu spațiu optim */
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    width: 100%;
    transition: top 0.3s ease;
}

.site-header.topbar-hidden {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem
}

.site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    max-height: 80px;
}

.site-branding img,
.site-branding .logo-link img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-branding img:hover,
.site-branding .logo-link:hover img {
    animation: grow 0.3s ease-in-out;
    transform: scale(1.1);
}

#site-navigation {
    display: flex;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

.main-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}


/* Sectors Desktop - Original Grid Layout (No Carousel) */

.sectors-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.sectors-carousel-wrapper {
    overflow: visible;
    border-radius: 0;
}

.sectors-carousel {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 1.5rem !important;
    transition: none !important;
    width: auto !important;
    align-items: stretch !important;
}

.sector-slide {
    min-width: auto !important;
    flex-shrink: auto !important;
    width: auto !important;
    display: block !important;
    align-items: stretch !important;
    justify-content: stretch !important;
}

.carousel-arrow {
    display: none !important;
}

.carousel-dots {
    display: none !important;
}


/* Ilfov Desktop - Original Grid Layout (No Carousel) */

.ilfov-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.ilfov-carousel-wrapper {
    overflow: visible;
    border-radius: 0;
}

.ilfov-carousel {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
    transition: none !important;
    width: auto !important;
    align-items: stretch !important;
}

.ilfov-slide {
    min-width: auto !important;
    flex-shrink: auto !important;
    width: auto !important;
    display: block !important;
    align-items: stretch !important;
    justify-content: stretch !important;
}

.ilfov-carousel-arrow {
    display: none !important;
}

.ilfov-carousel-dots {
    display: none !important;
}


/* Desktop Navigation - Always visible */

@media (min-width: 1025px) {
    .main-navigation,
    .header-cta,
    .lang-dropdown {
        display: flex !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
    .site-logo-desktop {
        display: block !important;
    }
    .site-logo-mobile {
        display: none !important;
    }
    /* Sectors Desktop - Force Grid Layout */
    .sectors-carousel {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        gap: 1.5rem !important;
        transition: none !important;
        width: auto !important;
        align-items: stretch !important;
    }
    .sector-slide {
        min-width: auto !important;
        flex-shrink: auto !important;
        width: auto !important;
        display: block !important;
        align-items: stretch !important;
        justify-content: stretch !important;
    }
    .carousel-arrow {
        display: none !important;
    }
    .carousel-dots {
        display: none !important;
    }
    /* Ilfov Desktop - Force Grid Layout */
    .ilfov-carousel {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1.5rem !important;
        transition: none !important;
        width: auto !important;
        align-items: stretch !important;
    }
    .ilfov-slide {
        min-width: auto !important;
        flex-shrink: auto !important;
        width: auto !important;
        display: block !important;
        align-items: stretch !important;
        justify-content: stretch !important;
    }
    .ilfov-carousel-arrow {
        display: none !important;
    }
    .ilfov-carousel-dots {
        display: none !important;
    }
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700
}

.site-title a {
    color: var(--text-dark);
    text-decoration: none
}

.site-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


/* Logo Display Rules */

.site-logo-desktop {
    display: block;
}

.site-logo-mobile {
    display: none;
}

.site-logo:hover {
    animation: grow 0.3s ease-in-out;
    transform: scale(1.1);
}

.logo-link {
    display: inline-block;
    text-decoration: none
}

.hero-image {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #666;
    position: relative
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px
}


/* Romstal Logo Hover Effect */

.partnership-content a:hover img {
    transform: scale(1.05);
}


/* Footer CTA Call Button - White */

.cta-call-white {
    background-color: #fff !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.cta-call-white:hover {
    background-color: #60a5fa !important;
    color: #fff !important;
}


/* Contact Form Section */

.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 1rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #166534;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #15803d;
    margin: 0;
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-details .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details .contact-item div {
    flex: 1;
}

.contact-details .contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-details .contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-details .contact-item a:hover {
    text-decoration: underline;
}

.contact-details .contact-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}


/* FAQ CTA */

.faq-cta {
    margin-top: 2rem;
    text-align: center;
}

.faq-cta-content {
    background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    pointer-events: none;
}

.faq-cta-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.faq-cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.faq-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.faq-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-width: 120px;
    justify-content: center;
    font-size: 0.9rem;
}

.faq-cta-actions .btn-primary {
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
}

.faq-cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-cta-actions .btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-cta-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}


/* Zone deservite Section */

.zones-section {
    padding: 4rem 0;
    position: relative;
}


/* Water Bubbles for Cleaning Section */

.water-bubbles-left,
.water-bubbles-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 1;
}

.water-bubbles-left {
    left: -50px;
}

.water-bubbles-right {
    right: -50px;
}


/* Background Bubbles - Behind Content */

.background-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    top: 40%;
    left: 30%;
    animation-delay: 1s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.bubble-4 {
    width: 18px;
    height: 18px;
    top: 80%;
    left: 25%;
    animation-delay: 3s;
}

.bubble-5 {
    width: 12px;
    height: 12px;
    top: 10%;
    left: 50%;
    animation-delay: 4s;
}

.bubble-6 {
    width: 22px;
    height: 22px;
    top: 25%;
    right: 20%;
    animation-delay: 0.5s;
}

.bubble-7 {
    width: 16px;
    height: 16px;
    top: 45%;
    right: 10%;
    animation-delay: 1.5s;
}

.bubble-8 {
    width: 28px;
    height: 28px;
    top: 65%;
    right: 35%;
    animation-delay: 2.5s;
}

.bubble-9 {
    width: 14px;
    height: 14px;
    top: 85%;
    right: 15%;
    animation-delay: 3.5s;
}

.bubble-10 {
    width: 20px;
    height: 20px;
    top: 15%;
    right: 45%;
    animation-delay: 4.5s;
}

.bubble-11 {
    width: 16px;
    height: 16px;
    top: 35%;
    left: 5%;
    animation-delay: 5s;
}

.bubble-12 {
    width: 24px;
    height: 24px;
    top: 55%;
    left: 40%;
    animation-delay: 5.5s;
}

.bubble-13 {
    width: 13px;
    height: 13px;
    top: 75%;
    left: 8%;
    animation-delay: 6s;
}

.bubble-14 {
    width: 19px;
    height: 19px;
    top: 5%;
    left: 35%;
    animation-delay: 6.5s;
}

.bubble-15 {
    width: 17px;
    height: 17px;
    top: 90%;
    left: 45%;
    animation-delay: 7s;
}

.bubble-16 {
    width: 21px;
    height: 21px;
    top: 35%;
    right: 5%;
    animation-delay: 5.2s;
}

.bubble-17 {
    width: 15px;
    height: 15px;
    top: 55%;
    right: 40%;
    animation-delay: 5.7s;
}

.bubble-18 {
    width: 26px;
    height: 26px;
    top: 75%;
    right: 8%;
    animation-delay: 6.2s;
}

.bubble-19 {
    width: 18px;
    height: 18px;
    top: 5%;
    right: 35%;
    animation-delay: 6.7s;
}

.bubble-20 {
    width: 14px;
    height: 14px;
    top: 90%;
    right: 45%;
    animation-delay: 7.2s;
}


/* Background Bubbles - Behind Content */

.bubble-bg-1 {
    width: 12px;
    height: 12px;
    top: 10%;
    left: 15%;
    animation-delay: 1.5s;
}

.bubble-bg-2 {
    width: 18px;
    height: 18px;
    top: 25%;
    left: 25%;
    animation-delay: 2.8s;
}

.bubble-bg-3 {
    width: 14px;
    height: 14px;
    top: 40%;
    left: 10%;
    animation-delay: 3.2s;
}

.bubble-bg-4 {
    width: 16px;
    height: 16px;
    top: 60%;
    left: 20%;
    animation-delay: 4.1s;
}

.bubble-bg-5 {
    width: 20px;
    height: 20px;
    top: 80%;
    left: 15%;
    animation-delay: 5.3s;
}

.bubble-bg-6 {
    width: 13px;
    height: 13px;
    top: 15%;
    right: 20%;
    animation-delay: 1.8s;
}

.bubble-bg-7 {
    width: 17px;
    height: 17px;
    top: 30%;
    right: 15%;
    animation-delay: 2.5s;
}

.bubble-bg-8 {
    width: 15px;
    height: 15px;
    top: 45%;
    right: 25%;
    animation-delay: 3.7s;
}

.bubble-bg-9 {
    width: 19px;
    height: 19px;
    top: 65%;
    right: 10%;
    animation-delay: 4.6s;
}

.bubble-bg-10 {
    width: 11px;
    height: 11px;
    top: 85%;
    right: 20%;
    animation-delay: 5.8s;
}

.bubble-bg-11 {
    width: 22px;
    height: 22px;
    top: 20%;
    left: 50%;
    animation-delay: 2.2s;
}

.bubble-bg-12 {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 60%;
    animation-delay: 3.5s;
}

.bubble-bg-13 {
    width: 16px;
    height: 16px;
    top: 70%;
    left: 55%;
    animation-delay: 4.8s;
}

.bubble-bg-14 {
    width: 18px;
    height: 18px;
    top: 35%;
    right: 50%;
    animation-delay: 3.1s;
}

.bubble-bg-15 {
    width: 12px;
    height: 12px;
    top: 75%;
    right: 55%;
    animation-delay: 5.1s;
}

@keyframes bubbleFloat {
    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.5;
    }
}


/* Slow bounce animation for logos */

.logo-bounce-slow {
    animation: logoBounceSlow 4s ease-in-out infinite;
}

@keyframes logoBounceSlow {
    0%,
    100% {
        transform: rotate(-1deg) translateY(0px);
    }
    25% {
        transform: rotate(-1deg) translateY(-3px);
    }
    50% {
        transform: rotate(-1deg) translateY(-6px);
    }
    75% {
        transform: rotate(-1deg) translateY(-3px);
    }
}

.logo-bounce-slow:nth-child(2) {
    animation: logoBounceSlowReverse 4s ease-in-out infinite;
}

@keyframes logoBounceSlowReverse {
    0%,
    100% {
        transform: rotate(1deg) translateY(0px);
    }
    25% {
        transform: rotate(1deg) translateY(-3px);
    }
    50% {
        transform: rotate(1deg) translateY(-6px);
    }
    75% {
        transform: rotate(1deg) translateY(-3px);
    }
}


/* Careers Section */

.careers-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.careers-section .wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23667eea" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23764ba2" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%23667eea" opacity="0.1"/><circle cx="70" cy="30" r="1.5" fill="%23764ba2" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.careers-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 3;
}

/* Careers section on homepage - different layout (when it has careers-left and careers-right) */
.careers-section .careers-content:has(.careers-left):has(.careers-right) {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fallback for browsers that don't support :has() - target homepage specifically */
body.home .careers-section .careers-content,
body.front-page .careers-section .careers-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-left {
    text-align: center;
}

.careers-right {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.btn-careers {
    background: linear-gradient(135deg, #0e5ea8 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 94, 168, 0.3);
}

.btn-careers:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 94, 168, 0.4);
    color: white;
    text-decoration: none;
}

.btn-careers .btn-icon {
    transition: transform 0.3s ease;
}

.btn-careers:hover .btn-icon {
    transform: translateX(3px);
}


/* Job Menu */

.job-menu {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.job-menu-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.job-menu-header p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.job-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: flex-start;
}

.job-option {
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job-option:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-option.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.job-apply-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.job-apply-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.job-apply-section p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.apply-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apply-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.apply-buttons .btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.apply-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.apply-buttons .btn-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.apply-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.job-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.job-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}


/* Job Details */

.job-details {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
    align-self: flex-start;
}

.job-detail {
    display: none;
    animation: fadeInUp 0.5s ease;
    height: auto;
}

.job-detail.active {
    display: block;
}

.job-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.job-detail-icon {
    font-size: 3rem;
}

.job-detail-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.job-detail-title p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.job-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns for first row */
    grid-template-rows: auto auto;
    /* 2 rows */
    gap: 2rem;
}

.job-benefits,
.job-requirements,
.job-offer {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.job-requirements {
    border-left-color: #10b981;
}

.job-offer {
    border-left-color: #f59e0b;
    grid-column: 1 / -1;
    /* Span across both columns */
}

.job-benefits h4,
.job-requirements h4,
.job-offer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.job-benefits ul,
.job-requirements ul,
.job-offer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-benefits li,
.job-requirements li,
.job-offer li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Careers CTA */

.careers-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    margin-top: 4rem;
}

.careers-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.careers-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.careers-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.careers-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.careers-cta .btn-primary {
    background: #fff;
    color: #667eea;
}

.careers-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.careers-cta .btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.careers-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* Responsive Design */

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2.5rem 0;
    }
    .contact-form-section .section-header h2 {
        font-size: 2rem;
    }
    .contact-form-section {
        padding: 2rem 0 !important;
    }
    .contact-form-section .wrap > div[style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .contact-form-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .contact-left {
        text-align: center !important;
        width: 100% !important;
    }
    .contact-left h2 {
        font-size: 1.8rem !important;
        padding: 0.75rem 1rem !important;
        display: block !important;
        width: 100% !important;
    }
    .contact-left p {
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
        display: block !important;
        width: 100% !important;
    }
    .contact-left > div {
        width: 100% !important;
    }
    .form-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    .form-group {
        margin-bottom: 0.75rem !important;
        width: 100% !important;
    }
    .contact-form,
    .contact-info {
        padding: 1.5rem !important;
        width: 100% !important;
    }
    .contact-info {
        position: static !important;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .contact-form .form-row > div {
        width: 100% !important;
    }
    .faq-cta-content {
        padding: 1.25rem 1rem;
    }
    .faq-cta-content h3 {
        font-size: 1.2rem;
    }
    .faq-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .faq-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .faq-cta-actions .btn {
        width: 100%;
        max-width: 200px;
    }
    .zones-section {
        padding: 2.5rem 0;
    }
    .zones-section .section-header h2 {
        font-size: 2rem;
    }
    .zones-section .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .zones-section .info-card {
        position: static;
        padding: 2rem;
    }
    .zones-section .sectors-grid {
        gap: 1rem;
    }
    .zones-section .sector-card {
        padding: 1.25rem;
    }
    .zones-section .sector-card h4 {
        font-size: 1.1rem;
    }
    .zones-section .sector-card p {
        font-size: 0.85rem;
    }
    /* Hide water bubbles on mobile for better performance */
    .water-bubbles-left,
    .water-bubbles-right,
    .background-bubbles {
        display: none;
    }
}

.site-description {
    margin: 0;
    font-size: .875rem;
    color: var(--text-light)
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-start
}

.nav-menu li {
    list-style: none;
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    padding: .75rem .5rem;
    border-radius: var(--border-radius);
    transition: var(--transition)
}

.menu-link:hover {
    color: var(--primary);
    transform: translateY(-1px)
}

.menu-link .menu-text {
    font-weight: 600
}

/* Mega Menu Arrow */
.mega-arrow {
    font-size: 0.6rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-mega-menu:hover .mega-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Trigger */
.mega-trigger {
    position: relative;
}

/* Menu Item with Children */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a {
    position: relative;
    padding-right: 1.5rem;
}

/* Only show dropdown arrow for non-mega-menu items */
.menu-item-has-children:not(.has-mega-menu) > a::after {
    content: '▼';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children:not(.has-mega-menu):hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Sub Menu Styles */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sub-menu li {
    margin: 0;
    list-style: none;
}

.sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sub-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
}

/* Nested Sub Menus */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
}

.sub-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5rem;
    width: 0.5rem;
    height: 100%;
    background: transparent;
}

/* Language Dropdown */

.lang-dropdown {
    position: relative;
    display: inline-block
}

.current-lang {
    display: flex;
    align-items: center;
    gap: .5rem
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem .75rem;
    background: var(--bg-soft);
    border: 1px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: .875rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.lang-dropdown-toggle:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md)
}

.lang-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s
}

.lang-dropdown-toggle:hover::before {
    left: 100%
}

.dropdown-arrow {
    font-size: .75rem;
    transition: transform .3s ease
}

.lang-dropdown.open .dropdown-arrow {
    transform: rotate(180deg)
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: .5rem 0;
    margin: .5rem 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 1000
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-dropdown-menu li {
    margin: 0
}

.lang-dropdown-menu .lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: .875rem;
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: center
}

.lang-dropdown-menu .lang-option:hover {
    background: var(--gray-50);
    color: var(--primary)
}

.lang-dropdown-menu .lang-option.current {
    background: var(--primary);
    color: #fff
}

.lang-dropdown-menu .lang-option.current:hover {
    background: var(--primary-dark)
}


/* Flag Icons */

.flag-icon {
    display: inline-block;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-icon-ro {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='13.33' fill='%23003DA5'/%3E%3Crect y='13.33' width='60' height='13.33' fill='%23FFD100'/%3E%3Crect y='26.67' width='60' height='13.33' fill='%23CE1126'/%3E%3C/svg%3E");
}

.flag-icon-gb {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23012169'/%3E%3Cpath d='M0 0h60L0 40V0z' fill='%23FFFFFF'/%3E%3Cpath d='M0 0L60 40H0V0z' fill='%23FFFFFF'/%3E%3Cpath d='M0 0h60L0 40V0z' fill='%23C8102E'/%3E%3Cpath d='M0 0L60 40H0V0z' fill='%23C8102E'/%3E%3Cpath d='M30 0v40M0 20h60' stroke='%23FFFFFF' stroke-width='4'/%3E%3Cpath d='M30 0v40M0 20h60' stroke='%23C8102E' stroke-width='2.4'/%3E%3C/svg%3E");
}

.lang-name {
    flex: 1;
    font-weight: 500
}

.lang-code {
    font-size: .75rem;
    opacity: .7;
    font-weight: 600
}


/* Mobile offcanvas dropdowns - remove bullets globally */

.mobile-nav .mobile-accordion-content ul,
.mobile-nav .mobile-accordion-content li,
.mobile-nav .mobile-accordion-content details ul,
.mobile-nav .mobile-accordion-content details li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
}


/* Extra enforcement for any list markers inside offcanvas */

.mobile-nav .mobile-accordion-content li::marker {
    content: '' !important;
}

.mobile-nav .mobile-accordion-content li::before {
    content: none !important;
}

.mobile-menu,
.mobile-menu ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.mobile-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-menu .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0.5rem 0 0.5rem 1rem !important;
    margin: 0 !important;
    min-width: auto !important;
    pointer-events: auto !important;
}

.mobile-menu .sub-menu li {
    margin-bottom: 0.25rem !important;
}

.mobile-menu .sub-menu a {
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-200);
    border-left: 3px solid transparent;
}

.mobile-menu .sub-menu a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 0.75rem;
}

.mobile-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 2rem;
}

.mobile-menu .menu-item-has-children > a::after {
    content: '▼';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu .menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu .sub-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .menu-item-has-children.active > .sub-menu {
    display: block;
    max-height: 2000px;
}

.mobile-menu .sub-menu .menu-item-has-children > a::after {
    content: '▶';
    font-size: 0.5rem;
}

.mobile-menu .sub-menu .menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(90deg);
}

.has-mega-menu {
    position: static !important;
}

.has-mega-menu .mega-menu {
    position: absolute;
    top: calc(100% - 1px);
    /* slight overlap to avoid any gap */
    left: 0;
    right: 0;
    transform: none;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 1000;
    pointer-events: none
}


/* Hover bridge so menu doesn't close while moving cursor from trigger */

.has-mega-menu .mega-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    /* wider hover bridge */
    background: transparent;
    pointer-events: auto;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu,
.has-mega-menu .mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
}


/* Keep hover when moving from trigger to menu */

.has-mega-menu>.menu-link {
    position: relative;
}

.has-mega-menu>.menu-link::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -10px;
    height: 12px;
    /* larger hover corridor under trigger */
    background: transparent;
    pointer-events: auto;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 1rem;
    /* smaller spacing to fit 5 columns */
    max-width: none;
    margin: 0;
    padding: 0 1.5rem;
}

.mega-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem
}

.mega-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.mega-list li {
    margin-bottom: .5rem
}

.mega-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: .875rem;
    transition: var(--transition)
}

.mega-link:hover {
    color: var(--primary)
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto
}

.header-cta {
    display: flex;
    align-items: center;
    gap: .75rem
}

.header-cta .btn-primary {
    box-shadow: var(--shadow)
}

.header-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition)
}

@media(max-width:768px) {
    .main-navigation,
    .header-cta,
    .lang-dropdown {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow)
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible
}

.mobile-nav-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto
}

.mobile-nav-overlay.active .mobile-nav-container {
    transform: translateX(0)
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200)
}

.mobile-nav-brand .mobile-site-title {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark)
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light)
}

.mobile-nav-content {
    padding: 1rem
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0
}

.mobile-menu-item {
    margin-bottom: .5rem
}

.mobile-menu-link {
    display: block;
    padding: .75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100)
}

.mobile-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: .75rem 0;
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobile-accordion-content {
    display: none;
    padding-left: 1rem
}

.mobile-accordion.active .mobile-accordion-content {
    display: block
}

.mobile-accordion-section {
    margin-bottom: 1rem
}

.mobile-accordion-section h5 {
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .5rem
}

.mobile-accordion-section ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.mobile-accordion-section li {
    margin-bottom: .25rem
}

.mobile-accordion-section a {
    color: var(--text-light);
    text-decoration: none;
    font-size: .8125rem
}

.mobile-nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 2rem
}

.mobile-language-switcher .lang-dropdown {
    width: 100%
}

.mobile-language-switcher .lang-dropdown-toggle {
    width: 100%;
    justify-content: center;
    font-size: .8125rem
}

.mobile-language-switcher .lang-dropdown-menu {
    right: auto;
    left: 0;
    width: 100%;
    min-width: auto
}

.mobile-language-switcher .lang-dropdown-menu .lang-option {
    padding: 1rem;
    font-size: .875rem
}

.mobile-language-switcher .lang-name {
    font-size: 1rem
}

.mobile-login-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: .8125rem
}


/* Sticky Call Button */

.sticky-call-button {
    position: fixed;
    bottom: 4rem;
    right: 3rem;
    z-index: 1000;
    display: none
}

.sticky-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s infinite
}

.sticky-call-icon {
    font-size: 1.5rem
}

@media(max-width:768px) {
    .sticky-call-button {
        display: block
    }
}


/* Footer Styles */

.site-footer {
    background: var(--gray-900);
    color: #fff
}

.footer-cta {
    background: var(--primary);
    padding: 2rem 0
}

.footer-cta .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.cta-content h3 {
    margin: 0 0 .5rem;
    font-size: 1.5rem;
    font-weight: 700
}

.cta-content p {
    margin: 0;
    font-size: 1.125rem;
    opacity: .9
}

.cta-actions {
    display: flex;
    gap: 1rem
}

.footer-main {
    padding: 3rem 0
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}


/* Footer Columns Layouts */

.footer-2-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-3-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-4-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer-5-columns {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Tablet Layout for Footer Columns */

@media (max-width: 1024px) and (min-width: 769px) {
    .footer-3-columns,
    .footer-4-columns,
    .footer-5-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .footer-2-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .footer-4-columns,
    .footer-5-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.footer-brand {
    margin-bottom: 1rem
}

.footer-title {
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff
}

.footer-description {
    margin: 0 0 1.5rem;
    color: var(--gray-300);
    line-height: 1.6
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem
}

.contact-icon {
    font-size: 1.125rem;
    margin-top: .125rem
}

.contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition)
}

.contact-item a:hover {
    color: #fff
}

.footer-heading {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-menu li {
    margin-bottom: .5rem
}

.footer-menu a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: .875rem;
    transition: var(--transition)
}

.footer-menu a:hover {
    color: #fff
}

.social-links {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.5rem
}


/* Newsletter Section in Footer */

.newsletter-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-newsletter .btn-icon {
    font-size: 1rem;
}

.btn-newsletter .btn-text {
    font-weight: 600;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    color: #fff;
}

.social-link i {
    font-size: 18px;
    color: inherit;
}


/* Social Media Specific Colors on Hover */

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok:hover {
    background: #000;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.footer-links h5 {
    margin: 0 0 .75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff
}

.footer-bottom {
    background: var(--gray-800);
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-700)
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.copyright p {
    margin: 0;
    color: var(--gray-300);
    font-size: .875rem
}

.legal-menu-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.legal-menu-list a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: .8125rem;
    transition: var(--transition)
}

.legal-menu-list a:hover {
    color: #fff
}

.legal-bar {
    background: var(--gray-700);
    padding: 1rem 0
}

.legal-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.legal-links {
    display: flex;
    gap: 1rem
}

.legal-badge {
    display: inline-block;
}

.legal-badge img {
    border-radius: var(--border-radius);
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

.legal-badge:hover img,
.legal-badge:active img,
.legal-badge:focus img {
    animation: grow 0.3s ease-in-out;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .legal-badge img {
        max-width: 120px;
        height: auto;
    }
}

.company-details p {
    margin: 0;
    color: var(--gray-300);
    font-size: .8125rem;
    line-height: 1.4
}


/* Cookie Banner */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform .3s ease
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0
}

.cookie-text p {
    margin: 0;
    color: var(--text-dark);
    font-size: .875rem
}

.cookie-actions {
    display: flex;
    gap: .75rem
}


/* Mobile Optimizations */

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.btn,
.job-option,
.faq-question {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}


/* Hero Subtitle - Desktop Only */

@media (min-width: 1025px) {
    .hero-subtitle {
        font-size: 1.15rem !important;
    }
    /* Gerstal Cleaning Desktop - Spaces Served */
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child {
        padding: 1.25rem !important;
        border-radius: 12px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div {
        gap: 0.5rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div {
        padding: 0.4rem 0.6rem !important;
        border-radius: 8px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:first-child {
        font-size: 1rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:last-child {
        font-size: 0.8rem !important;
    }
}


/* Responsive */


/* Tablet Styles */

@media (max-width: 1024px) and (min-width: 769px) {
    /* Navigation Tablet - Keep visible */
    .main-navigation,
    .header-cta,
    .lang-dropdown {
        display: flex !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
    .site-logo-desktop {
        display: block !important;
    }
    .site-logo-mobile {
        display: none !important;
    }
    /* Sectors Tablet - Force Grid Layout */
    .sectors-carousel {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        gap: 1.5rem !important;
        transition: none !important;
        width: auto !important;
        align-items: stretch !important;
    }
    .sector-slide {
        min-width: auto !important;
        flex-shrink: auto !important;
        width: auto !important;
        display: block !important;
        align-items: stretch !important;
        justify-content: stretch !important;
    }
    .carousel-arrow {
        display: none !important;
    }
    .carousel-dots {
        display: none !important;
    }
    /* Ilfov Tablet - Force Grid Layout */
    .ilfov-carousel {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1.5rem !important;
        transition: none !important;
        width: auto !important;
        align-items: stretch !important;
    }
    .ilfov-slide {
        min-width: auto !important;
        flex-shrink: auto !important;
        width: auto !important;
        display: block !important;
        align-items: stretch !important;
        justify-content: stretch !important;
    }
    .ilfov-carousel-arrow {
        display: none !important;
    }
    .ilfov-carousel-dots {
        display: none !important;
    }
    /* Hero Section Tablet */
    .hero-section {
        padding: 3.5rem 0 !important;
    }
    .hero-section .wrap {
        gap: 3rem;
        grid-template-columns: 1fr 1fr !important;
    }
    .hero-content {
        max-width: 500px !important;
    }
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.25rem !important;
    }
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.75rem !important;
    }
    .hero-cta {
        gap: 0.75rem;
        flex-wrap: wrap !important;
    }
    .hero-cta .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.875rem !important;
        flex: 1;
        min-width: 140px;
        max-width: 200px;
    }
    .hero-image {
        max-width: 400px;
    }
    /* .hero-image img - Border radius removed */
    .partnership-content {
        gap: 3rem;
    }
    .partnership-stats {
        grid-template-columns: 1fr 1fr;
    }
    /* Partnership Section Tablet */
    .partnership-section {
        padding: 3rem 0 !important;
    }
    .partnership-content>div:nth-child(1) img {
        max-width: 250px !important;
    }
    .partnership-content>div:nth-child(2) h2 {
        font-size: 2.2rem !important;
    }
    .partnership-content>div:nth-child(2) p {
        font-size: 1.1rem !important;
    }
    .cleaning-content {
        gap: 3rem;
    }
    /* Gerstal Cleaning Tablet */
    .cleaning-section {
        padding: 3rem 0 !important;
    }
    .cleaning-content {
        max-width: 800px !important;
    }
    /* Header Row Tablet */
    .cleaning-content>div:first-child {
        gap: 1.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    .cleaning-content>div:first-child>div:first-child h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    .cleaning-content>div:first-child>div:first-child p {
        font-size: 0.9rem !important;
    }
    /* Equipment Icons Tablet */
    .cleaning-content>div:first-child>div:last-child>div {
        padding: 0.6rem !important;
    }
    .cleaning-content>div:first-child>div:last-child>div img {
        height: 1.8rem !important;
        max-width: 70px !important;
    }
    /* Main Content Card Tablet */
    .cleaning-content>div:nth-child(2) {
        padding: 1.5rem !important;
    }
    .cleaning-content>div:nth-child(2) h3 {
        font-size: 1.3rem !important;
    }
    .cleaning-content>div:nth-child(2) p {
        font-size: 0.9rem !important;
    }
    /* Benefits Grid Tablet */
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div {
        padding: 0.75rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div>div:first-child {
        width: 35px !important;
        height: 35px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div h4 {
        font-size: 0.85rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div p {
        font-size: 0.75rem !important;
    }
    /* Spaces Served Tablet */
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.6rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div {
        gap: 0.5rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div {
        padding: 0.4rem 0.6rem !important;
        border-radius: 8px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:first-child {
        font-size: 1rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:last-child {
        font-size: 0.8rem !important;
    }
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .careers-content {
        gap: 3rem;
    }
    /* Tablet Header */
    body {
        padding-top: 125px;
    }
    .site-header {
        top: 45px;
    }
    .site-header .wrap {
        justify-content: space-between !important;
    }
    /* Mobile Navigation Tablet */
    .mobile-nav-container {
        width: 300px !important;
    }
    .mobile-nav-header {
        padding: 1.25rem !important;
    }
    .mobile-nav-brand .mobile-site-title {
        font-size: 1.3rem !important;
    }
    .mobile-nav-content {
        padding: 1.25rem !important;
    }
    .mobile-menu-link {
        padding: 0.8rem 0 !important;
        font-size: 1rem !important;
    }
    .mobile-accordion-trigger {
        padding: 0.8rem 0 !important;
        font-size: 1rem !important;
    }
    .mobile-cta .btn {
        padding: 0.8rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    /* Tablet Sections */
    .section-header h2 {
        font-size: 2.2rem;
    }
    .contact-form-section {
        padding: 4rem 0;
    }
    .careers-section {
        padding: 4rem 0;
    }
    .zones-section {
        padding: 3.5rem 0;
    }
}

@media (max-width:768px) {
    .container,
    .wrap {
        padding: 0 .75rem
    }
    .btn {
        padding: .625rem 1.25rem;
        font-size: .8125rem
    }
    /* Header Mobile */
    body {
        padding-top: 70px;
        /* Redus pentru mobile - fără topbar */
    }
    .topbar {
        display: none !important;
        /* Ascunde topbar pe mobile */
    }
    .site-header {
        top: 0 !important;
        /* Header direct sus pe mobile */
    }
    .site-header .wrap {
        padding: .75rem 1rem;
        justify-content: space-between !important;
    }
    .site-header.topbar-hidden {
        top: 0 !important;
    }
    .site-logo img {
        max-height: 35px;
        /* Logo mai mic pe mobile */
    }
    .site-logo-desktop {
        display: none !important;
    }
    .site-logo-mobile {
        display: block !important;
    }
    /* Mobile Navigation Improvements */
    .mobile-nav-container {
        width: 280px !important;
    }
    .mobile-nav-header {
        padding: 1rem !important;
    }
    .mobile-nav-brand .mobile-site-title {
        font-size: 1.2rem !important;
    }
    .mobile-nav-content {
        padding: 1rem !important;
    }
    .mobile-menu-link {
        padding: 0.75rem 0 !important;
        font-size: 0.95rem !important;
    }
    .mobile-accordion-trigger {
        padding: 0.75rem 0 !important;
        font-size: 0.95rem !important;
    }
    .mobile-cta .btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    /* Hero Section Mobile */
    .hero-section {
        padding: 2.5rem 0 !important;
    }
    .hero-section .wrap {
        display: flex !important;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        grid-template-columns: none !important;
    }
    .hero-content {
        max-width: 100% !important;
        order: 2;
    }
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    .hero-title br {
        display: none;
        /* Hide line breaks on mobile */
    }
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
    }
    .hero-cta {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        flex-wrap: nowrap !important;
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
        justify-content: center;
    }
    .hero-cta .btn-icon {
        margin-right: 0.5rem;
    }
    .hero-image {
        display: none !important;
    }
    .hero-mobile-bg {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        z-index: 0;
        min-height: 100%;
        min-width: 100%;
    }
    .hero-section {
        position: relative !important;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(1px) brightness(0.7);
        z-index: 1;
    }
    .hero-section .wrap {
        position: relative;
        z-index: 10;
    }
    .hero-title {
        color: #fff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    }
    .hero-subtitle {
        color: #fff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    }
    /* Partnership Section Mobile */
    .partnership-section {
        padding: 2rem 0 !important;
    }
    .partnership-content {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto auto !important;
        gap: 1rem !important;
        text-align: center;
        max-width: 100% !important;
    }
    /* Partnership Stats Mobile - Keep 2 columns */
    .partnership-stats {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        max-width: 100% !important;
        justify-content: center !important;
    }
    .stat-card {
        flex: 1 !important;
        padding: 1.5rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    /* Title and Description Mobile - First */
    .partnership-content>div:nth-child(2) {
        order: 1;
        text-align: center !important;
    }
    /* Romstal Logo Mobile - Second */
    .partnership-content>div:nth-child(1) {
        order: 2;
        padding: 0 !important;
    }
    .partnership-content>div:nth-child(1)>div {
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
    .partnership-content>div:nth-child(1) img {
        max-width: 320px !important;
    }
    .partnership-content>div:nth-child(2) h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        font-weight: 800 !important;
    }
    .partnership-content>div:nth-child(2) p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }
    /* Stats Mobile */
    .partnership-content>div:nth-child(3) {
        order: 3;
        gap: 1.5rem !important;
    }
    .partnership-content>div:nth-child(3)>div:first-child {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    .partnership-content>div:nth-child(3)>div:first-child>div {
        padding: 1.5rem 1rem !important;
    }
    .partnership-content>div:nth-child(3)>div:first-child>div>div:first-child {
        font-size: 2rem !important;
    }
    .partnership-content>div:nth-child(3)>div:first-child>div>div:last-child {
        font-size: 0.8rem !important;
    }
    .partnership-content>div:nth-child(3)>div:last-child {
        padding: 1rem !important;
        max-width: 100% !important;
    }
    .partnership-content>div:nth-child(3)>div:last-child p {
        font-size: 0.9rem !important;
    }
    /* Benefits Mobile */
    .partnership-content>div:nth-child(4) {
        order: 4;
    }
    .partnership-content>div:nth-child(4)>div {
        gap: 1rem !important;
    }
    .partnership-content>div:nth-child(4)>div>div {
        padding: 1.5rem 1rem !important;
        text-align: center !important;
    }
    .partnership-content>div:nth-child(4)>div>div h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    .partnership-content>div:nth-child(4)>div>div p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    /* Zone Deservite Mobile */
    .zones-section h2 {
        font-size: 1.8rem !important;
    }
    .zones-section p {
        font-size: 0.9rem !important;
    }
    /* Municipiul București Mobile - Same size as Zone Deservite */
    .zones-section h3 {
        font-size: 1.8rem !important;
    }
    .zones-section h3+p {
        font-size: 0.9rem !important;
    }
    /* Make zones section vertical on mobile */
    .zones-section div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    /* Sectors Carousel Mobile */
    .sectors-carousel-container {
        position: relative !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 50px !important;
    }
    .sectors-carousel-wrapper {
        overflow: hidden !important;
        border-radius: 16px !important;
        width: 100% !important;
    }
    .sectors-carousel {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        transition: transform 0.5s ease-in-out !important;
        align-items: center !important;
        width: 600% !important;
    }
    .sector-slide {
        min-width: 16.666% !important;
        width: 16.666% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem !important;
    }
    .carousel-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: var(--primary) !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        cursor: pointer !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease !important;
        z-index: 10 !important;
    }
    .carousel-arrow:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    .carousel-prev {
        left: 5px !important;
    }
    .carousel-next {
        right: 5px !important;
    }
    .carousel-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 1.5rem !important;
    }
    .carousel-dots .dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background: #ddd !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    .carousel-dots .dot.active {
        background: var(--primary) !important;
    }
    .carousel-dots .dot:hover {
        background: var(--primary) !important;
        transform: scale(1.2) !important;
    }
    /* Ilfov Carousel Mobile */
    .ilfov-carousel-container {
        position: relative !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 50px !important;
    }
    .ilfov-carousel-wrapper {
        overflow: hidden !important;
        border-radius: 16px !important;
        width: 100% !important;
    }
    .ilfov-carousel {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        transition: transform 0.5s ease-in-out !important;
        align-items: center !important;
        width: 200% !important;
    }
    .ilfov-slide {
        min-width: 50% !important;
        width: 50% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem !important;
    }
    .ilfov-carousel-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: var(--primary) !important;
        color: white !important;
        border: none !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        cursor: pointer !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease !important;
        z-index: 10 !important;
    }
    .ilfov-carousel-arrow:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    .ilfov-carousel-prev {
        left: 5px !important;
    }
    .ilfov-carousel-next {
        right: 5px !important;
    }
    .ilfov-carousel-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 1.5rem !important;
    }
    .ilfov-carousel-dots .ilfov-dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background: #ddd !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    .ilfov-carousel-dots .ilfov-dot.active {
        background: var(--primary) !important;
    }
    .ilfov-carousel-dots .ilfov-dot:hover {
        background: var(--primary) !important;
        transform: scale(1.2) !important;
    }
}


/* Mobile Call Button - Ascunde pe desktop/tablet */

.mobile-call-button {
    display: none !important;
}


/* Zones Mobile Call Button - Ascunde pe desktop/tablet */

.zones-mobile-call-button {
    display: none !important;
}


/* Desktop/Tablet - Afișează butonul din box */

@media (min-width: 1025px),
(max-width: 1024px) and (min-width: 769px) {
    .zones-section div[style*="text-align: center; margin-top: 3rem;"]>div a {
        display: inline-flex !important;
    }
    /* Desktop Equipment Icons - Afișează pe desktop */
    .desktop-equipment-icons {
        display: flex !important;
    }
    /* Mobile Side Logos - Ascunde pe desktop */
    .mobile-side-logos {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Ilfov Zone Rezidențiale - Text mai mic pe mobile */
    .ilfov-slide:nth-child(2) h4 {
        font-size: 1.15rem !important;
    }
    .ilfov-slide:nth-child(2) p {
        font-size: 0.8rem !important;
    }
    /* Bottom CTA Mobile - Ascunde butonul și reduce înălțimea */
    .zones-section div[style*="text-align: center; margin-top: 3rem;"] {
        margin-top: 2rem !important;
    }
    .zones-section div[style*="text-align: center; margin-top: 3rem;"]>div {
        padding: 0.8rem 1.5rem !important;
        max-width: 500px !important;
    }
    .zones-section div[style*="text-align: center; margin-top: 3rem;"]>div a {
        display: none !important;
    }
    /* Mobile Call Button - Afișează butonul separat pe mobile */
    .mobile-call-button {
        display: block !important;
    }
    /* Zones Mobile Call Button - Afișează butonul sub zone deservite pe mobile */
    .zones-mobile-call-button {
        display: block !important;
    }
    /* Gerstal Cleaning Mobile */
    .cleaning-section {
        padding: 2rem 0 !important;
    }
    .cleaning-content {
        max-width: 100% !important;
        padding: 0;
    }
    /* Header Row Mobile */
    .cleaning-content>div:first-child {
        position: relative !important;
        flex-direction: row !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .cleaning-content>div:first-child>div:first-child {
        flex: 1 !important;
        min-width: auto !important;
        text-align: center !important;
        position: relative !important;
        z-index: 2 !important;
        transform: scale(0.9);
        transform-origin: center center;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .cleaning-content>div:first-child>div:first-child h2 {
        font-size: 1.8rem !important;
        /* even larger title on mobile */
        margin-bottom: 0.32rem !important;
        line-height: 1.2 !important;
    }
    .cleaning-content>div:first-child>div:first-child p {
        font-size: 1.1rem !important;
        /* even larger subtitle on mobile */
        line-height: 1.4 !important;
    }
    /* Mobile Side Logos - Afișează logo-urile în laterale */
    .mobile-side-logos {
        display: none !important;
    }
    .mobile-logo-left,
    .mobile-logo-right {
        display: none !important;
    }
    .mobile-logo-left {
        position: absolute !important;
        left: -10px !important;
        top: 8px !important;
        transform: rotate(-8deg) !important;
        opacity: 0.95 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 8px !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .mobile-logo-right {
        position: absolute !important;
        right: -10px !important;
        top: 8px !important;
        transform: rotate(8deg) !important;
        opacity: 0.95 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 8px !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .mobile-logo-left img,
    .mobile-logo-right img {
        height: 40px !important;
        max-width: 60px !important;
    }
    /* Cleaning header text sizes on mobile */
    .cleaning-content>div:first-child h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.3rem !important;
        text-align: center !important;
    }
    .cleaning-content>div:first-child p {
        font-size: 1.1rem !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }
    /* Desktop Equipment Icons - Ascunde pe mobile */
    .desktop-equipment-icons {
        display: none !important;
    }
    /* Main Content Card Mobile */
    .cleaning-content>div:nth-child(2) {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    .cleaning-content>div:nth-child(2) h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    .cleaning-content>div:nth-child(2) p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }
    /* Benefits and Spaces Grid Mobile */
    .cleaning-content .benefits-spaces-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    /* Benefits Grid Mobile - First */
    .cleaning-content .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        order: 1 !important;
    }
    /* Spaces Served Mobile - Second */
    .cleaning-content .spaces-served {
        order: 2 !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div {
        padding: 0.6rem !important;
        border-radius: 8px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div>div:first-child {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0.4rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div>div:first-child span {
        font-size: 1rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
    /* Spaces Served Mobile */
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child {
        padding: 0.75rem !important;
        border-radius: 10px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div {
        gap: 0.4rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div {
        padding: 0.3rem 0.5rem !important;
        border-radius: 6px !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:first-child {
        font-size: 0.9rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:last-child {
        font-size: 0.75rem !important;
    }
    /* Final Message Mobile */
    .cleaning-content>div:nth-child(2)>div:last-child+div {
        padding: 0.6rem !important;
        border-radius: 8px !important;
        margin-top: 0.75rem !important;
    }
    .cleaning-content>div:nth-child(2)>div:last-child+div p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    /* Zone deservite Mobile */
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .zone-card {
        padding: 1rem;
    }
    .zone-card h4 {
        font-size: 1rem;
    }
    .zone-card p {
        font-size: 0.75rem;
    }
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* FAQ Mobile */
    .faq-item {
        margin-bottom: 1rem;
    }
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    .faq-answer {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .faq-cta {
        padding: 1.5rem;
        text-align: center;
    }
    .faq-cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .faq-cta-actions .btn {
        width: 100%;
    }
    /* Hide water bubbles on mobile */
    .water-bubbles-left,
    .water-bubbles-right,
    .background-bubbles {
        display: none;
    }
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    .section-header p {
        font-size: 1rem !important;
    }
    /* Contact Form Section Mobile */
    .contact-form-section {
        padding: 3rem 0;
    }
    .contact-form-section .section-header {
        margin-bottom: 2rem;
    }
    .contact-form-section .section-header h2 {
        font-size: 1.8rem;
    }
    /* Careers Section Mobile */
    .careers-section {
        padding: 3rem 0;
    }
    .careers-section .wrap {
        padding: 0 1rem;
    }
    .careers-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .careers-left {
        text-align: center;
    }
    .careers-title {
        font-size: 2rem;
    }
    .careers-subtitle {
        font-size: 1rem;
    }
    .job-menu {
        position: static;
        padding: 1.5rem;
        height: auto;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .06);
        border-radius: 12px;
    }
    .job-details {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .06);
        border-radius: 12px;
        padding: 1.5rem;
        height: auto;
    }
    .job-detail-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    /* Sticky Call Button Mobile */
    .sticky-call-button {
        bottom: 2.5rem;
        right: 2rem;
        width: 60px;
        height: 60px;
    }
    .sticky-call-button i {
        font-size: 1.2rem;
    }
    /* Careers Offcanvas styles */
    .offcanvas-header {
        padding: .75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, .06);
    }
    .offcanvas-title {
        margin: 0;
        font-size: 1.1rem;
    }
    .offcanvas-subtitle {
        margin: .25rem 0 0;
        color: var(--text-light);
        font-size: .9rem;
    }
    .offcanvas-body .job-requirements,
    .offcanvas-body .job-benefits,
    .offcanvas-body .job-offer {
        margin-bottom: 1rem;
    }
    .offcanvas-body ul {
        margin: 0;
        padding-left: 0;
    }
    /* Text and Spacing Mobile */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.3;
    }
    p {
        line-height: 1.5;
    }
    /* Form Elements Mobile */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    /* Better touch targets */
    .btn,
    .job-option,
    .faq-question {
        min-height: 44px;
        min-width: 44px;
    }
    .footer-cta .wrap {
        flex-direction: column;
        text-align: center
    }
    .cta-actions {
        justify-content: center
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center
    }
    .footer-2-columns,
    .footer-3-columns,
    .footer-4-columns,
    .footer-5-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Center "Urmărește-ne" section on mobile */
    .footer-column:last-child {
        text-align: center;
    }
    .footer-column:last-child .footer-heading {
        text-align: center;
    }
    .footer-column:last-child .social-links {
        justify-content: center;
    }
    .newsletter-section {
        margin-top: 1rem;
        padding-top: 1rem;
        text-align: center;
    }
    .newsletter-title {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .newsletter-title {
        font-size: 0.9rem;
    }
    .newsletter-description {
        font-size: 0.8rem;
    }
    .btn-newsletter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    .careers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .job-menu {
        position: static;
        padding: 1.5rem;
        height: auto;
    }
    .job-details {
        padding: 1.5rem;
        height: auto;
        display: none;
        /* hide inline details on mobile; use offcanvas */
    }
    .job-detail-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .careers-cta {
        padding: 2rem 1.5rem;
    }
    .careers-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .careers-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .careers-section .wrap {
        padding: 0 1rem;
    }
    .careers-content {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    .job-menu {
        height: auto;
        position: static;
    }
    .job-details {
        height: auto;
    }
    .job-detail {
        height: auto;
    }
    .job-options {
        justify-content: flex-start;
    }
    .legal-bar-content {
        flex-direction: column;
        text-align: center
    }
    .legal-links {
        justify-content: center
    }
    .cookie-content {
        flex-direction: column;
        text-align: center
    }
    .cookie-actions {
        justify-content: center
    }
}


}
@media (max-width:480px) {
    .container,
    .wrap {
        padding: 0 .5rem
    }
    
    .btn {
        padding: .5rem 1rem;
        font-size: .75rem
    }
    
    .mobile-nav-container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .mobile-nav-header {
        padding: 0.75rem !important;
    }
    
    .mobile-nav-brand .mobile-site-title {
        font-size: 1.1rem !important;
    }
    
    .mobile-nav-content {
        padding: 0.75rem !important;
    }
    
    .mobile-menu-link {
        padding: 0.6rem 0 !important;
        font-size: 0.9rem !important;
    }
    /* Mobile offcanvas (burger) – remove list bullets inside dropdowns */
    
    .mobile-nav .mobile-accordion-content ul,
    .mobile-nav .mobile-accordion-content li,
    .mobile-nav .mobile-accordion-content details ul,
    .mobile-nav .mobile-accordion-content details li {
        list-style-type: none !important;
        list-style: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .mobile-accordion-trigger {
        padding: 0.6rem 0 !important;
        font-size: 0.9rem !important;
    }
    /* Header Extra Small Mobile */
    
    body {
        padding-top: 60px;
        /* Și mai redus pentru extra small - fără topbar */
    }
    
    .topbar {
        display: none !important;
        /* Ascunde topbar pe extra small mobile */
    }
    
    .site-header {
        top: 0 !important;
        /* Header direct sus pe extra small mobile */
    }
    
    .site-header .wrap {
        padding: .5rem .75rem;
        justify-content: space-between !important;
    }
    
    .site-logo img {
        max-height: 30px;
        /* Logo și mai mic */
    }
    
    .site-logo-desktop {
        display: none !important;
    }
    
    .site-logo-mobile {
        display: block !important;
    }
    /* Hero Section Extra Small Mobile */
    
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .hero-section .wrap {
        gap: 1.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-cta {
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .hero-cta .btn-icon {
        margin-right: 0.4rem;
        font-size: 0.9rem;
    }
    
    .hero-image {
        display: none !important;
    }
    
    .hero-mobile-bg {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        z-index: 0;
        min-height: 100%;
        min-width: 100%;
    }
    
    .hero-section {
        position: relative !important;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(1px) brightness(0.7);
        z-index: 1;
    }
    
    .hero-section .wrap {
        position: relative;
        z-index: 10;
    }
    
    .hero-title {
        color: #fff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    }
    
    .hero-subtitle {
        color: #fff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    }
    /* Partnership Section Extra Small Mobile */
    
    .partnership-section {
        padding: 1.5rem 0 !important;
    }
    
    .partnership-content {
        gap: 0.75rem !important;
    }
    /* Partnership Stats Extra Small Mobile - Keep 2 columns */
    
    .partnership-stats {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
        justify-content: center !important;
    }
    
    .stat-card {
        flex: 1 !important;
        padding: 1.25rem 0.75rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    /* Title Extra Small - First */
    
    .partnership-content>div:nth-child(2) {
        order: 1 !important;
    }
    
    .partnership-content>div:nth-child(2) h2 {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
    }
    /* Romstal Logo Extra Small - Second */
    
    .partnership-content>div:nth-child(1) {
        order: 2 !important;
    }
    
    .partnership-content>div:nth-child(1)>div {
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        max-width: none !important;
    }
    
    .partnership-content>div:nth-child(1) img {
        max-width: 260px !important;
    }
    
    .partnership-content>div:nth-child(2) p {
        font-size: 0.75rem !important;
        max-width: 85% !important;
        margin: 0 auto !important;
    }
    /* Stats Extra Small */
    
    .partnership-content>div:nth-child(3)>div:first-child {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .partnership-content>div:nth-child(3)>div:first-child>div {
        padding: 1rem 0.75rem !important;
    }
    
    .partnership-content>div:nth-child(3)>div:first-child>div>div:first-child {
        font-size: 1.8rem !important;
    }
    
    .partnership-content>div:nth-child(3)>div:first-child>div>div:last-child {
        font-size: 0.75rem !important;
    }
    
    .partnership-content>div:nth-child(3)>div:last-child {
        padding: 0.75rem !important;
    }
    
    .partnership-content>div:nth-child(3)>div:last-child p {
        font-size: 0.8rem !important;
    }
    /* Benefits Extra Small */
    
    .partnership-content>div:nth-child(4)>div {
        gap: 0.75rem !important;
    }
    
    .partnership-content>div:nth-child(4)>div>div {
        padding: 1rem 0.75rem !important;
    }
    
    .partnership-content>div:nth-child(4)>div>div h4 {
        font-size: 1rem !important;
    }
    
    .partnership-content>div:nth-child(4)>div>div p {
        font-size: 0.8rem !important;
    }
    /* Zone Deservite Extra Small Mobile */
    
    .zones-section h2 {
        font-size: 1.5rem !important;
    }
    
    .zones-section p {
        font-size: 0.8rem !important;
    }
    /* Municipiul București Extra Small Mobile - Same size as Zone Deservite */
    
    .zones-section h3 {
        font-size: 1.5rem !important;
    }
    
    .zones-section h3+p {
        font-size: 0.8rem !important;
    }
    /* Make zones section vertical on extra small mobile */
    
    .zones-section div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    /* Sectors Carousel Extra Small Mobile */
    
    .sectors-carousel-container {
        padding: 0 40px !important;
    }
    
    .sectors-carousel {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        align-items: center !important;
        width: 600% !important;
    }
    
    .sector-slide {
        min-width: 16.666% !important;
        width: 16.666% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.75rem !important;
    }
    
    .carousel-arrow {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
    
    .carousel-prev {
        left: 2px !important;
    }
    
    .carousel-next {
        right: 2px !important;
    }
    
    .carousel-dots {
        gap: 6px !important;
        margin-top: 1rem !important;
    }
    
    .carousel-dots .dot {
        width: 10px !important;
        height: 10px !important;
    }
    /* Ilfov Carousel Extra Small Mobile */
    
    .ilfov-carousel-container {
        padding: 0 40px !important;
    }
    
    .ilfov-carousel {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        align-items: center !important;
        width: 200% !important;
    }
    
    .ilfov-slide {
        min-width: 50% !important;
        width: 50% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.75rem !important;
    }
    
    .ilfov-carousel-arrow {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
    
    .ilfov-carousel-prev {
        left: 2px !important;
    }
    
    .ilfov-carousel-next {
        right: 2px !important;
    }
    
    .ilfov-carousel-dots {
        gap: 6px !important;
        margin-top: 1rem !important;
    }
    
    .ilfov-carousel-dots .ilfov-dot {
        width: 10px !important;
        height: 10px !important;
    }
    /* Ilfov Zone Rezidențiale - Text mai mic pe extra small mobile */
    
    .ilfov-slide:nth-child(2) h4 {
        font-size: 1.1rem !important;
    }
    
    .ilfov-slide:nth-child(2) p {
        font-size: 0.75rem !important;
    }
    /* Bottom CTA Extra Small Mobile - Ascunde butonul și reduce înălțimea */
    
    .zones-section div[style*="text-align: center; margin-top: 3rem;"] {
        margin-top: 2.5rem !important;
    }
    
    .zones-section div[style*="text-align: center; margin-top: 3rem;"]>div {
        padding: 0.6rem 1.2rem !important;
        max-width: 450px !important;
    }
    
    .zones-section div[style*="text-align: center; margin-top: 3rem;"]>div a {
        display: none !important;
    }
    /* Mobile Call Button - Afișează butonul separat pe extra small mobile */
    
    .mobile-call-button {
        display: block !important;
    }
    /* Zones Mobile Call Button - Afișează butonul sub zone deservite pe extra small mobile */
    
    .zones-mobile-call-button {
        display: block !important;
    }
    /* Gerstal Cleaning Extra Small Mobile */
    
    .cleaning-section {
        padding: 1.5rem 0 !important;
    }
    
    .cleaning-content {
        padding: 0;
    }
    /* Header Row Extra Small */
    
    .cleaning-content>div:first-child {
        gap: 0.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cleaning-content>div:first-child>div:first-child h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .cleaning-content>div:first-child>div:first-child p {
        font-size: 0.9rem !important;
    }
    /* Mobile Side Logos - Extra Small */
    
    .mobile-logo-left img {
        height: 35px !important;
        max-width: 50px !important;
    }
    
    .mobile-logo-right img {
        height: 35px !important;
        max-width: 50px !important;
    }
    
    .mobile-logo-left {
        transform: translateY(-50%) rotate(-12deg) !important;
    }
    
    .mobile-logo-right {
        transform: translateY(-50%) rotate(12deg) !important;
    }
    
    .cleaning-content>div:first-child>div:last-child>div {
        padding: 0.4rem !important;
    }
    
    .cleaning-content>div:first-child>div:last-child>div img {
        height: 1.2rem !important;
        max-width: 50px !important;
    }
    /* Main Content Card Extra Small */
    
    .cleaning-content>div:nth-child(2) {
        padding: 0.75rem !important;
        border-radius: 10px !important;
    }
    
    .cleaning-content>div:nth-child(2) h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .cleaning-content>div:nth-child(2) p {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    /* Benefits and Spaces Grid Extra Small */
    
    .cleaning-content .benefits-spaces-container {
        gap: 1rem !important;
    }
    /* Benefits Grid Extra Small - First */
    
    .cleaning-content .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        order: 1 !important;
    }
    /* Spaces Served Extra Small - Second */
    
    .cleaning-content .spaces-served {
        order: 2 !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div {
        padding: 0.5rem !important;
        border-radius: 6px !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div>div:first-child {
        width: 25px !important;
        height: 25px !important;
        margin-bottom: 0.3rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div>div:first-child span {
        font-size: 0.9rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div h4 {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:first-child>div p {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
    /* Spaces Served Extra Small */
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child {
        padding: 0.5rem !important;
        border-radius: 8px !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child h4 {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div {
        gap: 0.3rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div {
        padding: 0.25rem 0.4rem !important;
        border-radius: 5px !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:first-child {
        font-size: 0.8rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child>div:last-child>div>div span:last-child {
        font-size: 0.7rem !important;
    }
    /* Final Message Extra Small */
    
    .cleaning-content>div:nth-child(2)>div:last-child+div {
        padding: 0.5rem !important;
        border-radius: 6px !important;
        margin-top: 0.5rem !important;
    }
    
    .cleaning-content>div:nth-child(2)>div:last-child+div p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
    
    .zone-card {
        padding: 0.75rem;
    }
    
    .zone-card h4 {
        font-size: 0.9rem;
    }
    
    .zone-card p {
        font-size: 0.7rem;
    }
    
    .job-menu {
        height: auto;
        position: static;
        padding: 1rem;
    }
    
    .job-details {
        height: auto;
        padding: 1rem;
    }
    
    .job-option {
        padding: 0.75rem 1rem;
    }
    
    .job-apply-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .apply-buttons .btn {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1rem;
    }
    
    .legal-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-2-columns,
    .footer-3-columns,
    .footer-4-columns,
    .footer-5-columns {
        gap: 1rem;
    }
    /* Center "Urmărește-ne" section on extra small mobile */
    
    .footer-column:last-child {
        text-align: center;
    }
    
    .footer-column:last-child .footer-heading {
        text-align: center;
    }
    
    .footer-column:last-child .social-links {
        justify-content: center;
    }
    
    .newsletter-section {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        text-align: center;
    }
    
    .newsletter-title {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }
    /* Section Headers Extra Small */
    
    .section-header h2 {
        font-size: 1.5rem !important;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
    }
    /* Contact Form Extra Small */
    
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-section .section-header h2 {
        font-size: 1.5rem;
    }
    /* Careers Extra Small */
    
    .careers-section {
        padding: 2rem 0;
    }
    /* Sticky Call Button Extra Small */
    
    .sticky-call-button {
        width: 50px;
        height: 50px;
        bottom: 2rem;
        right: 1.5rem;
    }
    
    .sticky-call-button i {
        font-size: 1rem;
    }
    /* Text and Spacing Extra Small */
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2;
    }
    
    p {
        line-height: 1.4;
    }
    /* Form Elements Extra Small */
    
    input,
    textarea,
    select {
        font-size: 16px;
        padding: 0.6rem;
    }
    /* Touch targets extra small */
    
    .btn,
    .job-option,
    .faq-question {
        min-height: 40px;
        min-width: 40px;
    }
}

/* Language Notification */
.language-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform .3s ease-out;
    max-width: 300px;
}
.language-notification.show {
    transform: translateX(0);
}
.notification-content {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.notification-icon {
    font-size: 1.25rem;
}
.notification-text {
    font-weight: 500;
    font-size: .875rem;
}
@media (max-width: 768px) {
    .language-notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .language-notification.show {
        transform: translateY(0);
    }
}