/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #2B8FC7;
    --primary-dark: #2380B5;
    --primary-light: #4BA8DB;
    --secondary: #8B8E94;
    --accent: #2B8FC7;
    --dark: #4A5568;
    --dark-light: #718096;
    --gray: #8B8E94;
    --gray-light: #A0AEC0;
    --light: #F7FAFC;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2B8FC7 0%, #4BA8DB 100%);
    --gradient-dark: linear-gradient(135deg, #5A6978 0%, #2B8FC7 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.1);
    --shadow-primary: 0 10px 40px rgba(43, 143, 199, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    gap: 8px;
}

.steel-beam {
    width: 8px;
    height: 60px;
    background: var(--primary);
    border-radius: 4px;
    animation: loadBeam 1s ease-in-out infinite;
}

.steel-beam:nth-child(2) {
    animation-delay: 0.2s;
    height: 80px;
}

.steel-beam:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadBeam {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2% 0 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.lang-option {
    min-width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-option.active {
    background: transparent;
    color: var(--white);
}

.lang-option i {
    font-size: 15px;
}

.lang-option:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.navbar.scrolled .lang-option,
.navbar.scrolled .lang-option.active {
    color: var(--primary);
}

.navbar.scrolled .lang-option:hover {
    color: var(--primary-dark);
}

.nav-search-bar {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-search-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-search-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}

.navbar.scrolled .nav-search-toggle {
    border: 1px solid rgba(43, 143, 199, 0.22);
    background: rgba(43, 143, 199, 0.08);
    color: var(--primary);
}

@media (max-width: 1200px) {
    .nav-actions {
        gap: 12px;
    }
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-overlay-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(43, 143, 199, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(7, 14, 24, 0.82), rgba(7, 14, 24, 0.94));
    backdrop-filter: blur(14px);
}

.search-overlay-panel {
    position: relative;
    width: min(1000px, calc(100% - 40px));
    margin: 60px auto;
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.search-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(43, 143, 199, 0.18);
    background: rgba(43, 143, 199, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-overlay-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.search-overlay-header {
    max-width: 720px;
    margin-bottom: 30px;
}

.search-overlay-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(43, 143, 199, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.search-overlay-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--dark);
}

.search-overlay-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

.search-overlay-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 14px 20px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(43, 143, 199, 0.16);
    box-shadow: 0 14px 40px rgba(43, 143, 199, 0.08);
    margin-bottom: 30px;
}

.search-overlay-bar > i {
    color: var(--primary);
    font-size: 18px;
}

.search-overlay-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--dark);
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.search-overlay-submit {
    border: none;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-overlay-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(43, 143, 199, 0.24);
}

.search-overlay-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
}

.search-overlay-block {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(43, 143, 199, 0.12);
}

.search-overlay-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

.search-tag-list,
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-tag,
.brand-pill {
    border: 1px solid rgba(43, 143, 199, 0.16);
    background: rgba(43, 143, 199, 0.06);
    color: var(--dark);
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-tag:hover,
.brand-pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.search-overlay-brands {
    background:
        linear-gradient(180deg, rgba(43, 143, 199, 0.08), rgba(255, 255, 255, 0.95));
}

@media (max-width: 992px) {
    .lang-switcher {
        display: none;
    }

    .nav-search-bar {
        display: none;
    }

    .search-overlay-panel {
        width: min(100%, calc(100% - 24px));
        margin: 20px auto;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .search-overlay-grid {
        grid-template-columns: 1fr;
    }

    .search-overlay-bar {
        flex-wrap: wrap;
        border-radius: 24px;
    }

    .search-overlay-submit {
        width: 100%;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.scrolled .color-logo{
	display: flex !important;
}

.scrolled .white-logo{
	display: none !important;
}

.logo-img {
    height: 115px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.navbar.scrolled .logo-img {
    height: 95px;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-dropdown-icon {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 170px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 100;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 500;
    color: var(--dark) !important;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-dropdown a::after {
    display: none !important;
}

.nav-dropdown a:hover {
    color: var(--primary) !important;
    background: rgba(43, 143, 199, 0.06);
    padding-left: 26px !important;
}

.nav-cta {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(43, 143, 199, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 0;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--dark);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-video {
    overflow: hidden;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 106, 148, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0% 0 2%;
    max-width: 900px;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.2);
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 6vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-title .highlight {
    color: var(--primary-light);
}

.slide-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.slide-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slide-btns .btn {
    font-size: 19px !important;
    font-weight: 100;
}

/* Animation for slide content */
.animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .animate-item:nth-child(1) { transition-delay: 0.2s; }
.slide.active .animate-item:nth-child(2) { transition-delay: 0.4s; }
.slide.active .animate-item:nth-child(3) { transition-delay: 0.6s; }
.slide.active .animate-item:nth-child(4) { transition-delay: 0.8s; }

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 10px;
}

/* Circular Rotating Titles */
.circular-titles {
    position: absolute;
    bottom: 60px;
    right: 5%;
    z-index: 10;
    overflow: visible;
}

.titles-circle {
    width: 155px;
    height: 155px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    overflow: visible;
}

.rotating-group {
    animation: rotateCircle 30s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-text {
    fill: #ffffff;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.7));
}

/* Center Static Text */
.center-number {
    fill: #ffffff;
    font-size: 39px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
}

.center-label {
    fill: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(43, 143, 199, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

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

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--light);
    transform: translateY(-3px);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(43, 143, 199, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    letter-spacing: -0.2px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.main-img {
    position: relative;
    height: 450px;
}

.eco-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 13px;
    opacity: 0.9;
}

.about-content .section-desc {
    margin-bottom: 35px;
}

.about-features {
    display: block;
    margin-bottom: 35px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: var(--white);
}

.feature-text h4 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 26px;
    color: var(--dark);
}

.feature-text p {
    font-size: 19px;
    color: var(--gray);
    line-height: 1.6;
}

.regional-reach-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 0;
}

.regional-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--dark);
}

.regional-country i {
    color: #2B8FC7;
    font-size: 14px;
}

.about-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 143, 199, 0.05) 0%, rgba(43, 143, 199, 0.02) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 70px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services-section::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -70px;
    background: radial-gradient(circle, rgba(43, 143, 199, 0.08) 0%, rgba(43, 143, 199, 0) 70%);
}

.services-section::after {
    width: 220px;
    height: 220px;
    bottom: 40px;
    left: -60px;
    background: radial-gradient(circle, rgba(43, 143, 199, 0.05) 0%, rgba(43, 143, 199, 0) 72%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-rows: 1fr auto auto;
    align-items: center;
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(43, 143, 199, 0.15);
    border-color: rgba(43, 143, 199, 0.2);
}

.service-icon-img {
    width: 145px;
    height: 145px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img i {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.9;
}

.service-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(43, 143, 199, 0.28));
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover .service-icon-img img {
    filter: drop-shadow(0 14px 30px rgba(43, 143, 199, 0.35));
    transform: translateY(-2px);
}

.services-grid .service-card:nth-child(2) .service-icon-img img {
    filter: drop-shadow(0 10px 22px rgba(196, 168, 126, 0.34));
}

.services-grid .service-card:nth-child(2):hover .service-icon-img img {
    filter: drop-shadow(0 14px 30px rgba(196, 168, 126, 0.42));
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
    line-height: 1.3;
    display: block;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    display: block;
}

.services-view-all {
    text-align: center;
    margin-top: 50px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.view-all-link:hover i {
    transform: translateX(5px);
}

.view-all-link i {
    transition: var(--transition);
}

.services-bg-element {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.03;
    border-radius: 50%;
}

/* ===== MARKETS SECTION ===== */
.markets-section {
    display: none !important;
}

/* Floating Particles */
.markets-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.markets-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 15s infinite;
}

.markets-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 8px; height: 8px; }
.markets-particles span:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; width: 12px; height: 12px; }
.markets-particles span:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; }
.markets-particles span:nth-child(4) { left: 50%; top: 70%; animation-delay: 6s; width: 6px; height: 6px; }
.markets-particles span:nth-child(5) { left: 65%; top: 15%; animation-delay: 8s; width: 14px; height: 14px; }
.markets-particles span:nth-child(6) { left: 75%; top: 60%; animation-delay: 10s; }
.markets-particles span:nth-child(7) { left: 85%; top: 35%; animation-delay: 12s; width: 8px; height: 8px; }
.markets-particles span:nth-child(8) { left: 90%; top: 85%; animation-delay: 14s; }
.markets-particles span:nth-child(9) { left: 5%; top: 50%; animation-delay: 3s; width: 10px; height: 10px; }
.markets-particles span:nth-child(10) { left: 45%; top: 90%; animation-delay: 7s; width: 6px; height: 6px; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.3; }
}

/* Interactive Container */
.markets-interactive {
    position: relative;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(43, 143, 199, 0.12);
    overflow: visible;
    min-height: 450px;
}

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 143, 199, 0.15) 0%, transparent 70%);
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

/* SVG Map */
.mena-map {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.map-outline {
    animation: mapDraw 3s ease forwards;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

@keyframes mapDraw {
    to { stroke-dashoffset: 0; }
}

/* Route Lines */
.route-lines .route-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    opacity: 0;
    animation: routeAnimate 2s ease forwards;
}

.route-line:nth-child(1) { animation-delay: 0.5s; }
.route-line:nth-child(2) { animation-delay: 0.7s; }
.route-line:nth-child(3) { animation-delay: 0.9s; }
.route-line:nth-child(4) { animation-delay: 1.1s; }
.route-line:nth-child(5) { animation-delay: 1.3s; }
.route-line:nth-child(6) { animation-delay: 1.5s; }
.route-line:nth-child(7) { animation-delay: 1.7s; }
.route-line:nth-child(8) { animation-delay: 1.9s; }

@keyframes routeAnimate {
    0% { opacity: 0; stroke-dashoffset: 100; }
    100% { opacity: 0.6; stroke-dashoffset: 0; }
}

/* Stats Bar */
.markets-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(43, 143, 199, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 143, 199, 0.1);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 143, 199, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 20px;
    color: var(--white);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-box .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-box .stat-number.with-after::after {
    content: '+';
    font-size: 20px;
}

.stat-text {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin: 0;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.why-choose-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(43 143 199 / 67%) 0%, rgba(30, 106, 148, 0.88) 100%);
    z-index: 1;
}

.why-choose-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-choose-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.why-choose-title .highlight {
    color: var(--white);
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}

.why-choose-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-box-item {
        padding: 25px 15px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .stat-value sup {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .why-choose-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box-item {
        padding: 20px 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 90px 0 10px;
}

/* Categories Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-card.large {
    grid-row: span 2;
    height: 100%;
    max-height: 520px;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.85) 40%, rgba(30, 41, 59, 0.5) 70%, transparent 100%);
    padding: 35px 30px;
    color: white;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
}

.category-card.large .category-overlay h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.category-card.small .category-overlay {
    min-height: 80px;
}

.category-card.small .category-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.category-cards-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.category-card.small {
    height: 100%;
    min-height: 250px;
    max-height: 250px;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    position: relative;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 106, 148, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transform: scale(0);
    transition: var(--transition);
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-info {
    padding: 25px;
    background: var(--white);
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(43, 143, 199, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.project-info p {
    font-size: 14px;
    color: var(--gray);
}

.projects-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: none !important;
}

.process-section .section-tag,
.process-section .section-title,
.process-section .section-subtitle {
    color: var(--white);
}

.process-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.process-section .section-title .highlight {
    color: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 12.5%;
    width: 75%;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-section .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-section .step-content {
    background: rgba(255, 255, 255, 0.12);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    width: 100%;
    flex: 1;
}

.process-section .process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.process-section .step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-section .step-icon i {
    font-size: 24px;
    color: var(--white);
}

.process-section .step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.process-section .step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ===== SCROLL PROMO SECTION ===== */
.promo-scroll-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.promo-scroll-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 26px;
    align-items: start;
}

.promo-preview-card {
    position: sticky;
    top: 140px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.14);
    background: #ffffff;
    min-height: 420px;
}

.promo-preview-image {
    position: relative;
    overflow: hidden;
}

.promo-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.promo-preview-content {
    padding: 36px 34px;
    background: linear-gradient(160deg, #f5f0fc 0%, #f2f7fd 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-chip {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(43, 143, 199, 0.1);
    margin-bottom: 14px;
}

.promo-preview-content h3 {
    font-size: clamp(26px, 2.6vw, 40px);
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--dark);
}

.promo-preview-content h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.promo-preview-content p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray);
    margin: 0 0 8px;
}

.promo-scroll-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-step {
    background: #ffffff;
    border: 1px solid rgba(43, 143, 199, 0.12);
    border-radius: 18px;
    padding: 28px 24px;
    transition: var(--transition);
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-step.active {
    border-color: rgba(43, 143, 199, 0.38);
    box-shadow: 0 14px 28px rgba(43, 143, 199, 0.12);
}

.promo-step-index {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.promo-step h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--dark);
}

.promo-step p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 1200px) {
    .promo-scroll-layout {
        grid-template-columns: 1fr;
    }

    .promo-preview-card {
        position: relative;
        top: auto;
        min-height: 380px;
    }

    .promo-step {
        min-height: 0;
        padding: 22px 20px;
    }
}

@media (max-width: 768px) {
    .promo-scroll-section {
        padding: 60px 0;
    }

    .promo-preview-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .promo-preview-image {
        min-height: 240px;
    }

    .promo-preview-content {
        padding: 24px 20px;
    }

    .promo-preview-content h3 {
        font-size: clamp(22px, 6vw, 30px);
    }

    .promo-step {
        min-height: 0;
        padding: 20px 18px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 90px 0;
}

.testimonials-swiper {
    width: 100%;
    padding: 10px 0 40px;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-swiper .testimonial-card {
    width: 100%;
    height: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--accent);
    font-size: 16px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content h2 .highlight {
    color: var(--accent);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-shapes .shape {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    display: none !important;
}

/* Contact section styles kept for reference but hidden */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-info .section-desc {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    transition: var(--transition);
    height: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
    background: transparent;
    padding: 0 5px;
}

.form-group textarea ~ label {
    top: 25px;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: 0;
    font-size: 12px;
    color: var(--primary);
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.contact-form button {
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(160deg, #566677 0%, #4d5b6b 100%);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    padding: 84px 0 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr 1.1fr;
    gap: 38px;
    align-items: start;
}

.footer-links,
.footer-newsletter {
    padding-top: 20px;
}

.footer-about {
    max-width: 430px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 85px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.72;
    margin: 0px 0 30px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 35px 0 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-address h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-address p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
    margin-bottom: 9px;
}

.footer-phone {
    font-weight: 600;
    color: var(--white);
    margin-top: 15px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: 0.04em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-address-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-address-line i {
    width: 14px;
    margin-top: 4px;
    color: var(--primary-light);
}

.footer-address-line span {
    display: block;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.45);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.68);
}

.footer-credit {
    font-size: 14px;
    letter-spacing: 0.2px;
}

.footer-credit a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.clients-bg-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 143, 199, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-section .section-subtitle {
    margin-top: 10px;
}

/* Swiper Container */
.clients-swiper {
    width: 100%;
    padding: 20px 50px;
    position: relative;
}

.clients-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.clients-swiper .swiper-slide {
    width: auto;
}

/* Client Card */
.client-card {
    background: transparent;
    border-radius: 16px;
    padding: 18px 12px;
    box-shadow: none;
    border: none;
    transition: all 0.4s ease;
    height: 120px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo img {
    max-height: 85px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo img {
    transform: scale(1.04);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    box-shadow: 0 8px 30px rgba(43, 143, 199, 0.3);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
    .clients-swiper {
        padding: 20px 20px;
    }
    
    .client-card {
        height: 120px;
        padding: 25px 15px;
    }
    
    .client-logo img {
        max-height: 60px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}


/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

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

/* Extra Large Screens (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
    
    
    .slide-title {
        font-size: clamp(24px, 6vw, 70px);
    }
    
    .slide-desc {
        font-size: 20px;
        max-width: 700px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .service-card {
        padding: 50px 40px;
    }
    
    .projects-grid {
        gap: 40px;
    }
    
    .project-img {
        aspect-ratio: 1/1;
    }
    
    .testimonials-swiper {
        padding-bottom: 35px;
    }
    
    .footer-grid {
        gap: 80px;
    }
}

/* Large Screens (1400px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    /* No specific overrides needed */
}

@media (max-width: 1200px) {
    .map-container {
        padding: 30px;
    }
    
    .marker-dot {
        width: 38px;
        height: 38px;
    }
    
    .marker-dot img {
        width: 28px;
        height: 28px;
    }
    
    .map-marker.hq .marker-dot,
    .map-marker.key .marker-dot {
        width: 48px;
        height: 48px;
    }
    
    .map-marker.hq .marker-dot img,
    .map-marker.key .marker-dot img {
        width: 36px;
        height: 36px;
    }
    
    .markets-stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .about-grid {
        gap: 50px;
    }
    
}

/* Tablets (768px - 991px) */
@media (max-width: 992px) {
    .circular-titles {
        bottom: 90px;
        right: 3%;
    }
    
    .titles-circle {
        width: 145px;
        height: 145px;
    }
    
    .rotating-group {
        transform-origin: center;
        transform-box: fill-box;
    }
    
    .circle-text {
        font-size: 10px;
        letter-spacing: 1.2px;
    }
    
    .markets-section {
        padding: 80px 0;
    }
    
    .map-container {
        padding: 25px;
        border-radius: 24px;
        margin-bottom: 40px;
    }
    
    .mena-map {
        min-height: 280px;
    }
    
    .marker-dot {
        width: 32px;
        height: 32px;
        border-width: 2px;
    }
    
    .marker-dot img {
        width: 24px;
        height: 24px;
    }
    
    .map-marker.hq .marker-dot,
    .map-marker.key .marker-dot {
        width: 42px;
        height: 42px;
    }
    
    .map-marker.hq .marker-dot img,
    .map-marker.key .marker-dot img {
        width: 32px;
        height: 32px;
    }
    
    .marker-pulse {
        width: 32px;
        height: 32px;
    }
    
    .map-marker.hq .marker-pulse,
    .map-marker.key .marker-pulse {
        width: 42px;
        height: 42px;
    }
    
    .marker-label {
        display: none;
    }
    
    .markets-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-box {
        padding: 18px 15px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-box .stat-number {
        font-size: 24px;
    }
    
    .country-card {
        width: 110px;
        padding: 18px 12px;
    }
    
    .country-flag {
        width: 48px;
        height: 48px;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Menu Styles */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        background: var(--white);
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 20px 20px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }
    
    .nav-links.active a {
        color: var(--dark);
        font-size: 16px;
        padding: 10px 0;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0 0 0 18px;
        min-width: 0;
    }

    .has-dropdown:hover .nav-dropdown {
        transform: none;
    }

    .nav-dropdown a {
        padding: 8px 0 !important;
        font-size: 15px !important;
        color: var(--gray) !important;
    }

    .nav-dropdown a:hover {
        padding-left: 6px !important;
        background: transparent;
        color: var(--primary) !important;
    }
    
    .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);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-slider {
        min-height: 600px;
    }
    
    .slide-content {
        padding: 0 5% 0 8%;
        max-width: 100%;
    }

    .nav-container {
        padding: 0 3.5%;
    }

    .logo-img {
        height: 88px;
    }

    .navbar.scrolled .logo-img {
        height: 74px;
    }
    
    .slide-title {
        font-size: clamp(24px, 6vw, 70px);
    }
    
    .slide-desc {
        font-size: 18px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-img {
        aspect-ratio: 4/3;
    }
    
    .testimonials-swiper {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-links,
    .footer-newsletter {
        padding-top: 0;
    }
    
    .section-title {
        font-size: clamp(28px, 4vw, 42px);
    }
    
    .about-section,
    .services-section,
    .sustainability-section,
    .projects-section,
    .process-section,
    .testimonials-section,
    .contact-section {
        padding: 80px 0;
    }
    
}

/* Small Tablets & Large Phones (576px - 767px) */
@media (max-width: 1200px) {
    .categories-grid {
        gap: 18px;
    }
    
    .category-card.small {
        min-height: 200px;
    }
    
    .category-card.large .category-overlay h3 {
        font-size: 34px;
    }
    
    .category-card.small .category-overlay h3 {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .categories-grid {
        gap: 15px;
    }
    
    .category-card.small {
        min-height: 180px;
    }
    
    .category-card.large .category-overlay h3 {
        font-size: 32px;
    }
    
    .category-card.small .category-overlay h3 {
        font-size: 16px;
    }
    
    .category-overlay {
        padding: 30px 25px;
        min-height: 120px;
    }
    
    .category-card.small .category-overlay {
        min-height: 75px;
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card.large {
        grid-row: span 1;
        min-height: 350px;
        height: auto;
    }
    
    .category-cards-small {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        height: auto;
    }
    
    .category-card.small {
        min-height: 180px;
    }
    
    .category-card.large .category-overlay h3 {
        font-size: 30px;
    }
    
    .category-card.small .category-overlay h3 {
        font-size: 15px;
    }
    
    .category-overlay {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card.large {
        grid-row: span 1;
        min-height: 300px;
        height: auto;
    }
    
    .category-cards-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        height: auto;
    }
    
    .category-card.small {
        min-height: 200px;
    }
    
    .category-card.large .category-overlay h3 {
        font-size: 28px;
    }
    
    .category-card.small .category-overlay h3 {
        font-size: 15px;
    }
    
    .category-overlay {
        padding: 20px;
    }
    
    .projects-section {
        padding: 80px 0;
    }
    
    .circular-titles {
        bottom: 80px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .titles-circle {
        width: 125px;
        height: 125px;
    }
    
    .rotating-group {
        transform-origin: center;
        transform-box: fill-box;
    }
    
    .circle-text {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .markets-section {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .map-glow {
        width: 200px;
        height: 200px;
    }
    
    .mena-map {
        min-height: 220px;
    }
    
    .marker-dot {
        width: 28px;
        height: 28px;
        border-width: 2px;
    }
    
    .marker-dot img {
        width: 20px;
        height: 20px;
    }
    
    .map-marker.hq .marker-dot,
    .map-marker.key .marker-dot {
        width: 36px;
        height: 36px;
    }
    
    .map-marker.hq .marker-dot img,
    .map-marker.key .marker-dot img {
        width: 26px;
        height: 26px;
    }
    
    .marker-pulse {
        width: 28px;
        height: 28px;
    }
    
    .map-marker.hq .marker-pulse,
    .map-marker.key .marker-pulse {
        width: 36px;
        height: 36px;
    }
    
    .route-lines {
        display: none;
    }
    
    .markets-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .stat-box {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .stat-icon i {
        font-size: 16px;
    }
    
    .stat-box .stat-number {
        font-size: 22px;
    }
    
    .stat-text {
        font-size: 11px;
    }
    
    .country-cards-scroll {
        gap: 12px;
        padding: 15px 5px;
    }
    
    .country-card {
        width: 100px;
        padding: 15px 10px;
        border-radius: 16px;
    }
    
    .country-flag {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }
    
    .country-card h4 {
        font-size: 12px;
    }
    
    .hq-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .markets-particles span {
        display: none;
    }
    
    .nav-container {
        padding: 0 2%;
    }
    
    .slide-content {
        padding: 0 5%;
        text-align: center;
        align-items: center;
    }
    
    .slide-tag {
        font-size: 18px;
        padding: 6px 14px;
    }
    
    .slide-title {
        font-size: clamp(24px, 6vw, 70px);
    }
    
    .slide-desc {
        font-size: 18px;
        text-align: center;
    }
    
    .slide-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .slide-btns .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    .services-grid,
    .projects-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 25px;
        min-height: auto;
        grid-template-rows: auto;
    }

    .service-icon-img {
        width: 150px;
        height: 150px;
    }

    .service-card h3,
    .service-card p {
        min-height: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full {
        grid-column: span 1;
    }
    
    .main-img {
        height: auto;
    }
    
    .experience-badge {
        right: auto;
        left: 20px;
        top: auto;
        bottom: -20px;
        transform: none;
        padding: 20px;
    }
    
    .experience-badge .years {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 28px;
    }

    .footer-links,
    .footer-newsletter {
        padding-top: 0;
    }
    
    .footer-social-links {
        justify-content: flex-start;
    }
    
    .footer-links ul {
        align-items: flex-start;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: clamp(26px, 5vw, 36px);
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .step-content {
        padding: 25px 20px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature:hover {
        transform: translateY(-5px);
    }
    
    .about-section,
    .services-section,
    .sustainability-section,
    .projects-section,
    .process-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Mobile Phones (max-width: 575px) */
@media (max-width: 575px) {
    .category-cards-small {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card.large {
        min-height: 280px;
    }
    
    .category-card.small {
        min-height: 200px;
    }
    
    .category-overlay {
        padding: 25px 20px;
        min-height: 95px;
    }
    
    .category-card.small .category-overlay {
        min-height: 70px;
    }
    
    .category-card.large .category-overlay h3 {
        font-size: 26px;
    }
    
    .category-card.small .category-overlay h3 {
        font-size: 16px;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        gap: 10px;
    }
    
    .category-cards-small {
        gap: 10px;
    }
    
    .circular-titles {
        display: none;
    }

    .hero-slider {
        min-height: 550px;
    }

    .slide-title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .slide-desc {
        font-size: 16px;
    }

    .promo-scroll-section {
        padding: 50px 0;
    }

    .promo-preview-content {
        padding: 20px 16px;
    }

    .promo-preview-content h3 {
        font-size: clamp(20px, 5vw, 26px);
    }

    .promo-step {
        padding: 18px 16px;
    }

    .promo-preview-image {
        min-height: 220px;
    }
    
    .markets-section {
        padding: 50px 0;
    }
    
    .map-container {
        padding: 15px;
        border-radius: 16px;
        margin-bottom: 25px;
    }
    
    .mena-map {
        min-height: 180px;
    }
    
    .marker-dot {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }
    
    .marker-dot img {
        width: 16px;
        height: 16px;
    }
    
    .map-marker.hq .marker-dot,
    .map-marker.key .marker-dot {
        width: 30px;
        height: 30px;
    }
    
    .map-marker.hq .marker-dot img,
    .map-marker.key .marker-dot img {
        width: 22px;
        height: 22px;
    }
    
    .marker-pulse {
        width: 24px;
        height: 24px;
    }
    
    .map-marker.hq .marker-pulse,
    .map-marker.key .marker-pulse {
        width: 30px;
        height: 30px;
    }
    
    .map-glow {
        width: 150px;
        height: 150px;
    }
    
    .markets-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .stat-box {
        padding: 12px 10px;
        gap: 10px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
    
    .stat-icon i {
        font-size: 14px;
    }
    
    .stat-box .stat-number {
        font-size: 18px;
    }
    
    .stat-box .stat-number::after {
        font-size: 14px;
    }
    
    .stat-text {
        font-size: 10px;
    }
    
    .country-cards-scroll {
        gap: 10px;
        padding: 10px 5px;
    }
    
    .country-card {
        width: 85px;
        padding: 12px 8px;
        border-radius: 14px;
    }
    
    .country-flag {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }
    
    .country-card h4 {
        font-size: 11px;
    }
    
    .hq-badge {
        font-size: 8px;
        padding: 2px 6px;
        margin-top: 6px;
    }
    
    .key-badge {
        width: 18px;
        height: 18px;
        font-size: 8px;
        top: 5px;
        right: 5px;
    }
}

/* Very Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .logo-icon {
        width: 35px;
        height: 32px;
    }
    
    .logo-icon .beam {
        width: 8px;
    }
    
    .beam-1 { height: 20px; }
    .beam-2 { height: 32px; }
    .beam-3 { height: 24px; }
    
    .hero-slider {
        min-height: 100vh;
        min-height: 100svh; /* Small viewport height for mobile browsers */
    }
    
    .slide-title {
        font-size: clamp(24px, 6vw, 70px);
        margin-bottom: 20px;
    }
    
    .slide-desc {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 1.7;
    }
    
    .slide-tag {
        font-size: 20px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .section-tag {
        font-size: 15px;
        padding: 6px 14px;
    }
    
    .section-subtitle,
    .section-desc {
        font-size: 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-number {
        font-size: 50px;
    }
    
    .project-img {
        aspect-ratio: 4/3;
    }
    
    .project-info {
        padding: 15px;
    }
    
    .project-info h3 {
        font-size: 16px;
    }
    
    .project-info p {
        font-size: 13px;
    }
    
    .project-category {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .main-img {
        height: auto;
    }
    
    .experience-badge {
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 11px;
    }
    
    .eco-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 20px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .author-info span {
        font-size: 13px;
    }
    
    .stars i {
        font-size: 14px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(22px, 6vw, 32px);
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-text h4 {
        font-size: 16px;
    }
    
    .contact-text p {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-tagline {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .footer-heading {
        font-size: 13px;
        margin: 18px 0 12px;
        letter-spacing: 0.06em;
    }
    
    .footer-logo .logo-text {
        font-size: 18px;
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-newsletter p {
        font-size: 14px;
    }

    .footer-social-links a {
        width: 36px;
        height: 36px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 12px 18px;
    }
    
    .newsletter-form button {
        width: 100%;
        height: 45px;
        border-radius: 50px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 12px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }

    .categories-grid {
        gap: 8px;
    }

    .category-card.large .category-overlay h3 {
        font-size: 24px;
    }

    .category-card.small .category-overlay h3 {
        font-size: 14px;
    }

    .promo-scroll-section {
        padding: 40px 0;
    }

    .promo-preview-image {
        min-height: 200px;
    }

    .why-choose-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .clients-section {
        padding: 60px 0;
    }

    .client-card {
        height: 100px;
        padding: 20px 12px;
    }

    .client-logo img {
        max-height: 50px;
    }
}

/* Extra Small Phones (max-width: 375px) */
@media (max-width: 375px) {
    .slide-title {
        font-size: clamp(22px, 8vw, 34px);
    }
    
    .slide-desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }

    .categories-grid {
        gap: 6px;
    }

    .category-card.large .category-overlay h3 {
        font-size: 22px;
    }

    .stat-value {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .cta-content p {
        font-size: 13px;
    }

    .promo-preview-content h3 {
        font-size: 20px;
    }

    .promo-preview-content p {
        font-size: 14px;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        min-height: 100vh;
    }
    
    .slide-content {
        padding-top: 80px;
    }
    
    .slide-title {
        font-size: clamp(24px, 6vw, 70px);
        margin-bottom: 20px;
    }
    
    .slide-desc {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .slide-tag {
        margin-bottom: 15px;
    }
    
    .slider-controls {
        bottom: 10px;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-bg {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .preloader,
    .slider-controls,
    .scroll-indicator,
    .back-to-top,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero-slider {
        height: auto;
        min-height: auto;
    }
    
    .slide {
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    
    .slide-overlay {
        background: transparent;
    }
    
    .slide-content {
        color: #000;
    }
    
    .slide-title,
    .slide-desc {
        color: #000;
    }
}

