/* styles.css */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
    color: #0a2e5c;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   SCOPE & LAYOUT
   ============================================ */
#evx {
    font-family: inherit;
    line-height: 1.65;
    color: #0a2e5c;
}

#evx section {
    padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 24px);
    margin: 0 auto;
    max-width: 1180px;
}

#evx section:last-of-type {
    padding-bottom: clamp(40px, 6vw, 120px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
#evx h1 {
    color: #0b4da2;
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

#evx h2 {
    color: #0b4da2;
    font-size: clamp(20px, 3.5vw, 36px);
    line-height: 1.3;
    margin: 0 0 24px;
    font-weight: 700;
}

#evx h3 {
    color: #0b4da2;
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
}

#evx p {
    margin-bottom: 16px;
    font-size: clamp(14px, 2vw, 16px);
}

#evx .lead {
    font-size: clamp(16px, 2.5vw, 18px);
    margin-bottom: 24px;
    line-height: 1.7;
    color: #333;
}

#evx .muted {
    color: #466086;
    font-size: clamp(13px, 1.8vw, 15px);
}

/* ============================================
   LISTS & BULLETS
   ============================================ */
#evx .bullets {
    margin: 0 0 24px 20px;
    list-style: none;
}

#evx .bullets li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: clamp(14px, 2vw, 16px);
}

#evx .bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b4da2;
    font-weight: 900;
    font-size: 18px;
}

/* ============================================
   BUTTONS - HERO ONLY
   ============================================ */
#evx .btn-primary,
#evx .btn-secondary,
#evx .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    height: 48px;
    min-width: 160px;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

#evx .btn-large
{
    width: 30%;
}
#evx .btn-primary {
    background: #0b4da2;
    color: #fff;
    box-shadow: 0 10px 22px rgba(11, 77, 162, 0.18);
    border-color: #0b4da2;
}

#evx .btn-primary:hover {
    background: #093a7a;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(11, 77, 162, 0.28);
}

#evx .btn-primary:active {
    transform: translateY(0);
}

#evx .btn-primary:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #0b4da2, 0 10px 22px rgba(11, 77, 162, 0.18);
}

#evx .btn-secondary {
    background: rgba(11, 77, 162, 0.08);
    color: #0b4da2;
    border: 2px solid #0b4da2;
}

#evx .btn-secondary:hover {
    background: rgba(11, 77, 162, 0.15);
}

#evx .btn-secondary:focus {
    outline: 2px solid #0b4da2;
    outline-offset: 2px;
}

#evx .btn-outline {
    border: 2px solid #0b4da2;
    color: #0b4da2;
    background: #fff;
}

#evx .btn-outline:hover {
    background: #f0f6ff;
    transform: translateY(-2px);
}

#evx .btn-outline:focus {
    outline: 2px solid #0b4da2;
    outline-offset: 2px;
}

/* Mobile Button Responsive */
@media (max-width: 640px) {
    #evx .btn-primary,
    #evx .btn-secondary,
    #evx .btn-outline {
        min-width: 100%;
        height: 44px;
        font-size: 14px;
        padding: 10px 20px;
    }

    #evx .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    #evx .hero-buttons .btn-primary,
    #evx .hero-buttons .btn-secondary,
    #evx .hero-buttons .btn-outline {
        width: 100%;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
#evx .hero {
    background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
    border-bottom: 2px solid #e0e7f0;
}

#evx .hero-content {
    animation: fadeInUp 0.6s ease-out;
}

#evx .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

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

/* ============================================
   GRIDS
   ============================================ */
#evx .steps {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 24px;
}

#evx .step {
    display: flex;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
    background: #f4f8ff;
    border: 1px solid #e2ecfb;
    transition: all 0.25s ease;
    cursor: pointer;
}

#evx .step:hover {
    box-shadow: 0 6px 20px rgba(11, 77, 162, 0.12);
    border-color: #cde0f5;
}

#evx .step strong {
    color: #0b4da2;
    display: block;
    margin-bottom: 8px;
}

#evx .num {
    min-width: 40px;
    min-height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: #0b4da2;
    font-size: 16px;
    flex-shrink: 0;
}

#evx .cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 24px;
}

#evx .cards .card {
    padding: 24px;
    border-radius: 16px;
    background: #f9fbff;
    border: 1px solid #e0e7f0;
    transition: all 0.25s ease;
}

#evx .cards .card:hover {
    box-shadow: 0 8px 24px rgba(11, 77, 162, 0.1);
    border-color: #d0dcf0;
    transform: translateY(-4px);
}

#evx .cards .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ============================================
   PRICING
   ============================================ */
#evx .price-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 24px;
}

#evx .price-item {
    background: #f9fbff;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

#evx .price-item:hover {
    box-shadow: 0 8px 24px rgba(11, 77, 162, 0.12);
    border-color: #cde0f5;
}

#evx .pi-head {
    font-weight: 800;
    margin-bottom: 10px;
    color: #0b4da2;
    font-size: 16px;
}

#evx .pi-price {
    font-weight: 900;
    color: #0b4da2;
    margin-bottom: 8px;
    font-size: clamp(18px, 3vw, 24px);
}

#evx .price-item .muted {
    margin-bottom: 16px;
    flex-grow: 1;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
#evx .langbar {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid #e6eef6;
    max-width: 1180px;
    margin: 0 auto;
    background: #f8faff;
    flex-wrap: wrap;
}

#evx .langbtn {
    background: #f1f6ff;
    border: 1px solid #d6e6ff;
    color: #0b4da2;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
    min-width: 44px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#evx .langbtn:hover {
    border-color: #0b4da2;
}

#evx .langbtn.active {
    background: #0b4da2;
    color: #fff;
    border-color: #0b4da2;
    box-shadow: 0 4px 12px rgba(11, 77, 162, 0.2);
}

/* ============================================
   CONTACT BLOCK
   ============================================ */
#evx .contact-block {
    background: #f9fbff;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

#evx .contact-block .phone {
    font-size: 20px;
    margin-bottom: 8px;
}

#evx .contact-block .phone a {
    color: #0b4da2;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.2s ease;
}

#evx .contact-block .phone a:hover {
    text-decoration: underline;
}

#evx .contact-block .phone a:focus {
    outline: 2px solid #0b4da2;
    outline-offset: 4px;
    border-radius: 4px;
}

#evx .contact-block p {
    margin-bottom: 12px;
}

#evx .contact-block a {
    color: #0b4da2;
    transition: all 0.2s ease;
}

#evx .contact-block a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ
   ============================================ */
#evx .faq-list {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

#evx .faq-item {
    background: #f9fbff;
    border: 1px solid #e0e7f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.25s ease;
    cursor: pointer;
}

#evx .faq-item:hover {
    box-shadow: 0 6px 16px rgba(11, 77, 162, 0.08);
    border-color: #d0dcf0;
}

#evx .faq-item strong {
    color: #0b4da2;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

/* ============================================
   SEO FOOTER
   ============================================ */
#evx .seo-foot {
    background: linear-gradient(135deg, #051e3e 0%, #0a2e5c 100%);
    color: #dbe7ff;
    padding: 40px 0;
}

#evx .seo-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

#evx .seo-foot h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(18px, 2.5vw, 24px);
}

#evx .seo-text {
    margin: 12px 0;
    line-height: 1.7;
    font-size: 14px;
    opacity: 0.95;
}

/* ============================================
   MOBILE CONTACT BAR - 3 BUTTONS
   ============================================ */
.mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(140%) blur(10px);
    /*border-top: 2px solid #0b4da2;*/
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease-out;
    padding: 0;
}

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

.mobile-contact-bar.active {
    display: flex;
}

.mobile-contact-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    color: #0b4da2;
    border-right: 1px solid #e0e7f0;
    transition: all 0.2s ease;
    padding: 8px;
    min-height: 100%;
}

.mobile-contact-bar a:last-child {
    border-right: none;
}

.mobile-contact-bar a span:first-child {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.mobile-contact-bar a span:last-child {
    display: none;
}

@media (max-width: 640px) {
    .mobile-contact-bar a span:last-child {
        display: inline;
    }

    #evx section:last-of-type {
        padding-bottom: 80px;
    }
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0b4da2;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 1001;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
#evx .breadcrumb {
    background: #f8faff;
    border-bottom: 1px solid #e6eef6;
    padding: 12px 0;
}

#evx .breadcrumb ol {
    display: flex;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    list-style: none;
    padding: 0 24px;
    max-width: 1180px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#evx .breadcrumb li {
    display: flex;
    align-items: center;
}

#evx .breadcrumb li::after {
    content: "/";
    margin: 0 6px;
    color: #999;
}

#evx .breadcrumb li:last-child::after {
    content: "";
}

#evx .breadcrumb a {
    color: #0b4da2;
    text-decoration: none;
    transition: all 0.2s ease;
}

#evx .breadcrumb a:hover {
    text-decoration: underline;
}

#evx .breadcrumb a:focus {
    outline: 2px solid #0b4da2;
    outline-offset: 2px;
}

#evx .breadcrumb li:last-child {
    color: #466086;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    #evx section {
        padding: 32px 16px;
    }

    #evx section:last-of-type {
        padding-bottom: 80px;
    }

    #evx .steps {
        grid-template-columns: 1fr;
    }

    #evx .cards {
        grid-template-columns: 1fr;
    }

    #evx .price-grid {
        grid-template-columns: 1fr;
    }

    #evx .hero-buttons {
        flex-direction: column;
    }

    #evx .langbar {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    #evx h1 {
        font-size: 24px;
    }

    #evx h2 {
        font-size: 20px;
    }

    #evx .contact-block {
        padding: 20px;
    }

    #evx .breadcrumb ol {
        padding: 0 16px;
        font-size: 12px;
    }

    .mobile-contact-bar {
        height: 56px;
    }

    .mobile-contact-bar a {
        font-size: 12px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .mobile-contact-bar,
    #evx .langbar,
    .skip-link {
        display: none;
    }

    #evx section {
        page-break-inside: avoid;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}



/* ============================================
   GALLERY HEADER - TITLE & SUBTITLE
   ============================================ */

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.gallery-header h2 {
    color: #0b4da2;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.gallery-header p {
    color: #466086;
    font-size: clamp(14px, 2.2vw, 18px);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Decorative line under title */
.gallery-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0b4da2, transparent);
    margin: 16px auto 0;
    animation: slideInRight 0.6s ease-out 0.2s backwards;
}

@keyframes slideInRight {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* ============================================
   GALLERY CTA BUTTON
   ============================================ */

.gallery-cta {
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.gallery-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   GALLERY CONTAINER
   ============================================ */

.hero-gallery {
    background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
    padding: clamp(50px, 8vw, 80px) clamp(16px, 4vw, 24px);
    margin: 0 auto;
    max-width: 100%;
}

.gallery-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ============================================
   GALLERY ITEM
   ============================================ */

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 6px 20px rgba(11, 77, 162, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #e0e7f0;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 77, 162, 0.18);
    border-color: #0b4da2;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 77, 162, 0.85) 100%);
    padding: 20px 16px 16px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    min-height: 80px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: white;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* ============================================
   GALLERY ANIMATIONS
   ============================================ */

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

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

.gallery-header {
    animation: fadeInDown 0.8s ease-out;
}

.gallery-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }
.gallery-item:nth-child(7) { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 900px) {
    .gallery-header {
        margin-bottom: 35px;
    }

    .gallery-header h2 {
        font-size: clamp(22px, 4vw, 36px);
    }

    .gallery-header p {
        font-size: clamp(13px, 2vw, 16px);
    }

    .gallery-container {
        gap: 16px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 640px) {
    .hero-gallery {
        padding: 40px 12px;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .gallery-header p {
        font-size: 14px;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 16/10;
        border-radius: 12px;
    }

    .gallery-overlay {
        min-height: 70px;
        padding: 14px 10px 10px;
    }

    .gallery-overlay p {
        font-size: 13px;
    }

    .gallery-cta {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-gallery {
        padding: 30px 10px;
    }

    .gallery-header {
        margin-bottom: 25px;
    }

    .gallery-header h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .gallery-header p {
        font-size: 13px;
    }

    .gallery-header::after {
        width: 50px;
        margin: 12px auto 0;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 16/9;
        border-radius: 10px;
        border-width: 1px;
    }

    .gallery-overlay {
        min-height: 60px;
        padding: 12px 8px 8px;
    }

    .gallery-overlay p {
        font-size: 12px;
        font-weight: 600;
    }

    .gallery-cta {
        margin-top: 25px;
    }

    .gallery-cta .btn-primary {
        width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .gallery-header,
    .gallery-item,
    .gallery-item img,
    .gallery-overlay,
    .gallery-cta {
        animation: none !important;
        transition: none !important;
    }

    .gallery-header::after {
        animation: none !important;
    }
}

.gallery-item:focus-visible {
    outline: 3px solid #0b4da2;
    outline-offset: -3px;
}

/* ============================================
   DARK MODE
   ============================================ */

@media (prefers-color-scheme: dark) {
    .hero-gallery {
        background: linear-gradient(135deg, #1a2a3a 0%, #243341 100%);
    }

    .gallery-header h2 {
        color: #5ba3ff;
    }

    .gallery-header p {
        color: #aabbcc;
    }

    .gallery-item {
        border-color: #3a4a5a;
        background: #2a3a4a;
    }

    .gallery-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(11, 77, 162, 0.95) 100%);
    }
}


/* ============================================
   MOBILE CONTACT BAR - BOTTOM FIXED (MOBILE ONLY)
   ============================================ */

.mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    flex-direction: row;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    animation: slideUp 0.3s ease-out;
    padding: 0;
    width: 100%;
}

.mobile-contact-bar.active {
    display: flex;
}

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

.mobile-contact-bar .contact-btn {
    flex: 1;
    width: 33.333%;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    min-width: auto;
}

.mobile-contact-bar .contact-btn:last-child {
    border-right: none;
}

.mobile-contact-bar .contact-btn i {
    font-size: 18px;
}

.mobile-contact-bar .contact-btn span {
    display: block;
    font-size: 14px;
}

/* Hover Effects */
.mobile-contact-bar .contact-btn.phone-btn {
    background: #0b4da2;
    color: #fff;
    box-shadow: none;
    border: none;
}

.mobile-contact-bar .contact-btn.phone-btn:hover {
    background: #093a7a;
    box-shadow: none;
    transform: none;
}

.mobile-contact-bar .contact-btn.whatsapp-btn {
    background: #25D366;
    color: #fff;
    box-shadow: none;
    border: none;
}

.mobile-contact-bar .contact-btn.whatsapp-btn:hover {
    background: #20BA5A;
    box-shadow: none;
    transform: none;
}

.mobile-contact-bar .contact-btn.viber-btn {
    background: #7360F2;
    color: #fff;
    box-shadow: none;
    border: none;
}

.mobile-contact-bar .contact-btn.viber-btn:hover {
    background: #5F4FD3;
    box-shadow: none;
    transform: none;
}

.mobile-contact-bar .contact-btn:active {
    transform: scale(0.95);
}

/* Desktop - HIDE */
@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none !important;
    }
}

/* Mobile - SHOW & Responsive */
@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex !important;
    }

    #evx section:last-of-type {
        padding-bottom: 80px;
    }
}

@media (max-width: 640px) {

    .mobile-contact-bar .contact-btn i {
        font-size: 18px;
    }

    .mobile-contact-bar .contact-btn span {
    }
}

@media (max-width: 480px) {
    .mobile-contact-bar .contact-btn i {
        font-size: 16px;
    }

    .mobile-contact-bar .contact-btn span {
    }
}

/* ============================================
   HIDE DESKTOP BUTTONS FROM TOP BAR
   ============================================ */

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    #evx section:last-of-type {
        padding-bottom: 80px;
    }
}

@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none !important;
    }
}

/* ============================================ MOBILE CONTACT BAR ============================================ */
.mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex; /* Changed from none to flex */
    flex-direction: row;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(140%) blur(10px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease-out;
    padding: 0;
    width: 100%;
    height: 60px;
}

.mobile-contact-bar.active {
    display: flex;
}

/* Desktop - HIDE */
@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none !important;
    }
}

/* Mobile - ALWAYS SHOW */
@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex !important;
    }

    #evx section:last-of-type {
        padding-bottom: 80px;
    }
}

/* ============================================
   TOP BAR - Phone + Language Switcher
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
    border-bottom: 1px solid #e0e7f0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Phone on Left */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b4da2;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.top-phone:hover {
    background: rgba(11, 77, 162, 0.1);
    transform: scale(1.05);
}

.top-phone:focus {
    outline: 2px solid #0b4da2;
    outline-offset: 2px;
}

/* Language Switcher on Right */
.top-bar-right {
    display: flex;
    align-items: center;
}

#evx .langbar {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    border-bottom: none;
    max-width: none;
    margin: 0;
    background: transparent;
    flex-wrap: wrap;
}

#evx .langbtn {
    background: #f1f6ff;
    border: 1px solid #d6e6ff;
    color: #0b4da2;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
    min-width: 44px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#evx .langbtn:hover {
    border-color: #0b4da2;
}

#evx .langbtn.active {
    background: #0b4da2;
    color: #fff;
    border-color: #0b4da2;
    box-shadow: 0 4px 12px rgba(11, 77, 162, 0.2);
}

/* ============================================
   RESPONSIVE TOP BAR
   ============================================ */

@media (max-width: 768px) {
    .top-bar-container {
        padding: 10px 16px;
    }

    .top-phone {
        font-size: 13px;
        padding: 6px 10px;
    }

    .top-phone span:last-child {
        display: none;
    }

    #evx .langbtn {
        min-width: 40px;
        min-height: 36px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 8px 12px;
        gap: 8px;
    }

    .top-phone {
        font-size: 12px;
        padding: 4px 8px;
    }

    #evx .langbtn {
        min-width: 36px;
        min-height: 32px;
        font-size: 11px;
        padding: 4px 8px;
    }
}

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

#evx .text-center .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* ============================================
   CONTACT BUTTONS - SAME STYLE AS PRIMARY
   ============================================ */

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    height: 36px;
    min-width: 160px;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.contact-btn i {
    font-size: 18px;
    display: flex;
    align-items: center;
}

/* Phone Button - Blue (same as btn-primary) */
.contact-btn.phone-btn {
    background: #0b4da2;
    color: #fff;
    border-color: #0b4da2;
    box-shadow: 0 10px 22px rgba(11, 77, 162, 0.18);
}


/* WhatsApp Button - Green */
.contact-btn.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.18);
}

/* Viber Button - Purple */
.contact-btn.viber-btn {
    background: #7360F2;
    color: #fff;
    border-color: #7360F2;
    box-shadow: 0 10px 22px rgba(115, 96, 242, 0.18);
}



/* ============================================
   RESPONSIVE CONTACT BUTTONS
   ============================================ */

@media (max-width: 900px) {
    .contact-btn {
        padding: 10px 16px;
        font-size: 14px;
        min-width: 140px;
        height: 44px;
    }

    .contact-btn span {
        display: none;
    }

    .contact-btn {
        min-width: 48px;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: center;
        order: 2;
    }

    .contact-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
        height: 44px;
        min-width: auto;
    }

    .contact-btn span {
        display: inline;
    }
}

@media (max-width: 640px) {
    .top-bar-left {
        gap: 8px;
    }

    .contact-btn {
        padding: 10px 12px;
        font-size: 12px;
        height: 40px;
    }

    .contact-btn i {
        font-size: 16px;
    }

    .contact-btn span {
        display: none;
    }

    .contact-btn {
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        gap: 6px;
    }

    .contact-btn {
        padding: 8px 10px;
        font-size: 11px;
        height: 36px;
        min-width: 40px;
    }

    .contact-btn i {
        font-size: 14px;
    }
}


/* ============================================
   TOP BAR - Phone + Title + Language Switcher
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, #f8faff 0%, #eef5ff 100%);
    border-bottom: 2px solid #0b4da2;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(11, 77, 162, 0.1);
}

.top-bar-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   TOP BAR - LEFT SECTION
   ============================================ */

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    order: 1;
}

/* ============================================
   PULSE ANIMATION
   ============================================ */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 77, 162, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(11, 77, 162, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 77, 162, 0);
    }
}

/* Phone Number - WITH PULSE */
.top-phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    background: #0b4da2;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 2px solid #0b4da2;
    box-shadow: 0 0 0 0 rgba(11, 77, 162, 0.7);
    animation: pulse 2s infinite;
}

.top-phone:hover {
    background: #093a7a;
    border-color: #093a7a;
    box-shadow: 0 0 0 0 rgba(11, 77, 162, 0);
    animation: none;
}

.top-phone:active {
    transform: scale(0.95);
}

.top-phone:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.top-phone span:first-child {
    font-size: 14px;
    display: flex;
}

.phone-number {
    font-size: 13px;
    font-weight: 800;
}

/* Separator */
.separator {
    color: #0b4da2;
    font-weight: 300;
    margin: 0 4px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Top Title */
.top-title {
    color: #0b4da2;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    white-space: normal;
    flex: 1;
    letter-spacing: 0.2px;
}

/* ============================================
   TOP BAR - RIGHT SECTION
   ============================================ */

.top-bar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 2;
}

#evx .langbar {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    border-bottom: none;
    max-width: none;
    margin: 0;
    background: transparent;
    flex-wrap: nowrap;
}

#evx .langbtn {
    background: #f1f6ff;
    border: 1px solid #d6e6ff;
    color: #0b4da2;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    transition: all 0.2s ease;
    min-width: 38px;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#evx .langbtn:hover {
    border-color: #0b4da2;
    background: #e8f0ff;
}

#evx .langbtn:active {
    transform: scale(0.95);
}

#evx .langbtn.active {
    background: #0b4da2;
    color: #fff;
    border-color: #0b4da2;
    box-shadow: 0 2px 8px rgba(11, 77, 162, 0.3);
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1025px) {
    .top-bar-container {
        flex-wrap: nowrap;
        padding: 12px 24px;
        gap: 20px;
    }

    .top-bar-left {
        flex: 1;
    }

    .top-phone {
        font-size: 14px;
        padding: 8px 16px;
    }

    .phone-number {
        font-size: 14px;
    }

    .top-title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #evx .langbtn {
        min-width: 44px;
        min-height: 40px;
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* ============================================
   TABLET (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) and (min-width: 768px) {
    .top-bar-container {
        flex-wrap: wrap;
        padding: 10px 16px;
        gap: 10px;
    }

    .top-bar-left {
        width: 100%;
        order: 1;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        order: 2;
    }

    .top-phone {
        font-size: 13px;
        padding: 6px 12px;
    }

    .phone-number {
        font-size: 13px;
    }

    .top-title {
        font-size: 11px;
        flex: 1;
    }

    #evx .langbar {
        justify-content: center;
        gap: 6px;
    }

    #evx .langbtn {
        min-width: 40px;
        min-height: 36px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ============================================
   MOBILE (481px - 767px)
   ============================================ */

@media (max-width: 767px) and (min-width: 481px) {
    .top-bar-container {
        flex-direction: column;
        padding: 10px 12px;
        gap: 8px;
        align-items: stretch;
    }

    /* Line 1: Phone */
    .top-bar-left {
        width: 100%;
        order: 1;
        gap: 0;
        justify-content: center;
        min-height: 36px;
    }

    .top-phone {
        font-size: 12px;
        padding: 6px 14px;
    }

    .phone-number {
        font-size: 12px;
    }

    .separator,
    .top-title {
        display: none;
    }

    /* Line 2: Title */
    .top-bar-right {
        width: 100%;
        order: 2;
        justify-content: center;
        display: none;
    }

    .top-title {
        display: block;
        font-size: 11px;
        text-align: center;
        order: 2;
        width: 100%;
        margin: 4px 0;
    }

    /* Line 3: Language */
    #evx .langbar {
        display: flex;
        justify-content: center;
        order: 3;
        width: 100%;
    }

    #evx .langbtn {
        min-width: 36px;
        min-height: 32px;
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* ============================================
   SMALL MOBILE (320px - 480px) - 3 LINII
   ============================================ */

@media (max-width: 480px) {
    .top-bar {
        border-bottom: 2px solid #0b4da2;
    }

    .top-bar-container {
        flex-direction: column;
        padding: 8px 8px;
        gap: 8px;
        align-items: stretch;
    }

    /* LINE 1: PHONE - PULSE */
    .top-bar-left {
        width: 100%;
        order: 1;
        gap: 0;
        justify-content: center;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .top-phone {
        font-size: 12px;
        padding: 8px 16px;
        min-height: 36px;
        animation: pulse 2s infinite;
    }

    .phone-number {
        font-size: 12px;
        font-weight: 800;
    }

    .separator {
        display: none;
    }

    /* LINE 2: TITLE */
    .top-title {
        display: block;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.3;
        white-space: normal;
        word-break: break-word;
        order: 2;
        width: 100%;
        color: #0b4da2;
        margin: 0;
        text-align: center;
        min-height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* LINE 3: LANGUAGE BUTTONS */
    .top-bar-right {
        width: 100%;
        justify-content: center;
        order: 3;
        min-height: 36px;
        display: flex;
    }

    #evx .langbar {
        justify-content: center;
        gap: 4px;
        width: 100%;
        display: flex;
    }

    #evx .langbtn {
        min-width: 32px;
        min-height: 32px;
        font-size: 10px;
        padding: 4px 6px;
        flex: 0 1 auto;
    }
}

/* ============================================
   HIDE OLD LANGBAR
   ============================================ */

#evx > .langbar {
    display: none !important;
}

/* ============================================
   REMOVE BREADCRUMB EXTRA SPACING
   ============================================ */

#evx .breadcrumb {
    margin-top: 0;
    padding: 8px 0;
}

@media (max-width: 767px) {
    #evx .breadcrumb {
        display: none;
    }
}


/* ============================================
   TOP TITLE - LARGER FONT
   ============================================ */

.top-title {
    color: #0b4da2;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    white-space: normal;
    flex: 1;
    letter-spacing: 0.2px;
    padding: 12px 8px;
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1025px) {
    .top-title {
        font-size: 20px;
        padding: 16px 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ============================================
   TABLET (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) and (min-width: 768px) {
    .top-title {
        font-size: 16px;
        padding: 12px 10px;
    }
}

/* ============================================
   MOBILE (481px - 767px)
   ============================================ */

@media (max-width: 767px) and (min-width: 481px) {
    .top-title {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* ============================================
   SMALL MOBILE (320px - 480px)
   ============================================ */

@media (max-width: 480px) {
    .top-title {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        padding: 12px 8px;
        width: 100%;
        color: #0b4da2;
        margin: 0;
        text-align: center;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================
   TOP TITLE - LARGER FONT
   ============================================ */

.top-title {
    color: #0b4da2;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    white-space: normal;
    flex: 1;
    letter-spacing: 0.2px;
    padding: 12px 8px;
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1025px) {
    .top-title {
        font-size: 24px;
        padding: 16px 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ============================================
   TABLET (768px - 1024px)
   ============================================ */

@media (max-width: 1024px) and (min-width: 768px) {
    .top-title {
        font-size: 24px;
        padding: 12px 10px;
    }
}

/* ============================================
   MOBILE (481px - 767px)
   ============================================ */

@media (max-width: 767px) and (min-width: 481px) {
    .top-title {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* ============================================
   SMALL MOBILE (320px - 480px)
   ============================================ */

@media (min-width: 481px) {
.hide-desktop
{
    display: none;
}
}
@media (max-width: 480px) {
    .hide-mobile{
        display: none;

    }
    .top-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;
        padding: 12px 8px;
        width: 100%;
        color: #0b4da2;
        margin: 0;
        text-align: center;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



/* Stare dezactivată pentru toate link-urile apel */
[data-key-call="phone-call-active"].phone-disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(100%);
    background-color: #ccc !important;
    color: #666 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: all 0.3s ease;
}

[data-key-call="phone-call-active"].phone-disabled:hover {
    background-color: #ccc !important;
    color: #666 !important;
    transform: none !important;
}

[data-key-call="phone-call-active"].phone-disabled span {
    opacity: 0.6;
}
