/* ============================================================
   شركة سير التجارية - الملف الرئيسي للأنماط
   SYR Trading - Main Stylesheet
   Premium Design System v2.0
   ============================================================ */

/* ==============================================
   CSS VARIABLES - Design System Tokens
   ============================================== */
:root {
    /* Primary Colors */
    --primary: #1B2A6B;
    --primary-dark: #0F1B4D;
    --primary-light: #2C3E8C;
    --primary-rgb: 27, 42, 107;

    /* Accent Colors */
    --accent: #D4A843;
    --accent-light: #E8C66A;
    --accent-dark: #B8922F;
    --accent-rgb: 212, 168, 67;

    /* Text Colors */
    --text-dark: #0A0F2B;
    --text-light: #6B7280;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-light: #F0F2F8;
    --bg-white: #FFFFFF;

    /* Border & Utility */
    --border: #E5E7EB;
    --success: #10B981;
    --error: #EF4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1B2A6B 0%, #2C3E8C 100%);
    --gradient-hero: linear-gradient(135deg, #0F1B4D 0%, #1B2A6B 50%, #2C3E8C 100%);

    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing */
    --header-height: 80px;
    --header-height-scrolled: 65px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: all 0.2s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}


/* ==============================================
   RESET & BASE STYLES
   ============================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    direction: rtl;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* Selection Styling */
::selection {
    background-color: var(--accent);
    color: var(--text-white);
}

::-moz-selection {
    background-color: var(--accent);
    color: var(--text-white);
}


/* ==============================================
   CUSTOM SCROLLBAR
   ============================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* ==============================================
   UTILITY CLASSES
   ============================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    z-index: 1;
    animation: slideIndicator 3s ease-in-out infinite;
}

@keyframes slideIndicator {
    0%, 100% { transform: translateX(-50%) translateX(-25px); }
    50% { transform: translateX(-50%) translateX(25px); }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

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

.text-gold {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.35);
}

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

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn i,
.btn svg {
    font-size: 1.1em;
}


/* ==============================================
   HEADER
   ============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(15, 27, 77, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: slideDown 0.6s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header.scrolled {
    background: rgba(10, 15, 43, 0.98);
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header.hidden {
    transform: translateY(-100%);
}

/* Logo */
.logo { 
    display: flex; 
    align-items: center; 
    flex-shrink: 0;
    background: #ffffff;
    padding: 4px 16px;
    border-radius: var(--radius-full); /* حواف منحنية بالكامل (شكل كبسولة) */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    height: 45px;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

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

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

/* Header CTA */
.header-cta {
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

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

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

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


/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
    min-height: 700px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    filter: sepia(1) hue-rotate(180deg) saturate(3) brightness(1.4);
    z-index: 0;
    animation: zoomInOut 20s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(20, 60, 110, 0.4) 0%, rgba(10, 15, 43, 0.9) 100%);
    z-index: 1;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFD700;
    display: block;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-stat-label {
    font-size: 1rem;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Hero Floating Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-rgb), 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite 1s;
}

.shape-3 {
    position: absolute;
    top: 40%;
    left: 15%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite 2s;
}

.shape-4 {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite 0.5s;
}

.shape-5 {
    position: absolute;
    top: 25%;
    left: 40%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite 3s;
}


/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-section {
    background: var(--bg-light);
}

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

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(27, 42, 107, 0.05);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.05) 0%, rgba(27, 42, 107, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(27, 42, 107, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-white);
    font-size: 2.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--accent);
    z-index: -1;
    top: 5px;
    right: -5px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    border-radius: 50%;
}

.service-card:hover .service-icon::after {
    top: 10px; right: 0;
    filter: blur(15px);
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* ==============================================
   STATS / COUNTER SECTION
   ============================================== */
.stats-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.2;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}


/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-section {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    order: 1;
}

.about-content .section-title {
    text-align: right;
}

.about-content .section-title::after {
    left: auto;
    right: 0;
    transform: none;
}

.about-content .section-title::before {
    left: auto;
    right: 0;
    transform: none;
    animation: none;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.about-feature-item:hover {
    background: var(--bg-light);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.about-visual {
    order: 2;
    position: relative;
}

.about-visual-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
}


/* ==============================================
   CLIENTS SECTION
   ============================================== */
.clients-section {
    background: var(--bg-light);
}

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

.client-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(27, 42, 107, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(27, 42, 107, 0.08);
    border-color: rgba(212, 168, 67, 0.2);
}

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

.client-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.client-card:hover .client-card-icon {
    transform: rotateY(180deg) scale(1.1);
}

.client-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.client-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Marquee Global Styles */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    direction: ltr;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%;
    z-index: 2; pointer-events: none;
}
.marquee-wrapper::before {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}
.marquee-wrapper::after {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}
.marquee-grid {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: marqueeScroll 40s linear infinite;
}
.marquee-grid:hover {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    width: 400px;
    flex-shrink: 0;
    direction: rtl;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-card h4 {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}


/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .section-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.cta-section .section-title::after {
    background: var(--accent);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: #0A0F2B;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col .footer-logo {
    max-height: 45px;
    margin-bottom: 1.5rem;
    background: #ffffff;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-col .footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-col ul li a i {
    font-size: 0.8rem;
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--accent-light);
}


/* ==============================================
   PAGE HERO (Inner Pages)
   ============================================== */
.page-hero {
    min-height: 400px;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.page-hero .hero-title {
    font-size: 2.5rem;
    animation: fadeInUp 0.6s ease both;
}

.page-hero .hero-subtitle {
    font-size: 1.1rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; }

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.breadcrumb-list li a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.breadcrumb-list li a:hover {
    color: var(--primary);
}

.breadcrumb-list li.active {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-list li .separator {
    color: var(--border);
}


/* ==============================================
   CONTACT PAGE STYLES
   ============================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #EF4444;
    margin-right: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition-smooth);
    direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

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

.form-group .error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #EF4444;
}

.form-group.has-error .error-message {
    display: block;
}

.form-submit-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.05rem;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(var(--primary-rgb), 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info-text a:hover {
    color: var(--accent);
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
    height: 220px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ==============================================
   TIMELINE
   ============================================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--border);
    border-radius: var(--radius-full);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-item:nth-child(even) {
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--accent);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.timeline-year {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* ==============================================
   VALUES / FEATURES GRID
   ============================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.value-icon {
    width: 65px;
    height: 65px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: rotate(5deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* ==============================================
   BACK TO TOP BUTTON
   ============================================== */


.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}


/* ==============================================
   LOADING / SPINNER
   ============================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ==============================================
   FORM SUCCESS / ERROR STATES
   ============================================== */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}


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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="400"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="500"] { transition-delay: 0.5s; }
.animate-on-scroll[data-delay="600"] { transition-delay: 0.6s; }
.animate-on-scroll[data-delay="700"] { transition-delay: 0.7s; }
.animate-on-scroll[data-delay="800"] { transition-delay: 0.8s; }


/* ==============================================
   RESPONSIVE DESIGN - TABLET (max-width: 1024px)
   ============================================== */
@media (max-width: 1024px) {
    .section {
        padding: 4.5rem 0;
    }

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

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

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .about-grid {
        gap: 3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

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

    .hero-stats {
        gap: 2rem;
    }
}


/* ==============================================
   RESPONSIVE DESIGN - MOBILE (max-width: 768px)
   ============================================== */
.mobile-only-btn {
    display: none;
}
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

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

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

    /* Header Mobile */
    .mobile-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }
    
    .mobile-only-btn {
        display: block;
        margin-top: 15px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 10px;
    }
    .mobile-only-btn .btn {
        width: 80%;
        margin: 5px auto;
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 43, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 600px;
    }

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

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

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-item::after {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        order: 2;
    }

    .about-visual {
        order: 1;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-col {
        text-align: center;
    }

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

    .footer-contact-item {
        justify-content: center;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-right: 50px;
        text-align: right;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem;
    }

    /* Page Hero */
    .page-hero {
        min-height: 300px;
        height: 40vh;
    }

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

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* ==============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px)
   ============================================== */
@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

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

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

    .hero {
        min-height: 550px;
    }

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

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

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .page-hero .hero-title {
        font-size: 1.7rem;
    }

    .btn {
        padding: 0.75rem 1.8rem;
        font-size: 0.9rem;
    }

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

    .logo img {
        height: 42px;
    }

    .header.scrolled .logo img {
        height: 38px;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

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

    .cta-section p {
        font-size: 1rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 1.5rem;
        left: 1.5rem;
    }
}


/* ==============================================
   PRINT STYLES
   ============================================== */
@media print {
    .header,
    .footer,
    .back-to-top,
    .mobile-toggle,
    .hero-shapes {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 2rem 0;
    }
}


.btn-white {
    background: #ffffff;
    color: var(--primary-dark);
    border-color: #ffffff;
    font-weight: 700;
}
.btn-white:hover {
    background: #f0f2f8;
    color: var(--primary);
    border-color: #f0f2f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.35);
}

.section-title-light {
    color: var(--text-white);
}
.section-title-light::after {
    background: var(--text-white);
}

/* --- Employee Login Button --- */
.btn-login-gateway {
    margin-right: 15px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), rgba(212, 168, 67, 0.3));
    color: var(--accent, #d4a843);
    border: 1px solid var(--accent, #d4a843);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.2), inset 0 0 10px rgba(212, 168, 67, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-login-gateway::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.6s ease;
}

.btn-login-gateway:hover {
    background: var(--accent, #d4a843);
    color: #fff;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.6);
    transform: translateY(-2px);
    border-color: #fff;
}

.btn-login-gateway:hover::before {
    left: 100%;
}
