*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Web Fonts */

/* Poppins */
@font-face{
    font-family: 'Poppins';
    font-weight: 400; /* Regular */
    src: url('assets/webfonts/Poppins-Regular.ttf');
    font-display: swap;
}

@font-face{
    font-family: 'Poppins';
    font-weight: 500; /* Medium */
    src: url('assets/webfonts/Poppins-Medium.ttf');
    font-display: swap;
}

@font-face{
    font-family: 'Poppins';
    font-weight: 600; /* Semi-Bold */
    src: url('assets/webfonts/Poppins-SemiBold.ttf');
    font-display: swap;
}

@font-face{
    font-family: 'Poppins';
    font-weight: 700; /* Bold */
    src: url('assets/webfonts/Poppins-Bold.ttf');
    font-display: swap;
}

/* CSS Custom Properties (Tokens) */
:root {
    /* Colors */
    --color-primary: #000000;
    --color-secondary: #ED170A;
    --color-accent: #3498db;
    --color-section-surface: #FAFAFA;
    --color-light: #FFEFEC;
    --color-dark: #000000;
    --color-gray: #95a5a6;
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* Fonts */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: var(--font-primary);
    --font-body: var(--font-primary);
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 16px;    /* 16px */
    --font-size-md: 18px;  /* 18px */
    --font-size-lg: 20px;   /* 20px */
    --font-size-xl: 1.5rem;    /* 24px */
    --font-size-2xl: 1.875rem; /* 30px */
    --font-size-3xl: 2.25rem;  /* 36px */
    --font-size-4xl: 3rem;     /* 48px */
    
    /* Spacing */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 80px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Nouveaux tokens pour les animations */
    --animation-fast: 0.3s;
    --animation-normal: 0.6s;
    --animation-slow: 1.2s;
    --easing-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --easing-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Breakpoints */
    --breakpoint-mobile-portrait: 430px;
    --breakpoint-mobile-landscape: 768px;
    --breakpoint-tablet: 992px;
    --breakpoint-desktop: 1440px;
    
    /* Container Widths */
    --container-mobile: 90%;
    --container-tablet: 90%;
    --container-desktop: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem calculations */
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-black);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-lg);
    color: var(--color-black);
    line-height: 1.2;
}

ul{
    margin-bottom: 16px;
}

ul li{
    margin-left: 20px;
    font-size: 16px;
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: var(--font-size-2xl);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: var(--container-mobile);
    max-width: var(--container-desktop);
    margin: 0 auto;
}

section {
    padding: var(--space-4xl) 0;
}

.btn {
    padding: var(--space-md) var(--space-xl);
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* layouts */

.two-column-layout{
    display: flex;
}

.two-column-layout > div{
    width: 50%;
}

/* random */

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--space-lg));
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ==========================================
   ðŸŽ¨ NOUVELLES ANIMATIONS MODERNES
   ========================================== */

/* Hero Section Animations */
@keyframes heroEntry {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes typewriterEffect {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes heroTitle {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(25deg);
        text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@keyframes heroSubtitle {
    0% {
        opacity: 0;
        transform: translateX(-30px);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes heroButton {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        box-shadow: 0 0 0 rgba(237, 23, 10, 0);
    }
    70% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(237, 23, 10, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 25px rgba(237, 23, 10, 0.2);
    }
}

/* Effet de pulsation pour le bouton hero */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(237, 23, 10, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(237, 23, 10, 0.8), 0 0 50px rgba(237, 23, 10, 0.3);
    }
}

/* Cartes de services amÃ©liorÃ©es */
@keyframes cardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(25deg) scale(0.8);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-20px) rotateX(0deg) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
        opacity: 1;
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
        opacity: 0.8;
    }
}

/* Animations pour la section Aarion Moving */
@keyframes paralaxFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes morphReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) skewX(15deg);
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) skewX(-5deg);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) skewX(0deg);
        filter: blur(0);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 5px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

@keyframes listReveal {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) perspective(500px) rotateX(45deg);
        text-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0) perspective(500px) rotateX(0deg);
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(45deg);
        filter: blur(5px);
    }
    70% {
        transform: scale(1.1) rotate(-5deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* AmÃ©lioration des animations existantes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUpBlur {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes softRotateIn {
    from {
        opacity: 0;
        transform: scale(0.9) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes floatReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Classes d'animation */
.heroEntry.start { animation: heroEntry var(--animation-slow) var(--easing-smooth) forwards; }
.typewriterEffect.start { animation: typewriterEffect var(--animation-normal) var(--easing-smooth) forwards; }
.heroTitle.start { animation: heroTitle var(--animation-slow) var(--easing-elastic) 0.2s forwards; }
.heroSubtitle.start { animation: heroSubtitle var(--animation-normal) var(--easing-smooth) 0.4s forwards; }
.heroButton.start { animation: heroButton var(--animation-slow) var(--easing-bounce) 0.6s forwards; }
.pulseGlow.start { animation: pulseGlow 3s infinite; }

.cardSlideUp.start { animation: cardSlideUp var(--animation-normal) var(--easing-smooth) forwards; }
.paralaxFloat.start { animation: paralaxFloat 6s ease-in-out infinite; }
.slideInRight.start { animation: slideInRight var(--animation-normal) var(--easing-smooth) forwards; }
.morphReveal.start { animation: morphReveal var(--animation-slow) var(--easing-elastic) forwards; }
.textReveal.start { animation: textReveal var(--animation-normal) var(--easing-smooth) 0.2s forwards; }
.listReveal.start { animation: listReveal var(--animation-normal) var(--easing-smooth) 0.4s forwards; }
.rotateIn.start { animation: rotateIn var(--animation-normal) var(--easing-elastic) 0.6s forwards; }
.titleReveal.start { animation: titleReveal var(--animation-slow) var(--easing-smooth) forwards; }
.buttonReveal.start { animation: buttonReveal var(--animation-slow) var(--easing-bounce) forwards; }

.fadeInUp.start       { animation-name: fadeInUp; }
.fadeUpBlur.start     { animation-name: fadeUpBlur; }
.softRotateIn.start   { animation-name: softRotateIn; }
.floatReveal.start    { animation-name: floatReveal; }

.animate {
    opacity: 0;
}

.animate.start {
    opacity: 1;
    animation-duration: var(--animation-slow);
    animation-timing-function: var(--easing-smooth);
}

/* ==========================================
   ðŸ”¥ STYLES AMÃ‰LIORÃ‰S POUR LES CARTES
   ========================================== */

.card-enhanced {
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(237, 23, 10, 0.1), 
        rgba(237, 23, 10, 0.3), 
        rgba(237, 23, 10, 0.1));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card-enhanced:hover::before {
    opacity: 1;
}

/* ðŸŽ¨ EFFET FILTRE SOMBRE AVEC RÃ‰VÃ‰LATION COULEUR */
.service-image {
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.service-card:hover .service-image::before {
    opacity: 0;
    transform: scale(1.1);
}

.service-image img {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(0.8) contrast(1.1) brightness(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1) brightness(1);
}

/* Effet de brillance qui passe sur l'image */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    z-index: 3;
    transition: left 0.8s ease;
    opacity: 0;
}

.service-card:hover .service-image::after {
    left: 100%;
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(237, 23, 10, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.card-enhanced:hover .card-glow {
    opacity: 1;
}

.card-border-animation {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(237, 23, 10, 0.4),
        transparent
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card-enhanced:hover .card-border-animation {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

/* ðŸŽ¨ OVERRIDE POUR EFFET FILTRE SOMBRE + RÃ‰VÃ‰LATION COULEUR */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
    border-color: #e74c3c !important;
}

.service-image {
    position: relative !important;
    overflow: hidden !important;
}

/* Filtre sombre par dÃ©faut */
.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

/* RÃ©vÃ©lation des couleurs au survol */
.service-card:hover .service-image::before {
    opacity: 0;
    transform: scale(1.1);
}

.service-image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 330/204 !important;
    object-fit: cover !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    filter: grayscale(0.8) contrast(1.1) brightness(0.9) !important;
}

.service-card:hover .service-image img {
    transform: scale(1.08) !important;
    filter: grayscale(0) contrast(1) brightness(1) !important;
}

/* Effet de brillance qui passe sur l'image au survol */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    z-index: 3;
    transition: left 0.8s ease;
    opacity: 0;
}

.service-card:hover .service-image::after {
    left: 100%;
    opacity: 1;
}

/* Bouton amÃ©liorÃ© */
.enhanced-button {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enhanced-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.enhanced-button:hover::before {
    left: 100%;
}

.enhanced-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Optimisation des performances */
.animate {
    will-change: transform, opacity;
}

.animate.start {
    will-change: auto;
}

/* Support pour reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* 🖼️ CHANGEMENT DE L'IMAGE DU HEADER - Page d'accueil seulement */
.home header {
    background-image: url('/images/webp/header.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}
/* ðŸ“Œ NAVBAR FIXE */
.header-nav {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000 !important;
    width: calc(100% - 40px) !important;
    max-width: 1200px !important;
}

/* Responsive Styles */
/* Mobile Portrait (up to 430px) */
@media (max-width: 430px) {
    :root {
        --container-mobile: 95%;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape (431px to 768px) */
@media (min-width: 431px) and (max-width: 768px) {
    .container {
        width: var(--container-tablet);
    }
    
    h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2 {
        font-size: var(--font-size-2xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .container {
        width: var(--container-tablet);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .service-card, .achievement-item {
        padding: var(--space-lg) var(--space-md);
    }

    header .contact-btn{
        display: none;
    }
}

@media screen and (max-width: 768px) {
    p{
        font-size: 16px;
    }

    #our-team{
        height: 400px !important;
    }
}

/* Desktop (993px and above) */
@media (min-width: 993px) {
    .container {
        width: var(--container-desktop);
    }
}

/* converting two column layout to single column layout on mobile landscape and mobile portrait */
@media screen and (max-width: 768px) {
    .two-column-layout{
        flex-direction: column;
    }

    .two-column-layout > div{
        width: 100%;
    }

    section {
        padding: 50px 0;
    }
}

/* 
*
# CTA or Get a Quote Section Global CSS
*
*/

.cta {
    background: #FFEFEC;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    padding: var(--space-4xl) 0;
    height: 420px;
}

.cta .container{
    position: relative; 
    display: flex; 
    justify-content: center;
}

.cta .container .content{
    width: 70%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cta .container h2{
    font-size: 46px;
    font-weight: 600;
}

.cta .container .cta-image{
    position: absolute;
    right: -63px;
    top: -149px;
}

.cta .get-quote-box{
    width: 470px;
    height: 62px;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    padding: 5px;
}

.cta .get-quote-box button{
    width: 157px;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    border: none;
    background-color: #000000;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
}

.cta .get-quote-box input[type=email]{
    border: none;
    border-radius: 50px;
    padding: 0 20px;
    width: 80%;
}

.cta .get-quote-box input[type=email]:focus-visible{
    border: none;
    outline: none;
}

@media (max-width: 430px) {
    .cta-image img{
        width: 50%;
    }
}

@media (max-width: 768px) {
    .cta .container{
        flex-direction: column;
        gap: 30px;
    }

    .cta .container .content{
        width: 100%;
    }

    .cta{
        height: 580px;
    }

    .cta .container .cta-image{
        position: initial;
    }

    .cta-image img{
        height: 270px;
    }

    .cta .get-quote-box{
        width: 90%;
    }

    .cta .container h2{
        font-size: 30px;
    }

    .cta{
        padding: 50px 0;
    }
}

@media (min-width: 431px) and (max-width: 768px) {
    .cta-image img{
        width: 30%;
    }
}

/* faq section - global css */

.faq-section{
    background-attachment: fixed;
}

.faq-section > div{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-container {
    max-width: 86%;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    padding: 20px 0;
    background-color: transparent;
    font-size: 18px;
    border-bottom: 1px solid #00000073;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    transition: background-color var(--transition-base);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-white);
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: var(--space-lg);
    max-height: 500px;
}

.faq-toggle {
    transition: transform var(--transition-base);
    height: 22px;
}

.faq-item.active .faq-toggle {
    transform: rotate(135deg);
}

@media screen and (max-width: 768px){
    .faq-container{
        max-width: 95%;
    }

    .faq-question{
        font-size: 16px;
    }

    .faq-toggle img{
        width: 16px;
        height: 16px;
    }
}

/* language selector */
.language-selector {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.lang-btn {
    width: 90px;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-btn img {
    width: 20px;
    height: 20px;
}

.lang-btn .arrow {
    font-size: 12px;
    opacity: 0.6;
}

.lang-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    width: 120px;
    background: #000000;
    border: 1px solid #333;
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.language-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    color: #fff;
}

.lang-dropdown li img {
    width: 20px;
    height: 20px;
}

.lang-dropdown li:hover {
    background: #333;
    color: #fff;
}

.lang-dropdown li.active {
    background: #333;
    color: #fff;
    font-weight: bold;
}