:root {
    --brand-primary: #0f88d6;
    --brand-secondary: #085c9b;
    --brand-outline: rgba(15, 136, 214, 0.22);
    --brand-soft: #edf6ff;
    --brand-ice: #f7fbff;
    --text-main: #111f33;
    --text-muted: #6b7b90;
    --shadow-floating: 0 24px 52px rgba(8, 92, 155, 0.18);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --surface-outline: rgba(15, 136, 214, 0.16);
    --shadow-card: 0 24px 54px rgba(15, 76, 148, 0.12);
    --input-bg: #ffffff;
    --input-border: rgba(15, 136, 214, 0.2);
    --surface-alt: #f0f4ff;
    --link-color: #0f88d6;
    --pill-bg: rgba(15, 136, 214, 0.12);
    --surface: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0f88d6 0%, #23b2ff 100%);
    --gradient-card: linear-gradient(160deg, rgba(237, 246, 255, 0.6), #fff);
    --ripple-color: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --toast-success: #10b981;
    --toast-error: #ef4444;
    --toast-info: #3b82f6;
    --toast-warning: #f59e0b;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
}

body.theme-ar {
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

body.theme-en {
    direction: ltr;
}

body.theme-ur {
    direction: rtl;
    font-family: 'Poppins', sans-serif;
}

body.theme-dark {
    --bg-gradient: linear-gradient(135deg, #0f1729 0%, #1a2332 50%, #0f1729 100%);
    --surface: #1a2332;
    --surface-soft: rgba(26, 35, 50, 0.98);
    --surface-card: rgba(30, 42, 60, 0.95);
    --surface-alt: #1e2a3e;
    --surface-outline: rgba(15, 136, 214, 0.35);
    --nav-bg: rgba(22, 31, 46, 0.98);
    --nav-border: rgba(15, 136, 214, 0.3);
    --text-main: #f0f6ff;
    --text-muted: #b8d4ff;
    --link-color: #5bb3ff;
    --shadow-soft: 0 28px 68px rgba(15, 136, 214, 0.15);
    --shadow-card: 0 32px 70px rgba(15, 136, 214, 0.12);
    --input-bg: rgba(30, 42, 60, 0.95);
    --input-border: rgba(15, 136, 214, 0.4);
    --pill-bg: rgba(15, 136, 214, 0.25);
    --brand-soft: rgba(15, 136, 214, 0.2);
    --brand-ice: rgba(15, 136, 214, 0.1);
    background: var(--bg-gradient);
    color: var(--text-main);
}

body.theme-dark .text-muted {
    color: #b8d4ff !important;
    opacity: 0.95;
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark h5,
body.theme-dark h6 {
    color: #f0f6ff !important;
    font-weight: 600;
}

body.theme-dark p,
body.theme-dark .lead,
body.theme-dark .lead-sm,
body.theme-dark span:not(.eyebrow) {
    color: #e0edff !important;
    opacity: 0.98;
}

body.theme-dark .section-heading h2,
body.theme-dark .section-heading h3 {
    color: #f0f6ff !important;
}

body.theme-dark .section-heading p,
body.theme-dark .section-heading .text-muted {
    color: #b8d4ff !important;
    opacity: 0.95;
}

body.theme-dark header {
    background: rgba(22, 31, 46, 0.98);
    border-bottom: 1px solid rgba(15, 136, 214, 0.3);
    box-shadow: 0 4px 24px rgba(15, 136, 214, 0.1);
}

header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(8, 92, 155, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

body.theme-dark header {
    background: rgba(22, 31, 46, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(15, 136, 214, 0.3);
    box-shadow: 0 4px 24px rgba(15, 136, 214, 0.1);
}

.navbar .nav-link {
    color: var(--text-main);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    transition: var(--transition-smooth);
}

body.theme-dark .navbar .nav-link {
    color: #f0f6ff !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--brand-primary);
}

body.theme-dark .navbar .nav-link:hover,
body.theme-dark .navbar .nav-link:focus,
body.theme-dark .navbar .nav-link.active {
    color: #5bb3ff !important;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    background: var(--brand-secondary);
}

.navbar-brand .brand-logo {
    width: 140px;
    height: auto;
}

.navbar .navigation {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 1.5rem;
}

.navbar .navigation li {
    white-space: nowrap;
}

.navigation .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

body.theme-dark .navigation .nav-link {
    color: #f0f6ff !important;
}

.navigation .nav-link.active,
.navigation .nav-link:hover,
.navigation .nav-link:focus {
    color: var(--link-color);
}

body.theme-dark .navigation .nav-link.active,
body.theme-dark .navigation .nav-link:hover,
body.theme-dark .navigation .nav-link:focus {
    color: #4db3ff !important;
}

.nav-actions .btn,
.nav-actions .nav-link {
    font-weight: 500;
}

.nav-actions .btn-outline-primary {
    border-radius: 999px;
    border-width: 1px;
}

.nav-actions .btn-primary {
    border-radius: 999px;
    border: none;
    box-shadow: 0 14px 28px rgba(42, 141, 247, 0.25);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 1px solid var(--surface-outline);
    padding: 0.45rem 1.1rem;
    background: var(--surface);
    color: var(--text-main);
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-icon i {
    font-size: 1.1rem;
}

.btn-icon:hover {
    background: var(--pill-bg);
    color: var(--link-color);
}

.theme-toggle {
    border-radius: 999px;
    border: 1px solid var(--surface-outline);
    background: var(--surface);
    color: var(--text-main);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.theme-toggle:hover {
    background: var(--pill-bg);
    border-color: rgba(42, 141, 247, 0.35);
    color: var(--link-color);
}

.hero-elevated {
    padding: 6.25rem 0 5.5rem;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.hero-elevated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(15, 136, 214, 0.1) 50%,
        transparent 100%);
    z-index: 1;
}

body.theme-dark .hero-elevated {
    background: linear-gradient(180deg, var(--surface) 0%, rgba(15, 23, 41, 0.98) 100%);
}

.hero-gridline {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 136, 214, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 136, 214, 0.03) 1px, transparent 1px);
    background-size: 110px 110px;
    opacity: 0.4;
    z-index: 1;
}

.hero-intro {
    position: relative;
    z-index: 10;
    padding-right: 1rem;
}

@media (min-width: 1200px) {
    .hero-intro {
        padding-right: 2rem;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: baseline;
    animation: fadeInOut 10s ease-in-out infinite;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-title span {
    white-space: nowrap;
    display: inline-block;
}

body.theme-dark .hero-title {
    text-shadow: 0 2px 20px rgba(15, 136, 214, 0.2), 0 1px 8px rgba(15, 136, 214, 0.4);
    color: #f0f6ff !important;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(10px);
    }
    5%, 95% {
        opacity: 1;
        transform: translateY(0);
    }
}

body.theme-dark .hero-title {
    color: #ffffff !important;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #0f88d6, #23b2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    animation: fadeInOut 10s ease-in-out infinite;
    opacity: 0;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.08);
}

body.theme-dark .hero-tagline {
    color: #e0edff !important;
    text-shadow: 0 1px 12px rgba(15, 136, 214, 0.2), 0 1px 4px rgba(15, 136, 214, 0.4);
    opacity: 0.98;
}

.hero-actions .btn {
    border-radius: 999px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.25);
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 136, 214, 0.35);
}

.hero-actions .btn:active {
    transform: translateY(0);
}

.hero-actions .btn-outline-primary {
    border: 2px solid rgba(15, 136, 214, 0.3);
    color: var(--brand-primary);
    background: #fff;
}

.hero-actions .btn-outline-primary:hover {
    background: var(--brand-primary);
    color: #fff;
}

.hero-statistics {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-statistics::before {
    display: none;
}

.hero-statistics > div {
    position: relative;
    z-index: 1;
}

body.theme-dark .hero-statistics {
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.theme-dark .hero-statistics::before {
    display: none;
}

.hero-statistics strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    animation: countUp 1.5s ease-out;
}

body.theme-dark .hero-statistics strong {
    color: #5bb3ff !important;
    text-shadow: 0 2px 8px rgba(15, 136, 214, 0.4);
}

.hero-statistics span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.3rem;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 0;
    overflow: visible;
    background: none !important;
    z-index: 1;
    margin: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-xl-7.p-0 {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
}

.col-xl-7.ps-xl-4 {
    padding-left: 1.5rem !important;
}

@media (min-width: 1200px) {
    .col-xl-7.ps-xl-4 {
        padding-left: 2.5rem !important;
    }
}

body.theme-dark .hero-image-wrapper {
    box-shadow: none;
}

.hero-background-image {
    width: 90%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
    opacity: 1;
    filter: brightness(1) saturate(1) contrast(1);
    mix-blend-mode: normal;
    border-radius: 0;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 0 !important;
    box-shadow: none !important;
    transform: scaleX(-1);
    transition: transform 0.6s ease, filter 0.4s ease;
    background: none !important;
    background-color: transparent !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border: none !important;
    outline: none !important;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 0;
    overflow: visible;
    background: none !important;
    background-color: transparent !important;
    z-index: 2;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
}

.hero-image-wrapper:hover .hero-background-image {
    transform: scale(1.02) scaleX(-1);
    filter: brightness(1.02) saturate(1.05) contrast(1.02);
    box-shadow: none !important;
}

body.theme-dark .hero-background-image {
    opacity: 1;
    filter: brightness(0.95) contrast(1.05) saturate(1);
    mix-blend-mode: normal;
    box-shadow: none !important;
    background: none !important;
    background-color: transparent !important;
    transform: scaleX(-1);
}

body.theme-dark .hero-image-wrapper:hover .hero-background-image {
    transform: scale(1.02) scaleX(-1);
    filter: brightness(0.98) contrast(1.08) saturate(1.02);
    box-shadow: none !important;
}

/* Hero Features Wrapper */
.hero-features-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.stats-panel .hero-features-wrapper {
    padding: 0;
    gap: 1.5rem;
}

.hero-platform-title {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-platform-title h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0f88d6, #23b2ff);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.3);
}

.stats-panel .hero-platform-title h3 {
    font-size: 1.3rem;
    padding: 0.75rem 1.5rem;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

.stats-panel .hero-features-grid {
    gap: 1rem;
    max-width: 100%;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 136, 214, 0.1);
}

.stats-panel .hero-feature-item {
    padding: 1rem 0.75rem;
    background: transparent;
    box-shadow: none;
    border: none;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 136, 214, 0.2);
    border-color: rgba(15, 136, 214, 0.3);
}

.hero-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f88d6, #23b2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(15, 136, 214, 0.2);
}

.stats-panel .hero-feature-icon {
    width: 60px;
    height: 60px;
}

.hero-feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.stats-panel .hero-feature-icon i {
    font-size: 1.5rem;
}

.hero-feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
    font-weight: 500;
}

.stats-panel .hero-feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

body.theme-dark .hero-platform-title h3 {
    color: #ffffff;
    background: linear-gradient(135deg, #0f88d6, #23b2ff);
    border: none;
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.5);
}

body.theme-dark .hero-feature-item {
    background: rgba(20, 32, 52, 0.85);
    border-color: rgba(15, 136, 214, 0.2);
}

body.theme-dark .hero-feature-item p {
    color: #e8f0ff;
}

body.theme-dark .hero-feature-icon {
    background: linear-gradient(135deg, #0f88d6, #23b2ff);
    border-color: rgba(255, 255, 255, 0.3);
}

body.theme-dark .hero-feature-icon i {
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-platform-title h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}

.quote-card-slim {
    border-radius: 28px;
    padding: 1.9rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 136, 214, 0.18);
    box-shadow: var(--shadow-floating);
    backdrop-filter: blur(18px);
}

.quote-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}

.quote-badge {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    border-radius: 12px;
    background: rgba(15, 136, 214, 0.15);
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quote-form-slim .form-label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.85rem;
}

.quote-form-slim .form-select,
.quote-form-slim .form-control {
    border-radius: 16px;
    border: 1px solid rgba(15, 136, 214, 0.25);
    padding: 0.6rem 0.85rem;
    box-shadow: none !important;
}

.quote-form-slim textarea {
    resize: none;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.grid-two label {
    grid-column: span 2;
}

.grid-two select,
.grid-two input,
.grid-two textarea {
    width: 100%;
}

.quote-form-slim .input-group .btn {
    border-radius: 14px;
}

.quote-footer {
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(15, 136, 214, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.quote-footer span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.quote-footer strong {
    display: block;
    font-size: 1.8rem;
    color: var(--brand-primary);
    font-weight: 700;
}

.quote-footer .btn {
    border-radius: 16px;
    padding: 0.65rem 1.5rem;
    box-shadow: 0 14px 28px rgba(15, 136, 214, 0.22);
}

/* Quote Strip Styles from design-01 */
.quote-strip {
    margin-top: -2.5rem;
    position: relative;
    z-index: 5;
}

.quote-strip .container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--surface-outline);
    box-shadow: var(--shadow-card);
    padding: 1.75rem 2rem;
    transition: all 0.3s ease;
}

body.theme-dark .quote-strip .container {
    background: rgba(30, 42, 60, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(15, 136, 214, 0.4);
    box-shadow: 0 24px 54px rgba(15, 136, 214, 0.15);
}

body.theme-dark .quote-strip__field label {
    color: #e0edff !important;
}

body.theme-dark .quote-strip__field .form-control,
body.theme-dark .quote-strip__field .form-select {
    color: #f0f6ff !important;
    background: var(--input-bg) !important;
}

body.theme-dark .quote-strip__field .input-group-text {
    color: #b8d4ff !important;
}

.quote-strip__form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: flex-end;
}

.quote-strip__field {
    flex: 1 1 180px;
    min-width: 160px;
}

.quote-strip__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
    font-size: 0.85rem;
}

.quote-strip__field .input-group-text {
    border-radius: 12px 0 0 12px;
    border: 1px solid var(--surface-outline);
    background: var(--surface-alt);
    color: var(--text-muted);
}

.quote-strip__field .form-control,
.quote-strip__field .form-select {
    border-radius: 12px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text-main);
    box-shadow: none;
    padding: 0.6rem 0.85rem;
}

.shipments-field .btn {
    border-radius: 10px;
}

.quote-strip__summary {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(15, 136, 214, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(15, 136, 214, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.quote-strip__summary.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.theme-dark .quote-strip__summary {
    background: rgba(15, 136, 214, 0.25);
    border-color: rgba(15, 136, 214, 0.4);
}

body.theme-dark .quote-strip__summary strong {
    color: #5bb3ff !important;
}

.quote-strip__summary strong {
    font-size: 1.6rem;
    color: var(--link-color);
    font-weight: 700;
}

.quote-strip__summary .summary-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quote-strip__actions {
    flex: 0 0 auto;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quote-strip__actions .btn {
    border-radius: 14px;
    padding: 0.75rem 1.8rem;
    white-space: nowrap;
}

.quote-strip__actions .btn-inquire {
    background: transparent;
    border: 2px solid var(--link-color);
    color: var(--link-color);
}

.quote-strip__actions .btn-inquire:hover {
    background: var(--link-color);
    color: #fff;
}

@media (max-width: 768px) {
    .quote-strip {
        margin-top: 1.5rem;
    }

    .quote-strip__summary {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .quote-strip__actions {
        width: 100%;
        flex-direction: column;
    }

    .quote-strip__actions .btn {
        width: 100%;
    }
}

.client-strip {
    background: var(--surface);
}

body.theme-dark .client-strip {
    background: var(--surface);
}

.section-heading {
    max-width: 640px;
    margin: 0 auto 2.6rem;
    text-align: center;
}


.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
}

.client-strip .clients-eyebrow {
    font-size: clamp(1.2rem, 3vw, 2rem) !important;
    font-weight: 700 !important;
    color: #0f88d6 !important;
    background: linear-gradient(135deg, #0f88d6 0%, #23b2ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    display: block !important;
    margin-bottom: 0.75rem !important;
}

.client-strip .section-heading h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 1rem !important;
}

.client-strip .section-heading p {
    font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
    line-height: 1.7 !important;
    color: #64748b !important;
    max-width: 800px !important;
}

body.theme-dark .client-strip .section-heading h2 {
    color: #f0f6ff !important;
}

body.theme-dark .client-strip .section-heading p {
    color: #b8d4ff !important;
}

body.theme-dark .client-strip .clients-eyebrow {
    background: linear-gradient(135deg, #23b2ff 0%, #0f88d6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.register .section-heading .eyebrow {
    font-size: clamp(0.95rem, 2vw, 1.3rem) !important;
    font-weight: 600 !important;
    color: #1a202c !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #1a202c !important;
    background-clip: unset !important;
    margin-bottom: 1.5rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    display: block !important;
}

body.theme-dark .section-heading .eyebrow {
    color: #5bb3ff !important;
    background: rgba(15, 136, 214, 0.25) !important;
}

body.theme-dark .register .section-heading .eyebrow {
    color: #f0f6ff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #f0f6ff !important;
    background-clip: unset !important;
    background-color: transparent !important;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 2.5rem;
    width: 100%;
}

.logo-track {
    display: inline-flex;
    gap: 3.5rem;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}

.logo-track img {
    height: 68px;
    width: auto;
    max-width: 180px;
    min-width: 80px;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    display: block;
    flex-shrink: 0;
    visibility: visible;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-4px);
}

/* RTL Support for marquee */
[dir="rtl"] .logo-track {
    animation: marquee-rtl 18s linear infinite;
}

[dir="rtl"] .logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.features {
    padding: 5rem 0;
    background: #fff;
}

body.theme-dark .features {
    background: var(--surface);
}

.feature-card {
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    background: linear-gradient(160deg, rgba(237, 246, 255, 0.6), #fff);
    border: 1px solid rgba(15, 136, 214, 0.15);
    box-shadow: 0 10px 30px rgba(8, 92, 155, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card .eyebrow {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card > p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(8, 92, 155, 0.15);
    border-color: rgba(15, 136, 214, 0.25);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

body.theme-dark .feature-card {
    background: linear-gradient(160deg, rgba(30, 42, 60, 0.85), rgba(26, 35, 50, 0.95));
    border: 1px solid rgba(15, 136, 214, 0.3);
    box-shadow: 0 20px 50px rgba(15, 136, 214, 0.15);
    color: #f0f6ff;
}

.feature-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 0;
}

.feature-grid article {
    display: grid;
    grid-template-columns: 56px auto;
    gap: 1rem;
    align-items: start;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
}


.feature-grid article:hover {
    transform: translateX(4px);
    background: rgba(15, 136, 214, 0.05);
}

body.theme-dark .feature-grid article:hover {
    background: rgba(15, 136, 214, 0.15);
}

.feature-grid i {
    font-size: 2rem;
    color: var(--brand-primary);
    background: rgba(15, 136, 214, 0.14);
    border-radius: 18px;
    padding: 0.75rem;
}

.feature-grid article h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-grid article p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.stats-panel {
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    background: linear-gradient(160deg, rgba(237, 246, 255, 0.6), #fff);
    border: 1px solid rgba(15, 136, 214, 0.15);
    box-shadow: 0 10px 30px rgba(8, 92, 155, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stats-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(8, 92, 155, 0.15);
    border-color: rgba(15, 136, 214, 0.25);
}

.stats-panel:hover::before {
    transform: scaleX(1);
}

.stats-panel h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.stats-panel > p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

body.theme-dark .stats-panel {
    background: linear-gradient(160deg, rgba(30, 42, 60, 0.85), rgba(26, 35, 50, 0.95));
    border: 1px solid rgba(15, 136, 214, 0.3);
    box-shadow: 0 20px 50px rgba(15, 136, 214, 0.15);
    color: #f0f6ff;
}

.stats-panel ul {
    display: grid;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 0;
    margin-bottom: 1rem;
}

.stats-panel > p.mb-3 {
    margin-top: 0;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(15, 136, 214, 0.1);
    font-size: 0.95rem;
    font-style: normal;
    color: rgba(0, 0, 0, 0.7);
}

body.theme-dark .stats-panel > p.mb-3 {
    color: rgba(240, 246, 255, 0.9);
    border-bottom-color: rgba(15, 136, 214, 0.3);
}

.stats-panel li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(15, 136, 214, 0.12);
    color: var(--brand-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stats-panel li:hover {
    background: rgba(15, 136, 214, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(15, 136, 214, 0.2);
}

.stats-panel li i {
    color: var(--brand-primary);
    font-size: 1.1rem;
}

body.theme-dark .stats-panel li {
    background: rgba(15, 136, 214, 0.25);
    color: #e8f0ff;
    border: 1px solid rgba(15, 136, 214, 0.2);
}

body.theme-dark .stats-panel li:hover {
    background: rgba(15, 136, 214, 0.4);
    border-color: rgba(15, 136, 214, 0.45);
    box-shadow: 0 8px 20px rgba(15, 136, 214, 0.35);
    transform: translateY(-3px) scale(1.02);
}

body.theme-dark .stats-panel li i {
    color: #5bb3ff;
}

.fleet-gallery {
    padding: 5rem 0;
    background: var(--brand-ice);
}

body.theme-dark .fleet-gallery {
    background: rgba(15, 23, 41, 0.5);
}

body.theme-dark .fleet-gallery .section-heading h2,
body.theme-dark .fleet-gallery .section-heading h3 {
    color: #f0f6ff !important;
}

body.theme-dark .fleet-gallery .section-heading p,
body.theme-dark .fleet-gallery .section-heading .text-muted {
    color: #b8d4ff !important;
}

body.theme-dark .fleet-gallery .section-heading .eyebrow {
    color: #5bb3ff !important;
    background: rgba(15, 136, 214, 0.25) !important;
}

.fleet-gallery img {
    width: 100%;
    border-radius: 18px;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid rgba(15, 136, 214, 0.14);
    transition: transform 0.35s ease;
}

body.theme-dark .fleet-gallery img {
    background: rgba(30, 42, 60, 0.8);
    border: 1px solid rgba(15, 136, 214, 0.35);
}

.fleet-gallery img:hover {
    transform: translateY(-8px);
}

.industries {
    padding: 5rem 0;
}

body.theme-dark .industries {
    background: var(--surface);
}

.industries button {
    border-radius: 18px;
    border: 1px solid rgba(15, 136, 214, 0.25);
    padding: 0.8rem 1rem;
    font-weight: 600;
    color: var(--brand-secondary);
    background: #fff;
    transition: var(--transition-smooth);
}

body.theme-dark .industries button {
    background: rgba(30, 42, 60, 0.8);
    border: 1px solid rgba(15, 136, 214, 0.4);
    color: #b8d4ff;
}

body.theme-dark .industries button:hover,
body.theme-dark .industries button:focus {
    background: var(--brand-primary);
    color: #fff;
    border-color: transparent;
}

.industries button:hover,
.industries button:focus {
    background: var(--brand-primary);
    color: #fff;
    border-color: transparent;
}

.values {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(15, 136, 214, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

body.theme-dark .values {
    background: var(--surface);
}

.values-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.values-title-center {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.values-title-center h2 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    padding: 0.75rem 2rem;
    background: #ffffff;
    border: 2px solid rgba(15, 136, 214, 0.2);
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.1);
}

/* Marketing Content */
.marketing-content {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.marketing-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f88d6;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #0f88d6 0%, #23b2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.marketing-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #64748b;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

body.theme-dark .marketing-title {
    background: linear-gradient(135deg, #23b2ff 0%, #0f88d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.theme-dark .marketing-subtitle {
    color: #b8d4ff;
}

/* Features Grid - تصميم دائري في صف واحد */
.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 1rem 0;
}

.feature-box {
    background: #ffffff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(15, 136, 214, 0.15);
    box-shadow: 0 4px 20px rgba(15, 136, 214, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 136, 214, 0.05), rgba(35, 178, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(15, 136, 214, 0.4);
    box-shadow: 0 12px 35px rgba(15, 136, 214, 0.25);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 136, 214, 0.1), rgba(35, 178, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(15, 136, 214, 0.2);
    position: relative;
    z-index: 1;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, #0f88d6, #23b2ff);
    transform: scale(1.15);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(15, 136, 214, 0.4);
}

.feature-icon i {
    font-size: 1.6rem;
    color: #0f88d6;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: #ffffff;
}

.feature-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #2d3748;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Dark Theme */
body.theme-dark .feature-box {
    background: rgba(30, 42, 60, 0.9);
    border-color: rgba(15, 136, 214, 0.3);
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.15);
}

body.theme-dark .feature-box:hover {
    border-color: rgba(15, 136, 214, 0.45);
    box-shadow: 0 8px 25px rgba(15, 136, 214, 0.3);
}

body.theme-dark .feature-box p {
    color: #f0f6ff;
}

body.theme-dark .feature-icon {
    background: linear-gradient(135deg, rgba(15, 136, 214, 0.2), rgba(35, 178, 255, 0.2));
    border-color: rgba(15, 136, 214, 0.3);
}

body.theme-dark .feature-icon i {
    color: #23b2ff;
}

body.theme-dark .values-title-center h2 {
    background: rgba(30, 42, 60, 0.95);
    color: #f0f6ff;
    border-color: rgba(15, 136, 214, 0.4);
    box-shadow: 0 4px 15px rgba(15, 136, 214, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .feature-box {
        width: 180px;
        height: 180px;
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .values {
        padding: 4rem 0;
    }
    
    .values-title-center {
        margin-bottom: 3rem;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
    
    .feature-box {
        width: 160px;
        height: 160px;
        padding: 1rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-box p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1rem;
    }
    
    .feature-box {
        width: 140px;
        height: 140px;
        padding: 0.875rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-box p {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 0.75rem;
    }
    
    .feature-box {
        width: 120px;
        height: 120px;
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.4rem;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-box p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
}


.register {
    padding: 4rem 0 3rem;
}

.register-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 136, 214, 0.15);
    padding: 1.5rem 1.75rem;
    background: linear-gradient(130deg, rgba(15, 136, 214, 0.08), rgba(255, 255, 255, 0.95));
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    color: inherit;
    transition: var(--transition-smooth);
}

.register-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(8, 92, 155, 0.15);
    border-color: rgba(15, 136, 214, 0.25);
}

.register-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.register-card p {
    font-size: 0.9rem;
    margin: 0;
}

.register-card i {
    font-size: 1.4rem;
    color: var(--brand-primary);
    flex-shrink: 0;
}


footer {
    padding: 2.5rem 0;
    background: #ffffff;
    color: #2d3748;
    border-top: 1px solid rgba(15, 136, 214, 0.1);
    margin-top: 3rem;
}

body.theme-dark footer {
    background: rgba(22, 31, 46, 0.95);
    color: #b8d4ff;
    border-top-color: rgba(15, 136, 214, 0.3);
}

footer .container {
    max-width: 1200px;
}

footer span {
    font-size: 0.9rem;
    color: #64748b;
}

footer a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

footer a:hover {
    color: #0f88d6;
    background-color: rgba(15, 136, 214, 0.08);
}

body.theme-dark footer span {
    color: #b8d4ff;
}

body.theme-dark footer a {
    color: #b8d4ff;
}

body.theme-dark footer a:hover {
    color: #5bb3ff;
    background-color: rgba(15, 136, 214, 0.2);
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1199px) {
    .grid-two {
        grid-template-columns: 1fr;
    }

    .grid-two label {
        grid-column: auto;
    }
}

@media (max-width: 991px) {
    .hero-elevated {
        padding-bottom: 6.5rem;
    }

    .hero-statistics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Responsive Design - Desktop (1200px+) */
@media (min-width: 1200px) {
    .hero-background-image {
        width: 90%;
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }
}

/* Responsive Design - Laptop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-background-image {
        width: 90%;
        max-width: 900px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    }
    
    .hero-elevated {
        padding: 5rem 0 4.5rem;
    }
}

/* Responsive Design - Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-background-image {
        width: 90%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .hero-elevated {
        padding: 4rem 0 3.5rem;
    }
    
    .hero-statistics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
        padding: 1.5rem 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .navbar .navigation {
        gap: 0.5rem;
    }
    
    .navigation .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .nav-actions .btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive Design - Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .hero-elevated {
        padding: 3rem 0 2.5rem;
    }
    
    .hero-background-image {
        width: 100%;
        max-width: 100%;
        box-shadow: none !important;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        max-width: 100%;
        margin-bottom: 1.25rem;
    }
    
    .hero-statistics {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 1.25rem;
        margin-top: 1.5rem;
    }
    
    .hero-statistics strong {
        font-size: 1.5rem;
    }
    
    .hero-statistics span {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-pills {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .col-xl-7.p-0 {
        margin-top: 2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 1.5rem;
    }
    
    .quote-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-track {
        animation-duration: 28s;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar .navigation {
        flex-wrap: wrap;
        gap: 0.25rem;
        justify-content: center;
    }
    
    .navigation .nav-link {
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
    }
    
    .nav-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .nav-actions .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .btn-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .hero-intro {
        text-align: center;
    }
    
    .hero-title {
        justify-content: center;
    }
    
    .hero-tagline {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-statistics {
        text-align: center;
    }
}

/* Back to top button removed */

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--surface-outline);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
}

body.theme-dark .language-dropdown-menu {
    background: rgba(30, 42, 60, 0.95);
    border-color: rgba(15, 136, 214, 0.4);
    box-shadow: 0 8px 24px rgba(15, 136, 214, 0.15);
}

.language-dropdown-menu.show {
    display: block;
}

.language-dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s ease;
}

body.theme-dark .language-dropdown-menu a {
    color: #ffffff;
}

.language-dropdown-menu a:hover {
    background: var(--pill-bg);
    color: var(--link-color);
}

body.theme-dark .language-dropdown-menu a:hover {
    background: rgba(15, 136, 214, 0.2);
    color: #5bb3ff;
}

[dir="rtl"] .language-dropdown-menu {
    right: auto;
    left: 0;
}

