@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --navy: #002D62;
    --navy-light: #1a4a7a;
    --red: #D32F2F;
    --red-light: #e55a5a;
    --white: #ffffff;
    --off-white: #fefefe;
    --gold: #C5A572;
    --gold-glow: rgba(197, 165, 114, 0.3);
    --glass-white: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-dark: #1a2c3e;
    --text-light: #f8fafc;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(0, 45, 98, 0.08);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), var(--navy), var(--gold), var(--red), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: center;
}

.navbar:hover::after {
    transform: scaleX(1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 45, 98, 0.12);
}

.navbar.fixed {
    transition: all 0.4s ease;
}

.navbar.fixed.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    transition: padding 0.3s ease;
    width: 100%;
}

.navbar.scrolled .navbar-container {
    padding: 8px 40px;
}

.logo-group {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.logo-group:hover .nav-logo {
    transform: scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 4px 8px rgba(211,47,47,0.15));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

/*-- Base Link Styling --*/
.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: center;
}

/*-- Underline Hover & Active Effect --*/
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 4px; 
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red, #C41230), var(--navy, #002D62));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::before {
    width: 20%;
}

.nav-links a:hover {
    color: var(--red);
    background: rgba(211, 47, 47, 0.05);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--red);
    background: rgba(196, 18, 48, 0.08);
    box-shadow: none;
}

.nav-links a.active::before {
    display: block !important;
    width: 60% !important;
    height: 2px !important;
    bottom: 4px !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, var(--red), var(--navy)) !important;
}

.nav-links a i {
    font-size: 0.95rem;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    transition: none !important;
    transform: none !important;
}

.nav-links a:hover i {
    transform: scale(1.05);
}

.nav-links a.nav-cta {
    background: var(--red);
    color: white;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(196, 18, 48, 0.2);
}

.nav-links a.nav-cta:hover {
    background: var(--white);
    color: var(--red) !important;
    transform: translateY(-2px);
}

.nav-links a.nav-cta:hover i {
    color: var(--red) !important;
}

.nav-links a.nav-cta::before {
    display: none;
}

.nav-cta::before { 
    display: none; 
}

.nav-cta:hover { 
    background: linear-gradient(135deg, #b91c1c, var(--red)); 
    transform: translateY(-2px) !important; 
    color: white !important; 
}

.nav-cta i { 
    color: white; 
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--red);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--red);
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    display: flex;
    align-items: center;
    margin: 0 20px;
    z-index: 1001;
}

#language-select {
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(0, 45, 98, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
}

/* --- RESPONSIVE NAVBAR --- */
@media (max-width: 1200px) {
    .navbar-container { padding: 12px 30px; }
    .nav-links a { padding: 8px 14px; font-size: 0.9rem; }
}

@media (max-width: 1024px) {
    .nav-links a { padding: 8px 12px; font-size: 0.85rem; }
    .logo-main { font-size: 1.2rem; }
    .nav-logo { height: 60px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding: 100px 30px 40px;
        display: block;
    }

    .nav-links.active { right: 0; }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: flex;
        width: 100%;
        padding: 14px 20px;
        font-size: 1.1rem;
        justify-content: flex-start;
        border-radius: 12px;
        white-space: normal;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links a:active {
        background: rgba(211, 47, 47, 0.08);
        color: var(--red);
    }

 .nav-links a::before {
    bottom: 4px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--navy));
}

    .nav-links a:hover::before {
    width: 20%;
}

.nav-links a.active::before {
    width: 80%;
}

    .nav-links a:hover {
        transform: translateX(8px);
        background: rgba(211, 47, 47, 0.08);
    }

.nav-links a.active {
    color: var(--red) !important;
    background: rgba(196, 18, 48, 0.08) !important;
    box-shadow: none !important;
}

    .nav-links a.nav-cta {
        background: linear-gradient(135deg, var(--red), #b91c1c) !important;
        color: white !important;
        margin-left: 0;
        margin-top: 10px;
        text-align: left;
        justify-content: left;
    }

    .navbar::after { display: none; }

    .navbar.scrolled .navbar-container { padding: 10px 24px; }

    .navbar-container { padding: 10px 24px; }

    .nav-logo { height: 55px; }

    .logo-text { display: flex; }
    .logo-main { font-size: 1.4rem; }
    .logo-sub { font-size: 0.8rem; }
}

/* CRITICAL: keeps logo / EN / hamburger in a row on mobile */
@media (max-width: 768px) {
    .navbar-container {
        display: flex;
        justify-content: space-between;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 15px;
        order: 2;
    }

    .menu-toggle { order: 3; }
    .logo-group  { order: 1; }

    #language-select {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .navbar-container { padding: 8px 16px; }
    .nav-logo { height: 48px; }
    .nav-links { width: 100%; max-width: none; padding: 70px 30px 40px; }
}

/* --- BACKGROUND --- */
#bg-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-color: #fcfcfc;
}

body {
    background: linear-gradient(135deg, #fef9f0 0%, #eef2ff 100%);
    position: relative;
    color: var(--text-dark);
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 45, 98, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: softPulse 8s ease-in-out infinite alternate;
}

@keyframes softPulse {
    0%   { opacity: 0.5; }
    100% { opacity: 0.9; }
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        repeating-linear-gradient(45deg,  rgba(211, 47, 47, 0.03) 0px, rgba(211, 47, 47, 0.03) 2px, transparent 2px, transparent 25px),
        repeating-linear-gradient(135deg, rgba(0, 45, 98, 0.03)   0px, rgba(0, 45, 98, 0.03)   2px, transparent 2px, transparent 25px);
    pointer-events: none;
    z-index: 0;
    animation: slowDrift 25s linear infinite;
}

@keyframes slowDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.pro-hero, .services-grid, .why-choose-section, .trusted-header,
.partnership-gallery, .agents-strip, .contact-action-strip, .pro-footer {
    position: relative;
    z-index: 2;
}

/* --- HERO --- */
.pro-hero {
    background: linear-gradient(135deg, rgba(0, 45, 98, 0.88), rgba(211, 47, 47, 0.82)), url('images/luxembourg-city.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.pro-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-tint { width: 100%; height: 100%; }

.hero-content { animation: fadeInUp 1s ease-out; }

.hero-content h1 {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    animation: gentleFloat 4s ease-in-out infinite alternate;
}

.hero-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.accent-color  { color: #4d9eff; position: relative; display: inline-block; text-shadow: 0 0 20px rgba(77,158,255,0.3); }
.accent-color2 { color: #fb4242; text-shadow: 0 0 20px rgba(255,107,107,0.3); }

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-solid-red {
    background: var(--red);
    color: var(--white);
    padding: 15px 38px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(211,47,47,0.4);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-solid-red:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(211,47,47,0.5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

/* --- SERVICES --- */
.pro-services {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 45, 98, 0.08);
}

.pro-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 0%   0%,   rgba(211, 47, 47, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 45, 98, 0.05)   0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pro-services::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        repeating-linear-gradient(45deg,  rgba(211, 47, 47, 0.02) 0px, rgba(211, 47, 47, 0.02) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(135deg, rgba(0, 45, 98, 0.02)   0px, rgba(0, 45, 98, 0.02)   1px, transparent 1px, transparent 30px);
    pointer-events: none;
    z-index: 0;
}

.pro-services .container,
.pro-services .section-heading {
    position: relative;
    z-index: 1;
}

.text-center { text-align: center; }

.section-heading { margin-bottom: 60px; }

.section-heading h2 {
    font-size: 2.75rem;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--navy));
    border-radius: 3px;
}

.section-heading p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 25px auto 0;
}

.services-grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.pro-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 45, 98, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.pro-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--red);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pro-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pro-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* --- WHY CHOOSE --- */
.why-choose-section {
    background: linear-gradient(115deg, rgba(0, 45, 98, 0.94), rgba(211, 47, 47, 0.88)), url('images/EST_2024.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.why-text { flex: 1; }

.why-text h2 {
    color: var(--white);
    margin-bottom: 45px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.why-text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.reason-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.12);
    padding: 22px 28px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.reason-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.reason-item h4 { color: var(--white); font-size: 1.2rem; font-weight: 600; }
.reason-item p  { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6; }

.why-image { flex: 1.1; }

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.why-image:hover img { transform: scale(1.02); }

/* --- TRUSTED PARTNERS --- */
.trusted-header {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 45, 98, 0.05);
}

.trusted-header::before,
.partnership-gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 45, 98, 0.04)   0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(211, 47, 47, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.trusted-tagline {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.trusted-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.institutional-heading {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.institutional-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--navy));
    border-radius: 2px;
}

.partnership-gallery {
    padding: 10px 0 60px;
    position: relative;
    overflow: hidden;
}

.logo-grid-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    align-items: center;
}

.logo-item {
    flex: 0 1 200px;
    min-width: 100px;
    filter: grayscale(0.3);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.15);
}

.logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 60px;
}

/* --- AGENTS --- */
.agents-strip {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.agents-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(211, 47, 47, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(0, 45, 98, 0.03)   2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    animation: subtleDrift 30s linear infinite;
}

@keyframes subtleDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.agents-strip h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.agents-strip p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.ital-box {
    text-align: center;
    margin: 40px auto;
    max-width: 280px;
    position: relative;
}

.ital-box::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08), transparent 70%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ital-box:hover::before { opacity: 1; }

.ital-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: inline-block;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.ital-image:hover { transform: scale(1.03); }

/* --- CONTACT STRIP --- */
.contact-action-strip,
.pro-contact {
    background: linear-gradient(135deg, #1e2a3a 0%, #0f172a 100%);
    padding: 40px 0;
}

.strip-flex-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.btn-outline-navy {
    text-decoration: none;
    border: 2px solid var(--navy);
    padding: 12px 32px;
    color: var(--white);
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    background: var(--navy);
    font-size: 1rem;
    cursor: pointer;
}

.btn-outline-navy:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

/* --- FOOTER --- */
.pro-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

/* --- RTL --- */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .navbar-container { flex-direction: row !important; }
[dir="rtl"] .nav-links ul { flex-direction: row !important; }
[dir="rtl"] .hero-ctas,
[dir="rtl"] .footer-container,
[dir="rtl"] .strip-flex-pro,
[dir="rtl"] .split-layout { flex-direction: row-reverse; }
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: 0; }
[dir="rtl"] .nav-links a i { transform: scaleX(-1); margin-left: 8px; margin-right: 0; }

/* --- GENERAL RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .logo-item { flex: 0 1 calc(25% - 20px); }
}

@media (max-width: 768px) {
    .pro-hero, .why-choose-section { background-attachment: scroll; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 15px; }
    .btn-solid-red, .btn-outline-white { width: 220px; text-align: center; }
    .services-grid-items { grid-template-columns: 1fr; gap: 25px; }
    .split-layout { flex-direction: column; gap: 40px; }
    .strip-flex-pro { flex-direction: column; gap: 20px; text-align: center; }
    .contact-info { flex-direction: column; gap: 15px; align-items: center; }
    .footer-container { flex-direction: column; gap: 20px; text-align: center; }
    .logo-item { flex: 0 1 calc(33.333% - 20px); }
    .about-content-wrapper { padding-top: 100px !important; padding-bottom: 60px !important; }
    .bio-block { margin-bottom: 50px !important; }
    .map-wrapper iframe { width: 95% !important; height: 350px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p  { font-size: 1rem; }
    .logo-item { flex: 0 1 calc(50% - 20px); }
    .section-heading h2 { font-size: 2rem; }
    .contact-info span { font-size: 0.9rem; }
    .special-whatsapp-btn { display: flex; width: fit-content; }
}

/* --- TEAM PAGE --- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 768px) {
    .team-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (min-width: 1000px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin: 0 auto; }
}

.team-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.team-card:hover { transform: translateY(-5px); }

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold, #d4af37);
    margin-bottom: 20px;
}

.team-card h3 { margin-top: 10px; margin-bottom: 8px; font-size: 1.25rem; }
.team-card p  { margin: 0; color: #666; line-height: 1.5; }

/* --- MAP --- */
.live-map-section {
    margin: 0 auto 80px auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.map-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-wrapper iframe {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

/* --- WHATSAPP BUTTON --- */
.special-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 5px;
    transition: background-color 0.2s ease;
    border: none;
}

.special-whatsapp-btn:hover { background-color: #128C7E; }
.special-whatsapp-btn i { font-size: 1rem; }

.pro-card p:has(+ .special-whatsapp-btn) { margin-bottom: 5px !important; }
