@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1e42;
    --secondary: #d4af37;
    --accent: #1e3a8a;
    --dark: #0a1e42;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #8892a0;
    --header-bg: #0a1e42;
    --gold: #d4af37;
    --gold-light: #f0c040;
    --blue-dark: #0a1e42;
    --blue-medium: #1e3a8a;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Transparent */
.header-transparent {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    background: var(--header-bg);
    overflow: visible;
}

.header-transparent.scrolled {
    background: rgba(10, 30, 66, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Top Bar with Contact Info */
.top-bar {
    background: var(--header-bg);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar-contact i {
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--white);
}

/* LinkedIn - Blue */
.social-icon[aria-label="LinkedIn"],
.social-icon .fa-linkedin-in {
    background: #0077b5;
}

.social-icon[aria-label="LinkedIn"]:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

/* Facebook - Blue */
.social-icon[aria-label="Facebook"],
.social-icon .fa-facebook-f {
    background: #1877f2;
}

.social-icon[aria-label="Facebook"]:hover {
    background: #0d5dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Twitter - Light Blue */
.social-icon[aria-label="Twitter"],
.social-icon .fa-twitter {
    background: #1da1f2;
}

.social-icon[aria-label="Twitter"]:hover {
    background: #0c85d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

/* Instagram - Gradient */
.social-icon[aria-label="Instagram"],
.social-icon .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #d87b2a 0%, #c85532 25%, #b91f38 50%, #a91d5a 75%, #9a1575 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.5);
}

.navbar {
    padding: 1rem 0;
    background: var(--header-bg);
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    overflow: visible;
}

/* Ensure proper layout on desktop */
@media (min-width: 769px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        order: 2;
    }

    .lang-switcher {
        order: 3;
        position: relative;
        transform: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
    flex-shrink: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-transparent.scrolled .logo {
    color: var(--white);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.header-transparent.scrolled .nav-menu a {
    color: var(--white);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.lang-switcher {
    flex-shrink: 0;
    position: relative;
}

.lang-current {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.header-transparent.scrolled .lang-current {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.lang-current i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.lang-switcher.active .lang-current i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 30, 66, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 10000;
    overflow: visible;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.lang-option {
    padding: 1rem 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.lang-option i {
    color: var(--secondary);
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

/* Ensure hamburger is always visible on mobile regardless of language */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    [dir="rtl"] .hamburger,
    [dir="ltr"] .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.header-transparent.scrolled .hamburger span {
    background: var(--white);
}

/* Hero V2 */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(10, 30, 66, 0.3), rgba(10, 30, 66, 0.3)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(10, 30, 66, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gold);
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 1s 0.2s backwards;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.4s backwards;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s 0.6s backwards;
}

.btn-v2 {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-v2 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-v2:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline-v2 {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-v2:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    animation: fadeInUp 1s 0.8s backwards;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-box p {
    font-size: 1rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Header V2 */
.section-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header-v2 h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header-v2 p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services V2 */
.services-v2 {
    padding: 6rem 0;
    background: var(--light);
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-v2 {
    background: linear-gradient(180deg, rgba(10, 30, 66, 0.95) 0%, rgba(20, 40, 70, 0.98) 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.service-card-v2:nth-child(1)::after {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=800');
}

.service-card-v2:nth-child(2)::after {
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=800');
}

.service-card-v2:nth-child(3)::after {
    background-image: url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=800');
}

.service-card-v2:nth-child(4)::after {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800');
}

.service-card-v2:nth-child(5)::after {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800');
}

.service-card-v2:nth-child(6)::after {
    background-image: url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?w=800');
}

.service-card-v2>* {
    position: relative;
    z-index: 1;
}

.service-card-v2 h3,
.service-card-v2 p {
    color: var(--white);
    padding: 0 2rem;
}

.service-card-v2 h3 {
    margin-top: 370px;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-card-v2 p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.service-card-v2 .btn-request-service {
    margin: 0 2rem 2rem 2rem;
}

/* Mobile fix for request service button */
@media (max-width: 768px) {
    .service-card-v2 .btn-request-service {
        margin: 0 1.5rem 1.5rem 1.5rem;
        width: calc(100% - 3rem);
    }
}

@media (max-width: 480px) {
    .service-card-v2 .btn-request-service {
        margin: 0 1rem 1rem 1rem;
        width: calc(100% - 2rem);
    }
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.service-card-v2:hover::before {
    transform: scaleX(1);
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-number {
    display: none;
}

.service-icon-v2 {
    display: none;
}

.service-card-v2 h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card-v2 p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    min-height: auto;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 15px;
    color: var(--primary);
}

/* Enhanced Request Service Button */
.btn-request-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

/* Pulse Animation */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.7), 0 0 30px rgba(212, 175, 55, 0.3);
    }
}

.btn-request-service {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Shine Effect */
.btn-request-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.5s ease;
}

.btn-request-service:hover::before {
    left: 100%;
}

/* Hover Effect */
.btn-request-service:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    animation: none;
}

/* Icon Animation */
.btn-request-service i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-request-service:hover i {
    transform: translateX(-4px);
}

[dir="ltr"] .btn-request-service:hover i {
    transform: translateX(4px);
}

/* Active State */
.btn-request-service:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-request-service {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .btn-request-service {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
}

/* About V2 */
.about-v2 {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-v2 {
    position: relative;
}

.image-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-box i {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-badge h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.experience-badge p {
    color: var(--gray);
    font-weight: 600;
}

.about-content-v2 h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-content-v2 p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    min-width: 50px;
}

.feature-box h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--gray);
    margin: 0;
}

/* Investors V2 */
.investors-v2 {
    padding: 6rem 0;
    background: var(--light);
}

/* Projects V2 */
.projects-v2 {
    padding: 6rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.project-card:hover .project-image i {
    transform: scale(1.2);
    color: rgba(255, 255, 255, 0.5);
}

.project-content {
    padding: 2rem;
    text-align: center;
}

.project-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.project-count {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Investors V2 */
.investors-v2 {
    padding: 6rem 0;
    background: var(--light);
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.investor-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.investor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.investor-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.investor-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.investor-card p {
    color: var(--gray);
}

/* Contact V2 */
.contact-v2 {
    padding: 6rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
}

.contact-info-v2 h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-v2 p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item-v2 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item-v2 i {
    font-size: 2rem;
    color: var(--secondary);
    min-width: 40px;
}

.info-item-v2 h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-item-v2 p {
    color: var(--gray);
    margin: 0;
}

.contact-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-v2 input,
.contact-form-v2 textarea {
    padding: 1rem;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form-v2 button {
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Footer V2 */
.footer-v2 {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.social-links-v2 {
    display: flex;
    gap: 1rem;
}

.social-links-v2 a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

/* LinkedIn */
.social-links-v2 a .fa-linkedin {
    background: #0077b5;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links-v2 a:has(.fa-linkedin) {
    background: #0077b5;
}

.social-links-v2 a:has(.fa-linkedin):hover {
    background: #005885;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Facebook */
.social-links-v2 a:has(.fa-facebook) {
    background: #1877f2;
}

.social-links-v2 a:has(.fa-facebook):hover {
    background: #0d5dbf;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Twitter */
.social-links-v2 a:has(.fa-twitter) {
    background: #1da1f2;
}

.social-links-v2 a:has(.fa-twitter):hover {
    background: #0c85d0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

/* Instagram */
.social-links-v2 a:has(.fa-instagram) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links-v2 a:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #d87b2a 0%, #c85532 25%, #b91f38 50%, #a91d5a 75%, #9a1575 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.5);
}

.footer-bottom-v2 {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .hamburger,
    html .hamburger,
    body .hamburger,
    .navbar .hamburger,
    .navbar .container .hamburger,
    [dir="rtl"] .hamburger,
    [dir="ltr"] .hamburger,
    [dir="rtl"] .navbar .hamburger,
    [dir="ltr"] .navbar .hamburger,
    [dir="rtl"] .navbar .container .hamburger,
    [dir="ltr"] .navbar .container .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 3 !important;
        flex-direction: column !important;
        cursor: pointer !important;
        gap: 5px !important;
        flex-shrink: 0 !important;
        width: 30px !important;
        height: 25px !important;
        position: relative !important;
        z-index: 1001 !important;
    }

    /* Ensure hamburger is visible in both RTL and LTR */
    [dir="rtl"] .hamburger,
    [dir="ltr"] .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo {
        order: 2 !important;
        flex: 1 !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .logo-image {
        max-height: 40px;
        width: auto;
    }

    .lang-switcher {
        order: 1 !important;
        position: relative !important;
        flex-shrink: 0 !important;
        z-index: 10000 !important;
        overflow: visible !important;
    }

    .lang-current {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 90px;
    }

    .lang-dropdown {
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 0 !important;
        right: auto !important;
        z-index: 10001 !important;
        min-width: 160px !important;
        max-width: 90vw !important;
        width: auto !important;
        overflow: visible !important;
    }

    /* RTL support - prevent overflow outside viewport */
    [dir="rtl"] .lang-dropdown {
        left: 0 !important;
        right: auto !important;
        inset-inline-end: auto !important;
        inset-inline-start: 0 !important;
    }

    [dir="ltr"] .lang-dropdown {
        left: 0 !important;
        right: auto !important;
    }

    /* Ensure dropdown is visible when active */
    .lang-switcher.active .lang-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
    }

    .navbar .container {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 0 15px !important;
        overflow: visible !important;
    }

    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        right: auto !important;
        top: 70px !important;
        flex-direction: column !important;
        background: var(--white) !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        text-align: center;
        transition: left 0.3s ease-in-out !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
        justify-content: flex-start;
        z-index: 999 !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        left: 0 !important;
        right: auto !important;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        color: var(--dark) !important;
        display: block !important;
        width: 100% !important;
        padding: 1.2rem 2rem !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        transition: all 0.3s !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(212, 175, 55, 0.1) !important;
        color: var(--secondary) !important;
    }

    .nav-menu a::after {
        display: none !important;
    }

    .hamburger span {
        display: block !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--white) !important;
        transition: 0.3s !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-header-v2 h2 {
        font-size: 2rem;
    }
}

/* Additional mobile fixes for language switcher and hamburger */
@media (max-width: 480px) {
    .navbar .container {
        padding: 0 10px;
    }

    .lang-switcher {
        left: 10px;
    }

    .lang-current {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 90px;
        gap: 0.3rem;
    }

    .hamburger {
        margin-right: 0;
    }

    .logo {
        padding: 0 100px;
        font-size: 1.2rem;
    }

    .logo-image {
        height: 40px;
    }
}

/* Ensure proper spacing between elements on all mobile sizes */
@media (max-width: 992px) {
    .navbar .container {
        gap: 1rem;
    }

    .lang-switcher {
        flex-shrink: 0;
    }

    .hamburger {
        flex-shrink: 0;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .lang-current {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-width: 80px;
    }

    .logo {
        padding: 0 90px;
        font-size: 1rem;
    }

    .logo-image {
        height: 35px;
    }

    .hamburger span {
        width: 22px;
    }
}

/* Enhanced Service Cards */
.service-card-v2>p {
    line-height: 1.8;
    text-align: justify;
}

/* About Section Enhanced */
.about-content-v2 p {
    text-align: justify;
    line-height: 1.9;
}

.about-content-v2 p strong {
    color: var(--primary);
    font-weight: 700;
}

/* Investor Cards Enhanced */
.investor-card p {
    line-height: 1.7;
    text-align: justify;
}

/* Projects V2 */
.projects-v2 {
    padding: 6rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.project-location i {
    font-size: 0.8rem;
}

.project-count {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

@media (max-width: 992px) {
    .top-bar-left {
        gap: 1rem;
    }

    .top-bar-contact {
        font-size: 0.8rem;
    }
}


/* ========================================
   NEW STYLES FOR MULTI-PAGE STRUCTURE
   ======================================== */

/* Page Header Styles */
.page-header {
    min-height: 600px;
    padding: 200px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 30, 66, 0.3), rgba(30, 58, 138, 0.3));
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.breadcrumb span {
    color: var(--secondary);
    font-weight: 600;
}

/* Service Page Styles */
.service-intro {
    padding: 6rem 0;
    background: var(--light);
}

.service-intro h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: justify;
}

.service-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Features Grid */
.service-features {
    padding: 6rem 0;
    background: var(--white);
}

.service-features h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Service Request Form */
.service-request {
    padding: 6rem 0;
    background: var(--light);
}

.service-request h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.service-request-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-request-form input,
.service-request-form textarea,
.service-request-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.service-request-form input:focus,
.service-request-form textarea:focus,
.service-request-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.service-request-form input.error,
.service-request-form textarea.error,
.service-request-form select.error {
    border-color: #e74c3c;
    background-color: #ffe6e6;
}

.service-request-form button[type="submit"] {
    width: 100%;
}

/* Active Navigation State */
.nav-menu a {
    position: relative;
}

.nav-menu a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary);
    min-width: 40px;
}

.info-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Investors Page Styles */
.investors-intro {
    padding: 6rem 0;
    background: var(--light);
    text-align: center;
}

.investors-intro h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.investors-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--dark);
    max-width: 900px;
    margin: 0 auto;
}

.investor-services {
    padding: 6rem 0;
    background: var(--white);
}

.investor-services h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.investor-service-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
}

.investor-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.investor-service-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.investor-service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.investor-service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.investor-service-card ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.investor-service-card ul li {
    color: var(--dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.investor-service-card ul li:last-child {
    border-bottom: none;
}

.investor-contact {
    padding: 6rem 0;
    background: var(--light);
}

.investor-contact h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.investor-contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.investor-contact-form input,
.investor-contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.investor-contact-form input:focus,
.investor-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.investor-contact-form button[type="submit"] {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--white);
}

.map-section h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Service Gallery */
.service-gallery {
    padding: 6rem 0;
    background: var(--light);
}

.service-gallery h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Responsive Styles for New Pages */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 400px;
        padding: 140px 0 80px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.95rem;
    }

    .service-intro,
    .service-features,
    .service-request,
    .contact-section,
    .investors-intro,
    .investor-services,
    .investor-contact,
    .map-section,
    .service-gallery {
        padding: 3rem 0;
    }

    .service-intro h2,
    .service-features h2,
    .service-request h2,
    .contact-info h2,
    .investors-intro h2,
    .investor-services h2,
    .investor-contact h2,
    .map-section h2,
    .service-gallery h2 {
        font-size: 2rem;
    }

    .service-image {
        height: 300px;
    }

    .service-request-form,
    .contact-form-wrapper,
    .investor-contact-form {
        padding: 2rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .feature-item,
    .investor-service-card {
        padding: 2rem;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }

    .service-intro p {
        font-size: 1rem;
    }

    .service-request-form,
    .contact-form-wrapper,
    .investor-contact-form {
        padding: 1.5rem;
    }
}

/* Featured Services Section */
.featured-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1e42 0%, #1e3a5f 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-services {
        padding: 4rem 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.featured-card {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.featured-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.5);
}

.featured-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.15);
}

.featured-content {
    padding: 2.5rem;
}

.featured-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #1a2332;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-featured:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    transform: translateX(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-featured i {
    transition: transform 0.3s ease;
}

.btn-featured:hover i {
    transform: translateX(-5px);
}

[dir="rtl"] .btn-featured:hover {
    transform: translateX(8px);
}

[dir="rtl"] .btn-featured:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .featured-image {
        height: 250px;
    }

    .featured-content h3 {
        font-size: 1.6rem;
    }

    .featured-content p {
        font-size: 1rem;
    }
}