:root{
    --primary-blue: #1A3657;
    --primary-yellow:#FFA500;
    --grey: #646b7a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== FONTS ========== */


@font-face {
    font-family: Gotham; /* set name */
    src: url("assets/fonts/Gotham/Gotham-Book.ttf") format('ttf'); /* url of the font */
}

@font-face {
    font-family: Gotham; /* set name */
    src: url("assets/fonts/Gotham/GOTHAM-BOLD.ttf") format('ttf'); /* url of the font */
    font-weight: bold;
}

@font-face {
    font-family: Gotham; /* set name */
    src: url("assets/fonts/Gotham/GOTHAM-LIGHT.ttf") format('ttf'); /* url of the font */
    font-weight: lighter;
}

body {
    font-family: Gotham, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}



/* ========== HEADER STYLES ========== */
.main-header {
    background-color: transparent;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem 2rem;
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.company-name-trans {
    color: #2596be;
}

.company-name-west {
    color: #FFA500;
}

.company-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}

.tagline-africa {
    color: #FFA500;
}

.tagline-solutions {
    color: #2596be;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #1A3657;
    padding: 1rem 2rem;
    flex: 1;
    justify-content: flex-end;
    position: relative;
    z-index: 100;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.nav-menu li {
    position: relative;
    z-index: 102;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    pointer-events: auto;
    position: relative;
    z-index: 103;
    cursor: pointer;
    display: block;
}

.nav-menu li a:hover {
    color: #FFA500;
}

.nav-menu li a.active {
    color: #fff;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.lang-switcher {
    margin-left: 0.5rem;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFA500;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    position: relative;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1003;
}

.mobile-menu-header {
    display: none;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background-color: #666;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
}

/* Landing page hero - text bottom right */
.hero-section:has(img[src*="landing-hero"]) .hero-content {
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.hero-section:has(img[src*="landing-hero"]) .hero-text {
    text-align: right;
    max-width: 600px;
}

/* About page hero - text centered at bottom */
.hero-section:has(img[src*="crew"]) .hero-content {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.hero-section:has(img[src*="crew"]) .hero-text {
    text-align: center;
    max-width: 1000px;
}

.hero-section:has(img[src*="crew"]) .hero-text p {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 4rem 2rem;
    height: 100%;
}

.hero-text {
    background-color: transparent;
    color: #fff;
    padding: 0;
    max-width: 600px;
    border-radius: 0;
    box-shadow: none;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text strong {
    font-weight: bold;
}

/* ========== GENERAL IMAGE STYLES ========== */
main img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Standalone images in sections */
section > img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

section > div:not(.hero-content):not(.content-container):not(.carousel-wrapper):not(.projects-grid-container):not(.projects-carousel-container):not(.logo-icon):not(.logo-link) > img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Ensure all container images fit properly */
.service-image img,
.atout-image img,
.engagement-image img,
.atouts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========== MAIN CONTENT SECTION ========== */
.main-content {
    background-color: #fff;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(
        45deg,
        #f0f0f0,
        #f0f0f0 10px,
        #fff 10px,
        #fff 20px
    );
    opacity: 0.3;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-label {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.main-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: lighter;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.content-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2596be;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.read-more-btn:hover {
    background-color: #1e7799;
}

.read-more-btn .arrow {
    font-size: 0.8rem;
}

/* ========== DOMAINES D'ACTIVITÉS SECTION ========== */
.domaines-section {
    background-color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.domaines-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.domaines-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.domaines-geometric-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.6;
    z-index: 2;
}

.domaines-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 2rem;
    z-index: 1;
}

.domaines-intro {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.domaines-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.domaine-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.domaine-item:last-child {
    border-bottom: none;
}

.domaine-number {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.domaine-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* ========== DOMAINES D'ACTIVITÉS ABOUT PAGE SECTION ========== */
.domaines-about-section {
    background-color: #fff;
    padding: 4rem 2rem;
    position: relative;
}

.domaines-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.domaines-about-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

.domaines-about-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.domaine-about-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.domaine-about-number {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.domaine-about-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.domaines-about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.domaine-about-image-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.domaine-about-image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.domaine-about-image-label {
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

/* ========== NOS ATOUTS SECTION ========== */
.atouts-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.atouts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.atouts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.atouts-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.atouts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atouts-list li {
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.arrow-icon {
    color: #2596be;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.triangle-bullet {
    width: 0;
    height: 0;
    border-left: 8px solid #1A3657;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.atouts-image {
    position: relative;
}

.atouts-image .image-placeholder,
.atouts-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.atouts-image .image-placeholder {
    background-color: #e0e0e0;
}

.atouts-overlay-orange {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-bottom: 60px solid #FFA500;
    z-index: 2;
    transform: rotate(-270deg);
}

.atouts-overlay-blue {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 60px solid #1A3657;
    border-top: 60px solid transparent;
    z-index: 2;
    transform: rotate(270deg)
}

/* ========== NOTRE ENGAGEMENT SECTION ========== */
.engagement-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.engagement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.engagement-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.engagement-intro {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.engagement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2596be;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-top: 1rem;
}

.engagement-btn:hover {
    background-color: #1e7799;
}

.arrow-right {
    font-size: 1rem;
}

/* ========== COMMITMENT GRID SECTION ========== */
.commitment-grid-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.commitment-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.commitment-item {
    background-color: #fff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.commitment-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #333;
}

.commitment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.commitment-icon svg {
    width: 100%;
    height: 100%;
}

.commitment-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.commitment-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== NOS RÉALISATIONS SECTION ========== */
.realisations-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.realisations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.realisations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.realisations-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 1rem;
}

.realisations-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2596be;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    white-space: nowrap;
    align-self: flex-start;
}

.realisations-btn:hover {
    background-color: #1e7799;
}

/* ========== PROJECTS CAROUSEL SECTION ========== */
.projects-carousel-section {
    background-color: #fff;
    padding: 2rem 2rem 4rem;
}

.projects-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.carousel-slide {
    min-width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.project-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.project-image .image-placeholder,
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-image .image-placeholder {
    background-color: #e0e0e0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1.5rem;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 20px;
}

.carousel-arrow-right {
    right: 20px;
}

.project-description {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.4;
    margin-top: 1rem;
}

/* ========== REFERENCES SECTION ========== */
.references-section {
    background-color: #fff;
}

.references-title-section {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('assets/images/blue-rock.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.references-title-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.references-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}

.references-logos-section {
    background-color: #fff;
    padding: 4rem 2rem 0rem;
    position: relative;
}

.references-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.references-logos-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.references-geometric-shape {
    position: relative;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
    overflow: visible;
    top: 5px;
}

.references-geometric-shape img{
    height: 190px !important;
    width: 360px !important;
}



/* ========== PROJECTS GRID SECTION (Legacy) ========== */
.projects-grid-section {
    background-color: #fff;
    padding: 2rem 2rem 4rem;
}

.projects-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-item {
    display: flex;
    flex-direction: column;
}

/* ========== ATOUTS HERO SECTION ========== */
.atouts-hero-section {
    background-color: #666;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
}

.atouts-hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.atouts-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
}

.atouts-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* ========== ATOUTS PAGE SECTION ========== */
.atouts-page-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.atouts-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.atout-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atout-content {
    display: flex;
    align-items: flex-start;
}

.atout-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
}

.atout-title .dropdown-arrow {
    color: #2596be;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.atout-image {
    width: 100%;
    height: 400px;
}

.atout-image .image-placeholder,
.atout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.atout-image .image-placeholder {
    background-color: #e0e0e0;
}

/* ========== ENGAGEMENT PAGE SECTION ========== */
.engagement-page-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.engagement-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.engagement-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.engagement-content {
    display: flex;
    align-items: flex-start;
}

.engagement-item-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
}

.engagement-item-title .dropdown-arrow {
    color: #2596be;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.engagement-image {
    width: 100%;
    height: 400px;
}

.engagement-image .image-placeholder,
.engagement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.engagement-image .image-placeholder {
    background-color: #e0e0e0;
}

/* ========== ENGAGEMENT RSE SECTION ========== */
.engagement-rse-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.engagement-rse-container {
    max-width: 1200px;
    margin: 0 auto;
}

.engagement-rse-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.engagement-rse-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
}

.engagement-rse-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.engagement-rse-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.engagement-rse-overlay-orange-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 40px solid #FFA500;
    border-top: 0 solid transparent;
    z-index: 2;
}

.engagement-rse-overlay-orange-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0 solid transparent;
    border-top: 40px solid #FFA500;
    border-bottom: 0 solid transparent;
    z-index: 2;
}

/* ========== NOS PRIORITÉS SECTION ========== */
.priorites-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.priorites-container {
    max-width: 1200px;
    margin: 0 auto;
}

.priorites-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.priorites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.priorite-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.priorite-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.priorite-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.priorite-item-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.priorite-item-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* ========== FOOTER DECORATIVE SECTION ========== */
.footer-decorative-section {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.footer-decorative-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.footer-decorative-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: #1A3657;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    z-index: 1;
}

.footer-decorative-transparent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    height: 220px;
    background: transparent;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    z-index: 2;
    pointer-events: none;
}

.footer-decorative-orange {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    height: 280px;
    background: #FFA500;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    z-index: 3;
}

/* ========== FOOTER STYLES ========== */
.main-footer {
    background-color: #1A3657;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
}

.footer-logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-company-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.orange-text {
    color: #FFA500;
}

.footer-tagline {
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.services-list li {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-list .bullet {
    color: #999;
    font-size: 0.7rem;
}

.footer-divider {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-divider.vertical {
    width: 1px;
    height: 100%;
}

.footer-divider.horizontal {
    height: 1px;
    width: 100%;
}

.footer-divider.full-width {
    grid-column: 1 / -1;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-links li a {
    color: #ccc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s;
}

.footer-nav-links li a:hover {
    color: #fff;
}

.footer-arrow {
    font-size: 0.7rem;
    color: #999;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-email {
    color: #ccc;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-email:hover {
    color: #fff;
}

.email-instruction {
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.footer-phone {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-address {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
}

.social-heading {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
}

.footer-tagline-bottom {
    color: #ccc;
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-decorative-section .references-geometric-shape {
    position: absolute;
    top: 7px;
    align-items: end;
}

.footer-decorative-section .references-geometric-shape img{
    width: 350px;
    height: 190px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1235px) {
    .footer-container {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }
    
    .footer-center {
        grid-column: 1;
    }
    
    .footer-right {
        grid-column: 3;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .logo-section {
        padding: 1rem;
        flex: 0 0 auto;
        background-color: #fff;
        margin: 0;
    }

    .main-nav {
        height: 72px;
        padding: 1rem;
        flex: 1;
        justify-content: flex-end;
        background-color: #1A3657;
        margin: 0;
    }
    
    .main-header {
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
    }
    
    .main-header {
        z-index: 1000;
        position: relative;
    }
    
    .main-nav {
        position: relative;
        z-index: 1001;
    }
    
    .logo-section {
        position: relative;
        z-index: 1001;
    }
    
    .main-nav a,
    .logo-section a,
    .mobile-menu-toggle {
        position: relative;
        z-index: 1002;
        pointer-events: auto !important;
    }
    
    .main-nav .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #1A3657 !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        transition: left 0.3s !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        z-index: 1003 !important;
        overflow-y: auto !important;
        list-style: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
        align-items: flex-start !important;
    }
    
    .main-nav .nav-menu.active {
        left: 0 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        z-index: 1003 !important;
    }
    
    .main-nav .nav-menu.active li a {
        pointer-events: auto !important;
        z-index: 1004 !important;
    }

    .lang-btn{
        max-width: 100px;
        margin: 0 auto;
    }
    
    .mobile-menu-header {
        display: block;
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: none;
        background-color: #1A3657;
        min-height: 0;
        height: auto;
    }
    
    .mobile-menu-close {
        display: block;
        color: #fff;
        font-size: 2.5rem;
        font-weight: 300;
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.5rem;
        margin: 0;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1004;
        line-height: 1;
        width: auto;
        height: auto;
    }
    
    .mobile-menu-close:hover {
        opacity: 0.8;
    }
    
    .mobile-menu-close:focus {
        outline: 2px solid #fff;
        outline-offset: 2px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #3a5a7a;
    }
    
    .nav-menu li.mobile-menu-header {
        padding: 0;
        margin: 0;
        border-bottom: none;
        height: auto;
    }
    
    .nav-menu li:not(.mobile-menu-header):first-of-type {
        margin-top: 0;
        padding-top: 1rem;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .logo-section {
        gap: 0.5rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 0.6rem;
    }
    
    .logo-icon {
        height: 40px;
    }
    
    .hero-section,
    .atouts-hero-section {
        height: 50vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-section:has(img[src*="crew"]) .hero-text p {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-section:has(img[src*="landing-hero"]) .hero-content {
        padding-bottom: 2rem;
    }
    
    .hero-section:has(img[src*="crew"]) .hero-content {
        padding-bottom: 2rem;
    }
    
    .main-content {
        padding: 3rem 1rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }

    .domaines-section,
    .domaines-about-section,
    .atouts-section,
    .engagement-section,
    .commitment-grid-section,
    .realisations-section,
    .projects-grid-section {
        padding: 3rem 1rem;
    }
    
    .domaines-about-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .domaines-about-list {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .domaines-about-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .domaine-about-image-item img {
        height: 250px;
    }
    
    .engagement-rse-title,
    .priorites-title {
        font-size: 1.8rem;
    }
    
    .priorites-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .atouts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .atouts-title,
    .engagement-title,
    .realisations-title {
        font-size: 1.8rem;
    }

    .commitment-grid-container {
        grid-template-columns: 1fr;
        border-left: none;
    }
    
    .commitment-item {
        border-right: none;
        border-left: 1px solid #e0e0e0;
    }
    
    .commitment-item:first-child {
        border-top: none;
    }

    .realisations-header {
        flex-direction: column;
        gap: 2rem;
    }

    .realisations-btn {
        align-self: flex-start;
    }

    .projects-grid-container {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        min-width: 85%;
        padding: 0 0.5rem;
    }

    .project-image {
        height: 300px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-arrow-left {
        left: 10px;
    }

    .carousel-arrow-right {
        right: 10px;
    }

    .atouts-page-section,
    .engagement-page-section,
    .realisations-services-section,
    .realisations-contact-section {
        padding: 3rem 1rem;
    }

    .realisations-main-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-image {
        height: 300px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .contact-main-heading {
        font-size: 2rem;
    }

    .contact-social-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-cta-button {
        width: 100%;
        justify-content: center;
    }

    .atouts-hero-title {
        font-size: 2.5rem;
    }

    .atouts-page-container,
    .engagement-page-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .atout-image,
    .engagement-image {
        height: 300px;
    }

    .atout-title,
    .engagement-item-title {
        font-size: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        grid-column: 1;
    }
    
    .footer-divider.vertical {
        display: none;
    }
    
    .footer-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1rem;
    }
    
    .company-tagline {
        font-size: 0.55rem;
    }
    
    .hero-section,
    .atouts-hero-section {
        height: 40vh;
        min-height: 300px;
        max-height: 500px;
    }
    
    .hero-section:has(img[src*="crew"]) .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .content-text {
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .atouts-title,
    .engagement-title,
    .realisations-title {
        font-size: 1.5rem;
    }

    .atouts-image .image-placeholder {
        height: 300px;
    }

    .commitment-item {
        padding: 2rem 1.5rem;
    }

    .project-image {
        height: 250px;
    }

    .atouts-hero-title {
        font-size: 2rem;
    }

    .atout-title,
    .engagement-item-title {
        font-size: 1.3rem;
    }

    .atout-image,
    .engagement-image {
        height: 250px;
    }

    .project-image {
        height: 250px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .realisations-main-title {
        font-size: 1.8rem;
    }

    .service-image {
        height: 250px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .contact-main-heading {
        font-size: 1.8rem;
    }

    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1rem;
    }

    .contact-page-title {
        font-size: 2.5rem;
    }

    .contact-page-subtitle {
        font-size: 1.3rem;
    }

    .contact-form-column {
        padding: 2rem;
    }

    .contact-form-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-page-title {
        font-size: 2rem;
    }

    .contact-form-column {
        padding: 1.5rem;
    }

    .references-geometric-shape  img{
        height: 140px;
    }
}

/* ========== REALISATIONS PAGE STYLES ========== */
.realisations-services-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.realisations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.realisations-main-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-image {
    width: 100%;
    height: 350px;
}

.service-image .image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    object-fit: cover;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}

.service-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
}

.service-description p {
    margin-bottom: 0.8rem;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-description strong {
    font-weight: bold;
}

/* ========== REALISATIONS CONTACT SECTION ========== */
.realisations-contact-section {
    background-color: #646b7a;
    padding: 4rem 2rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.realisations-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-geometric-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 200px;
    clip-path: polygon(0 100%, 0 70%, 50% 0, 100% 70%, 100% 100%);
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.contact-geometric-shape::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 120px;
    clip-path: polygon(0 100%, 0 75%, 50% 0, 100% 75%, 100% 100%);
    background-color: #1A3657;
    z-index: 1;
}

.contact-section-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1.5rem auto;
}

.contact-main-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 1.5rem 0;
}

.contact-details-list {
    max-width: 800px;
    margin: 3rem auto;
}

.contact-detail-item {
    text-align: center;
    padding: 1.5rem 0;
}

.contact-label {
    color: #ccc;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-info {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info:last-child {
    margin-bottom: 0;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-social-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.social-follow-text {
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-social-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.contact-social-icon:hover {
    opacity: 0.8;
}

.contact-website-url {
    margin-top: 2rem;
    text-align: center;
}

.contact-website-url p {
    color: #999;
    font-weight: 100;
    font-size: 42px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.6;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2596be;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-left: auto;
    white-space: nowrap;
}

.contact-cta-button:hover {
    background-color: #1e7799;
}

.arrow-right {
    font-size: 0.8rem;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-page-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #333;
    padding: 0;
    overflow: hidden;
}

.contact-page-section > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.contact-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-page-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Left Column: Contact Information */
.contact-info-column {
    color: #fff;
}

.contact-page-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page-subtitle {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-label {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-info-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-phone-number {
    font-size: 1.3rem;
    font-weight: bold;
}

.contact-website {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Right Column: Contact Form */
.contact-form-column {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2596be;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background-color: #2596be;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background-color: #1e7799;
}

/* Social Media Section Below Form */
.contact-social-section-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    width: 100%;
}

.social-follow-text-bottom {
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
}

.contact-social-icons-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-social-icon-bottom {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-social-icon-bottom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1); /* Makes icons white */
}

.contact-social-icon-bottom:hover {
    opacity: 0.7;
}

/* Workers Image Section */
.contact-workers-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.contact-workers-section .references-geometric-shape{
    position: absolute;
    align-items: end;
}

.contact-workers-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 642px) {
    .realisations-container .service-block{
        grid-template-columns: 1fr;
    }
}

/* ========== REFERENCES SECTION RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    .references-title-section {
        height: 250px;
    }
    
    .references-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .references-logos-section {
        padding: 3rem 1.5rem;
    }
    
}

@media (max-width: 480px) {
    .references-title-section {
        height: 200px;
    }
    
    .references-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        padding: 0 1rem;
    }
    
    .references-logos-section {
        padding: 2rem 1rem;
    }
    
    .references-triangle-yellow {
        width: 180px;
        height: 180px;
    }
    
    .references-triangle-white {
        width: 130px;
        height: 130px;
    }
    
    .references-triangle-blue {
        width: 80px;
        height: 80px;
    }
}

/* ========== CONTACT PAGE RESPONSIVE STYLES ========== */
@media (max-width: 968px) {
    .contact-page-container {
        padding: 3rem 1.5rem;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-page-title {
        font-size: 2.5rem;
    }
    
    .contact-page-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-column {
        padding: 2rem;
    }
    
    .contact-social-section-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-follow-text-bottom {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .contact-page-container {
        padding: 2rem 1rem;
    }
    
    .contact-page-section {
        min-height: 100vh;
    }
    
    
    .contact-page-overlay {
        min-height: 100vh;
    }
    
    .contact-page-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-list {
        gap: 1.5rem;
    }
    
    .contact-info-label {
        font-size: 0.85rem;
    }
    
    .contact-info-text {
        font-size: 0.9rem;
    }
    
    .contact-phone-number {
        font-size: 1.1rem;
    }
    
    .contact-website {
        font-size: 1rem;
    }
    
    .contact-form-column {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-social-section-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .social-follow-text-bottom {
        font-size: 0.9rem;
    }
    
    .contact-social-icon-bottom {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .contact-page-container {
        padding: 1.5rem 0.75rem;
    }
    
    .contact-page-title {
        font-size: 1.75rem;
    }
    
    .contact-page-subtitle {
        font-size: 1rem;
    }
    
    .contact-info-list {
        gap: 1.25rem;
    }
    
    .contact-form-column {
        padding: 1.25rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
    }
    
    .contact-social-section-bottom {
        gap: 0.5rem;
    }
    
    .contact-social-icons-bottom {
        gap: 0.75rem;
    }
    
    .contact-social-icon-bottom {
        width: 28px;
        height: 28px;
    }
}


