/* ============================================
   ROOT VARIABLES & COLORS
   ============================================ */
:root {
    --color-primary: linear-gradient(270deg, #77b3bf 3.15%, #2baa8f 29.05%, #176d5b 96.85%) !important;
    --color-primary-dark: #3a9885;
    --color-primary-light: #6cc8b3;
    --color-bg-dark: #629fa1;
    --color-bg-darker: linear-gradient(357.44deg, #166a63 5.5%, #093238 73.78%, #082d35 84.83%, #042124 99.66%);
    --color-bg-light: #2d6468;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a8c5ce;
    --color-border: rgba(79, 181, 161, 0.2);
    --color-border-hover: rgba(79, 181, 161, 0.5);
    --color-orange: #ff8c42;
    --color-red: #ff6b35;
    --color-blue: #2196f3;
    --btns-bg: linear-gradient(270deg, #77b3bf 3.15%, #2baa8f 29.05%, #176d5b 96.85%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(79, 181, 161, 0.2);
    --font-family: 'Cairo', sans-serif;
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    margin: 0 50px;
    padding: 10px 20px;
    border: 1px solid rgba(79, 181, 161, 0.25);
    border-radius: 50px;
    /* background:var(--color-bg-dark); */
    color: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 1px rgba(79, 181, 161, 0.3);
    width: calc(100% - 100px);
    max-width: 100%;
    box-sizing: border-box;
}

.header1 {
    margin: 0 50px;
    padding: 10px 20px;

    color: rgb(0, 0, 0);
    backdrop-filter: blur(10px);

    width: calc(100% - 100px);
    max-width: 100%;
    box-sizing: border-box;
}

.header1 .title {
    color: var(--color-bg-dark);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ============================================
   NAVBAR / HEADER
   ============================================ */
.navbar {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
}

.navbar-content {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

/* Language in first column */
.nav-lang {
    grid-column: 1;
    display: flex;
    align-items: center;
}

/* Language wrapper and toggle */
.lang-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.lang-toggle i {
    font-size: 0.9rem;
}

.lang-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    min-width: 150px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
}

.lang-menu li a {
    display: block;
    padding: 8px 14px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.lang-menu li a:hover {
    background: rgba(79, 181, 161, 0.1);
    color: var(--color-primary);
}

.lang-wrapper:focus-within .lang-menu,
.lang-wrapper:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Logo in second column */
.logo-container {
    grid-column: 2;
    display: flex;
    align-items: center;
}

.logo-container svg {
    width: 150px;
    height: auto;
    max-height: 50px;
}

/* Navigation menu in third column */
.nav-menu {
    grid-column: 3;
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    justify-content: center;
}

.lang {
    display: none;
}

/* Hamburger in fourth column */
.hamburger-menu {
    grid-column: 4;
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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


.nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-light) 100%);
    /* background-image: url('public/frontend/bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 56, 66, 0.3);
    pointer-events: none;
}

.hero-section .container {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    padding-right: 2rem;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.verified-badge,
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: badge-glow 2s ease-in-out infinite;
}

.verified-badge {
    background: linear-gradient(135deg, #2BB99B 0%, #1a8d78 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(43, 185, 155, 0.3);
}

.verified-badge i {
    font-size: 1.1rem;
    animation: verified-pulse 1.5s ease-in-out infinite;
}

.top-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a3842;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.top-badge i {
    font-size: 1.1rem;
    animation: trophy-bounce 1s ease-in-out infinite;
}

/* Badge Animations */
@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(43, 185, 155, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(43, 185, 155, 0.5), 0 0 30px rgba(43, 185, 155, 0.2);
    }
}

@keyframes verified-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes trophy-bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-5deg);
    }

    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    /* color: var(--color-primary); */
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Service Buttons Grid */
.service-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* Floating Animation Keyframes */
@keyframes btn-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-btn {
    background: linear-gradient(270deg, #77b3bf 3.15%, #2baa8f 29.05%, #176d5b 96.85%);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-family: var(--font-family);
    flex-direction: row-reverse;
    animation: btn-float 3s ease-in-out infinite;
}

/* Staggered animation delays for natural effect */
.service-btn:nth-child(1) {
    animation-delay: 0s;
}

.service-btn:nth-child(2) {
    animation-delay: 0.3s;
}

.service-btn:nth-child(3) {
    animation-delay: 0.6s;
}

.service-btn:nth-child(4) {
    animation-delay: 0.9s;
}

.service-btn i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    animation-play-state: paused;
}

.service-btn:hover i {
    transform: scale(1.2);
}

/* Hero Right Side */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.app-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.app-preview {
    perspective: 1000px;
}

.app-card {
    background: linear-gradient(135deg, rgba(79, 181, 161, 0.18) 0%, rgba(26, 77, 92, 0.28) 100%);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    max-width: 340px;
    width: 100%;
}

.app-header {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.app-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.app-features {
    margin: 20px 0;
    text-align: right;
}

.app-features p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.feature-icon {
    color: var(--color-primary);
    font-weight: bold;
}

.app-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 20px;
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
}

.app-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

/* Decorative Dollar Sign */
.dollar-decoration {
    position: absolute;
    font-size: 190px;
    color: #f3c245;
    opacity: 0.35;
    right: -10px;
    top: 40%;
    transform: translateY(-40%);
    font-weight: 900;
    z-index: 1;
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: var(--color-bg-darker);
    position: relative;
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.services-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.services-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, rgba(79, 181, 161, 0.1) 0%, rgba(26, 77, 92, 0.15) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(79, 181, 161, 0.1));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-8px);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.service-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.large-card {
    grid-column: span 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-card {
    min-height: 220px;
}

.card-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--color-primary));
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics-section {
    padding: 4rem 0;
    background: var(--color-bg-light);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    padding: 5rem 0;
    background: var(--color-bg-darker);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    text-align: center;
    transition: var(--transition);
}

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.partner-card:hover .partner-logo {
    transform: scale(1.15);
}

.orange-logo {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff7a2a 100%);
}

.red-logo {
    background: linear-gradient(135deg, var(--color-red) 0%, #e55100 100%);
}

.bank-logo {
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
    color: #333;
}

.blue-logo {
    background: linear-gradient(135deg, var(--color-blue) 0%, #1565c0 100%);
}

.partner-name {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
    transition: var(--transition);
}

.partner-card:hover .partner-name {
    color: var(--color-primary);
}

/* ============================================
   CURRENCY CONVERTER SECTION
   ============================================ */
.converter-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.converter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.converter-left {
    padding: 2rem 0;
}

.converter-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
}

.trust-list {
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.trust-number {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-item p {
    color: var(--color-text-secondary);
    margin: 0;
}

/* Converter Card */
.converter-card {
    background: linear-gradient(135deg, rgba(79, 181, 161, 0.1) 0%, rgba(26, 77, 92, 0.15) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.converter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.converter-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.exchange-rate-display {
    background: rgba(79, 181, 161, 0.15);
    border: 1px solid var(--color-border-hover);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.exchange-rate {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Currency Converter */
.currency-converter {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.currency-input-box {
    position: relative;
}

.currency-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}

.currency-code {
    color: var(--color-text-primary);
}

.currency-input {
    width: 100%;
    background: rgba(15, 58, 72, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.currency-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 58, 72, 0.8);
    box-shadow: 0 0 12px rgba(79, 181, 161, 0.3);
}

.currency-input::placeholder {
    color: rgba(168, 197, 206, 0.5);
}

.currency-input-box label {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: none;
}

.swap-btn {
    align-self: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid rgba(79, 181, 161, 0.3);
    color: white;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 1rem 0;
}

.swap-btn:hover {
    background: var(--color-primary-dark);
    transform: rotate(180deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 5rem 0;
    background: var(--color-bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(79, 181, 161, 0.1) 0%, rgba(26, 77, 92, 0.15) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-8px);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(79, 181, 161, 0.15) 0%, rgba(26, 77, 92, 0.2) 100%);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px var(--color-primary));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.feature-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.features-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(79, 181, 161, 0.05);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--color-primary);
    background: rgba(79, 181, 161, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: var(--font-family);
    text-align: right;
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-header i {
    transition: var(--transition);
    color: var(--color-primary);
}

.accordion-header.active i {
    transform: rotate(-180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.footer-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-right: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {

    /* Header adjustments for mobile */
    .header {
        margin: 0 12px;
        padding: 8px 14px;
        border-radius: 25px;
        width: calc(100% - 24px);
    }

    /* Mobile navbar layout: lang - logo - hamburger */
    .navbar-content {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    /* Language stays in first column */
    .nav-lang {
        grid-column: 1;
    }

    .lang-toggle {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Logo centered in second column */
    .logo-container {
        grid-column: 2;
        justify-self: center;
    }

    .logo-container svg {
        width: 110px;
        max-height: 35px;
    }

    /* Navigation menu hidden, shown as dropdown */
    .nav-menu {
        grid-column: 1 / -1;
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        right: 12px;
        left: 12px;
        flex-direction: column;
        gap: 0;
        background: var(--color-bg-light);
        border: 1px solid var(--color-border);
        border-radius: 12px;
        padding: 0.5rem 0;
        margin: 0;
        box-shadow: var(--shadow-lg);
        animation: slideDown 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(79, 181, 161, 0.1);
        text-align: right;
        justify-content: flex-end;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hamburger visible in third column */
    .hamburger-menu {
        grid-column: 3;
        display: flex !important;
    }

    .lang {
        display: flex !important;
    }

    .web-only {
        display: none !important;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        padding-right: 0;
    }

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

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

    /* Hero Badges - Mobile */
    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .verified-badge,
    .top-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .verified-badge i,
    .top-badge i {
        font-size: 0.9rem;
    }

    .service-buttons-grid {
        grid-template-columns: 1fr;
    }

    .service-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .hero-right {
        display: none;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    /* Services */
    .services-large,
    .services-small {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Converter */
    .converter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-buttons {
        flex-direction: column;
    }

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

    /* FAQ */
    .faq-content {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {

    /* Typography */
    .hero-title {
        font-size: 2rem;
    }

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

    /* Logo */
    .logo-video {
        max-width: 150px;
    }

    /* Service Buttons */
    .service-buttons-grid {
        gap: 0.8rem;
    }

    .service-btn {
        padding: 12px 12px;
        font-size: 0.8rem;
    }

    /* Cards */
    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    /* Converter */
    .converter-card {
        padding: 1.5rem;
    }

    .converter-title {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

.badge {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #FFF;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.12);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 13px;
}

.badge i {
    font-size: 16px;
    color: #548BF6;
}

/* لمعان متحرك على البادج */
.badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.7) 45%, transparent 70%);
    transform: translateX(-120%);
    animation: badge-shine 2.2s linear infinite;
    pointer-events: none;
}




@keyframes walk {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(2px) rotate(0.6deg);
    }

    50% {
        transform: translateX(-2px) rotate(-0.6deg);
    }

    75% {
        transform: translateX(1px) rotate(0.4deg);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 0 0 0 var(--glow);
    }

    50% {
        box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12), 0 0 0 10px transparent;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@keyframes badge-shine {
    0% {
        transform: translateX(-140%);
    }

    50% {
        transform: translateX(40%);
    }

    100% {
        transform: translateX(140%);
    }
}

.iraq-widget.glow {
    animation: walk 2.4s ease-in-out infinite, glow 2.4s ease-in-out infinite;
}

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

    .subtitle {
        font-size: 16px;
    }

    .iraq-widget {
        padding: 16px 18px;
    }
}
 .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      font-size: 32px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      text-align: center;
      line-height: 60px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      transition: all 0.3s ease;
  }

  .whatsapp-float:hover {
      background-color: #20b358;
      transform: scale(1.05);
  }


.badge {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #FFF;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.12);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 13px;
}

.badge i {
    font-size: 16px;
    color: #548BF6;
}

/* لمعان متحرك على البادج */
.badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.7) 45%, transparent 70%);
    transform: translateX(-120%);
    animation: badge-shine 2.2s linear infinite;
    pointer-events: none;
}




@keyframes walk {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(2px) rotate(0.6deg);
    }

    50% {
        transform: translateX(-2px) rotate(-0.6deg);
    }

    75% {
        transform: translateX(1px) rotate(0.4deg);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 0 0 0 var(--glow);
    }

    50% {
        box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12), 0 0 0 10px transparent;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@keyframes badge-shine {
    0% {
        transform: translateX(-140%);
    }

    50% {
        transform: translateX(40%);
    }

    100% {
        transform: translateX(140%);
    }
}

.iraq-widget.glow {
    animation: walk 2.4s ease-in-out infinite, glow 2.4s ease-in-out infinite;
}

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

    .subtitle {
        font-size: 16px;
    }

    .iraq-widget {
        padding: 16px 18px;
    }
}

/* FAQ Accordion Styles */
.accordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header.active {
    background: rgba(79, 181, 161, 0.1);
    border-radius: 12px;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
