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

:root {
    --navy: #001f3f;
    --blue: #007bff;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --gold: #d4af37;
    --light-blue: #e6f3ff;
    --gradient-primary: linear-gradient(135deg, #001f3f 0%, #003d7a 50%, #005bb5 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4b7 100%);
    --shadow-soft: 0 10px 40px rgba(0, 31, 63, 0.08);
    --shadow-medium: 0 15px 50px rgba(0, 31, 63, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 31, 63, 0.18);
    --shadow-glow: 0 0 30px rgba(0, 123, 255, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: normal;
    color: var(--dark-gray);
    background-color: var(--white);
    transition: opacity 0.3s ease;
}

body[dir="rtl"] {
    font-family: "Noto Nastaliq Urdu", "Inter", sans-serif;
}

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

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

/* Navigation */
.navbar {
    background: var(--gradient-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 31, 63, 0.15);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-img {
    width: 4rem;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--white);
    transform: translateY(-2px);
}

.lang-switcher {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.lang-option {
    cursor: pointer;
    transition: var(--transition);
}

.lang-option.active {
    font-weight: 700;
}

.lang-divider {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&h=1080&fit=crop");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: var(--white);
    padding: 6rem 20px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 31, 63, 0.88) 0%,
        rgba(0, 61, 122, 0.85) 50%,
        rgba(0, 91, 181, 0.82) 100%
    );
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background: linear-gradient(
            135deg,
            rgba(0, 31, 63, 0.88) 0%,
            rgba(0, 61, 122, 0.85) 50%,
            rgba(0, 91, 181, 0.82) 100%
        );
    }
    50% {
        background: linear-gradient(
            135deg,
            rgba(0, 31, 63, 0.85) 0%,
            rgba(0, 91, 181, 0.82) 50%,
            rgba(0, 123, 255, 0.78) 100%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards, pulse 2s ease-in-out 2s infinite;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.5);
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 123, 255, 0.6);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, #003d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.section-text.centered {
    text-align: center;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -50px);
    }
}

/* Services Overview */
.services-overview {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(0, 123, 255, 0.3);
}

.service-icon {
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(360deg);
    color: var(--navy);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding-right: 20px;
}

.service-link::after {
    content: "→";
    position: absolute;
    right: 0;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--navy);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Why Section */
.why-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.why-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 123, 255, 0.3) 50%, transparent 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.why-item {
    text-align: center;
    transition: var(--transition);
    padding: 2rem;
    border-radius: 12px;
}

.why-item:hover {
    background: rgba(0, 123, 255, 0.03);
    transform: translateY(-5px);
}

.why-icon {
    color: var(--blue);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 123, 255, 0.1) 100%);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    transform: scale(1.1);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.why-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 20px 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Service Details */
.service-detail {
    margin-bottom: 4rem;
    padding: 3.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-detail:hover::before {
    opacity: 1;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.service-detail-icon {
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.service-detail-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Process Timeline */
.process-section {
    background-color: var(--light-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 123, 255, 0.3);
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--gray);
    line-height: 1.7;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-text {
    text-align: left;
    margin: 0 0 1.5rem 0;
}

/* Team Section */
.team-section {
    background-color: var(--light-gray);
}

.team-image {
    margin-top: 3rem;
}

.team-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    background-color: var(--white);
}

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

.value-card {
    padding: 2.5rem;
    text-align: center;
    background: rgba(0, 123, 255, 0.02);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: rgba(0, 123, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: rotateY(360deg);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    animation: statsGlow 8s ease-in-out infinite;
}

@keyframes statsGlow {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-text {
    text-align: left;
    margin: 0 0 2rem 0;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-feature svg {
    flex-shrink: 0;
    color: var(--blue);
}

.contact-feature h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.contact-feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #25d366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.form-section {
    background-color: var(--light-gray);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.form-success {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.form-success svg {
    color: #28a745;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-success p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
}

.cta-section .section-title {
    color: var(--white);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section .section-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #001833 0%, #001f3f 100%);
    color: var(--white);
    padding: 3rem 0 0;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-img {
    width: 8rem;
}

.footer-text {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

/* RTL Support */
body[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

body[dir="rtl"] .contact-feature {
    flex-direction: row-reverse;
}

body[dir="rtl"] .whatsapp-button,
body[dir="rtl"] .whatsapp-link {
    flex-direction: row-reverse;
}

body[dir="rtl"] .about-text .section-title,
body[dir="rtl"] .about-text .section-text,
body[dir="rtl"] .contact-info .section-title,
body[dir="rtl"] .contact-info .section-text {
    text-align: right;
}

body[dir="rtl"] .service-link {
    padding-right: 0;
    padding-left: 20px;
}

body[dir="rtl"] .service-link::after {
    right: auto;
    left: 0;
    content: "←";
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
        padding: 2rem;
        transition: var(--transition);
        align-items: flex-start;
        box-shadow: 0 8px 30px rgba(0, 31, 63, 0.3);
    }

    body[dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .mobile-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

    .contact-form {
        padding: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .value-card,
    .process-step {
        padding: 2rem;
    }
}

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

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

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

    .services-grid,
    .why-grid,
    .values-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .whatsapp-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
