/* ============================================
   ART GAM — Global Stylesheet
   Tailwind CSS handles utilities.
   This file: fonts, animations, effects.
   ============================================ */

/* --- Font Declarations --- */
@font-face {
    font-family: 'Tungsten';
    src: url('../img_vid/font/Tungsten-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gontserrat';
    src: url('../img_vid/font/Gontserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Gontserrat', sans-serif;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

::selection {
    background-color: rgba(0, 0, 185, 0.2);
    color: #00005c;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f6f6f6;
}

::-webkit-scrollbar-thumb {
    background: #0000b9;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00005c;
}

/* ============================================
   GRAIN TEXTURE ON TITLES
   ============================================ */
.grain-text {
    font-family: 'Tungsten', sans-serif;
    color: #0000b9;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
}

.grain-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
    opacity: 0.5;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 55vh;
    min-height: 55svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
    z-index: 50;
    padding: 1rem 1rem 0;
}

.hero-words-container {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-word {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    white-space: nowrap;
    font-family: 'Tungsten', sans-serif;
    color: #0000b9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-word.active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        /* Li pral adapte ak kontni ki ladan l lan sèlman */
        padding-bottom: 1rem;
        /* Ajoute yon ti espas anba pou li pa kole ak seksyon ki anba a */
    }
}

/* ============================================
   NAVIGATION — PILL
   ============================================ */
.nav-pill {
    background-color: #0000b9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-pill a {
    color: white;
    text-decoration: none;
    font-family: 'Gontserrat', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-pill a:hover {
    opacity: 0.7;
}

.nav-pill a.active-link {
    opacity: 1;
    font-weight: 700;
}

/* Nav wrapper — for Home & Art Gam pages */
.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 2rem;
    position: relative;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 0;
    background-color: transparent;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Internal page header — always sticky */
.internal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
}

.internal-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top center;
    background-color: #0000b9;
    border-radius: 1rem;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 200;
    box-shadow: 0 10px 40px rgba(0, 0, 91, 0.3);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Gontserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
    padding: 8px;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background-color: white;
        border-radius: 20%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background-color: white;
        border-radius: 20%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 12px;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #0000b9;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span {
    background-color: #0000b9;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #00005c 0%, #0000b9 100%);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-overlay a {
    color: white;
    text-decoration: none;
    font-family: 'Tungsten', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: opacity 0.3s;
    opacity: 0.85;
}

.mobile-nav-overlay a:hover {
    opacity: 1;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.lang-selector {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 185, 0.92);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 2px 0 15px rgba(0, 0, 185, 0.2);
}

.lang-selector a {
    color: white;
    text-decoration: none;
    padding: 10px 14px;
    font-family: 'Gontserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    transition: background-color 0.3s;
}

.lang-selector a:hover,
.lang-selector a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.counter-value {
    font-family: 'Tungsten', sans-serif;
    font-size: 4.5rem;
    color: #0000b9;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */
.testimonial-card {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #f6f6f6;
    box-shadow: 0 0 0 2px #f6f6f6;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px #0000b9;
}

/* .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 40px;
    font-family: 'Tungsten', sans-serif;
    font-size: 5rem;
    color: #0000b9;
    opacity: 0.5;
    line-height: 1;
} */

/* ============================================
   GALLERY & LIGHTBOX
   ============================================ */
.gallery-grid {
    display: grid;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border: 1px #f6f6f6;
    border-radius: 0.5rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 2px #f6f6f6;
}

/* Style commun pour les images de la galerie */
.gallery-item img.logo-anim {
    position: absolute;
    top: 0;
    left: 0;
    /* padding: 1rem; */
    /* Préserve l'espacement p-4 du parent */
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* On affiche la première image par défaut */
.gallery-item img.img-1 {
    opacity: 1;
    position: relative;
    /* Permet de maintenir la structure du div */
}

.gallery-item:hover {
    /* transform: scale(1.02); */
    box-shadow: 0 0 0 1px #0000b9;
}

.gallery-item:hover img.logo-anim {
    animation: rotateLogos 3s infinite;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Décalage des animations pour créer la séquence */
.gallery-item:hover img.img-1 {
    animation-delay: 0s;
}

.gallery-item:hover img.img-2 {
    animation-delay: 1s;
    /* Ap kòmanse parèt apre 1 segonn */
}

.gallery-item:hover img.img-3 {
    animation-delay: 2s;
    /* Ap kòmanse parèt apre 2 segonn */
}

@keyframes rotateLogos {

    0%,
    33.33% {
        opacity: 1;
        transform: scale(1.06);
        /* Effet de zoom progressif que tu avais défini */
    }

    33.34%,
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.93);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    display: block;
    /* Retire layout absolute/relative ki konfonn */
    margin: auto;
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.3s;
    background: transparent;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: white;
}

/* ============================================
   TIMELINE (Art Gam page)
   ============================================ */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0000b9, rgba(0, 0, 185, 0.08));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0000b9;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #0000b9;
}

.timeline-date {
    font-family: 'Tungsten', sans-serif;
    color: #0000b9;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   PACKAGE CARD
   ============================================ */
.package-card {
    background: white;
    border: 1px solid rgba(0, 0, 185, 0.08);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0000b9, #00005c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 185, 0.1);
    border-color: rgba(0, 0, 185, 0.2);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.featured {
    border-color: #0000b9;
    box-shadow: 0 8px 30px rgba(0, 0, 185, 0.1);
}

.package-card.featured::before {
    transform: scaleX(1);
}

/* ============================================
   DOMAIN BLOCK (Home — services)
   ============================================ */
.domain-block {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.domain-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0000b9;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.domain-block:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); */
    border-color: rgba(0, 0, 185, 0.15);
}

.domain-block:hover::after {
    transform: scaleX(1);
}

/* ============================================
   PORTFOLIO CARD (Home — projects)
   ============================================ */
.portfolio-card {
    position: relative;
    border-radius: 0.75rem;
    cursor: pointer;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease, z-index 0.4s ease;
    border: 1px solid white;
    /* Kreye yon ti espas blan ant imaj yo */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Efè lè w pase sourit sou li */
.portfolio-card:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   VIDEO CARD (Motion page)
   ============================================ */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16/9;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 185, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #0000b9;
}

/* ============================================
   BRANDING CASE STUDY
   ============================================ */
.case-study {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.case-study:last-child {
    border-bottom: none;
}

.module-label {
    font-family: 'Gontserrat', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1.5rem;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   WEB DESIGN PROJECT CARD
   ============================================ */
.web-project {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.web-project:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.web-project img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.web-project:hover img {
    transform: scale(1.03);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: #0000b9;
    color: white;
    text-decoration: none;
    font-family: 'Tungsten', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 10px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px rgba(0, 0, 185, 0.3); */
}

.cta-btn:hover {
    background-color: #d0d0d0;
    color: #0000b9;
    transform: translateY(-3px);
    /* box-shadow: 0 8px 30px rgba(0, 0, 185, 0.4); */
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #f6f6f6;
}

.site-footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a {
    color: #666;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
}

.footer-social a:hover {
    color: #0000b9;
    transform: translateY(-2px);
}


.footer-bottom p {
    font-size: 0.85rem;
    color: var(--bleu1);
}


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

@media (max-width: 1024px) {
    .nav-pill {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

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

    .nav-pill {
        display: none !important;
    }

    .internal-header {
        padding: 0.75rem 1rem;
    }

    .internal-header .page-title-header {
        display: none;
    }

    .hero-section {
        padding: 2rem 1rem 0;
    }

    .counter-value {
        font-size: 2.8rem;
    }

    .lang-selector {
        display: none;
    }

    .whatsapp-btn {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .lightbox img {
        max-width: 96vw;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .case-study {
        padding: 3rem 0;
    }

    .cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }

    .package-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .counter-value {
        font-size: 2.2rem;
    }

    .hero-word {
        font-size: 2rem !important;
    }
}