/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #004499;
    --light-blue: #3399ff;
    --lighter-blue: #66b3ff;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --gold: #ffb84d;
}

body {
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 80px;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
    font-family: 'Inter', 'Tajawal', sans-serif;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar[dir="rtl"] {
    direction: rtl;
}

.navbar[dir="ltr"] {
    direction: ltr;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    gap: 1.5rem;
}

.navbar[dir="rtl"] .nav-wrapper {
    flex-direction: row;
}

.navbar[dir="ltr"] .nav-wrapper {
    flex-direction: row-reverse;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar[dir="rtl"] .logo {
    order: 2;
}

.navbar[dir="ltr"] .logo {
    order: 0;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
}

.navbar[dir="rtl"] .nav-menu {
    order: 1;
    justify-content: flex-end;
}

.navbar[dir="ltr"] .nav-menu {
    order: 1;
    justify-content: flex-start;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1.2rem;
    display: block;
    border-radius: 8px;
}

.nav-menu a.active {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.1);
}

.nav-menu a.active::after {
    width: 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.05);
}

.nav-menu a:hover::after {
    width: 60%;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.navbar[dir="rtl"] .lang-switcher {
    order: 0;
}

.navbar[dir="ltr"] .lang-switcher {
    order: 2;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

body[dir="rtl"] .lang-btn {
    font-family: 'Tajawal', sans-serif;
}

body[dir="ltr"] .lang-btn {
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.lang-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
    flex-shrink: 0;
}

.navbar[dir="rtl"] .hamburger {
    order: 3;
}

.navbar[dir="ltr"] .hamburger {
    order: 3;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    white-space: nowrap;
    min-width: 180px;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Featured Services */
.featured-services {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 0 auto;
    border-radius: 2px;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-preview-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.service-preview-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-preview-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.service-preview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-preview-card p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

.services-cta {
    text-align: center;
}

/* Why Choose Us */
.why-choose {
    background: var(--white);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page */
.about-page {
    padding: 80px 0;
    background: var(--white);
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.about-details {
    display: grid;
    gap: 40px;
}

.about-text-content {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
}

.about-text-content p {
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.highlight-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vision-card-large,
.mission-card-large {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-card-large:hover,
.mission-card-large:hover {
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-wrapper-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-large svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.card-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.vision-card-large p,
.mission-card-large p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Page */
.services-intro-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
}

.services-details {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.service-detail-card.reverse .service-detail-content {
    flex-direction: row-reverse;
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.service-detail-icon svg {
    width: 70px;
    height: 70px;
    stroke: var(--white);
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 20px 0;
    border-radius: 2px;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Commitment Page */
.commitment-intro {
    padding: 60px 0;
    background: var(--light-gray);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
}

.commitment-details {
    padding: 80px 0;
    background: var(--white);
}

.commitment-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.commitment-card-detailed {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.commitment-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon-large svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.commitment-card-detailed h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.commitment-card-detailed p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.trust-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.trust-item h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.contact-text h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

.contact-form .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 10px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.sending {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .navbar[dir="rtl"] .logo,
    .navbar[dir="ltr"] .logo {
        order: 1;
    }

    .navbar[dir="rtl"] .hamburger,
    .navbar[dir="ltr"] .hamburger {
        display: flex;
        order: 2;
    }

    .navbar[dir="rtl"] .lang-switcher,
    .navbar[dir="ltr"] .lang-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        gap: 0;
        order: 4;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .navbar[dir="rtl"] .nav-menu {
        right: -100%;
        text-align: right;
    }

    .navbar[dir="rtl"] .nav-menu.active {
        right: 0;
    }

    .navbar[dir="ltr"] .nav-menu {
        left: -100%;
        text-align: left;
    }

    .navbar[dir="ltr"] .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        border-radius: 0;
        text-align: right;
        width: 100%;
        display: block;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(0, 102, 204, 0.1);
        color: var(--primary-blue);
    }

    .hero {
        padding: 100px 0 80px;
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .services-preview,
    .features-grid,
    .values-grid,
    .commitment-grid-detailed,
    .trust-content {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        flex-direction: column !important;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-preview-card,
    .service-detail-card,
    .commitment-card-detailed {
        padding: 25px 15px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .contact-wrapper {
        gap: 30px;
    }
}
