/**
 * BPEX - Big Port Express
 * Premium Corporate Logistics Design
 * Color Palette: Red (#C41E3A) + Gold (#FFB800)
 */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* BPEX Color Palette - Red & Gold */
    --primary: #C41E3A;
    --primary-dark: #9B1830;
    --primary-light: #E02549;
    --accent: #FFB800;
    --accent-dark: #E5A600;
    --accent-light: #FFCC33;
    --secondary: #4A4A4A;
    --success: #10b981;
    --warning: #FFB800;
    --danger: #C41E3A;
    --info: #06b6d4;
    --dark: #2D2D2D;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gradient-primary: linear-gradient(135deg, #C41E3A 0%, #9B1830 100%);
    --gradient-hero: linear-gradient(135deg, #C41E3A 0%, #8B1528 50%, #C41E3A 100%);
    --gradient-accent: linear-gradient(135deg, #FFB800 0%, #E5A600 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --transition: all 0.3s ease;
}

/* =============================================
   BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Tajawal', sans-serif;
    background-color: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.rtl-mode {
    font-family: 'Tajawal', 'Inter', sans-serif;
}

main {
    flex: 1;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--dark) !important;
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--gray-100);
}

.lang-switcher .btn {
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: var(--gradient-hero);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-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.05'%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");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
}

.hero-form {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form .input-group {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.hero-form .form-control {
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    background: transparent;
}

.hero-form .form-control:focus {
    box-shadow: none;
}

.hero-form .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius) !important;
}

.hero-illustration {
    position: absolute;
    right: 5%;
    bottom: 10%;
    opacity: 0.1;
    font-size: 20rem;
    color: var(--white);
}

.rtl-mode .hero-illustration {
    right: auto;
    left: 5%;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* =============================================
   PAGE HEADERS
   ============================================= */
.page-header {
    background: var(--gradient-hero);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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.05'%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");
    opacity: 0.5;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* =============================================
   CARDS
   ============================================= */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: var(--gray-800);
}

/* =============================================
   TRACKING FORM
   ============================================= */
.tracking-form-section {
    padding: 3rem 0;
}

.tracking-form-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.tracking-form .input-group {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.tracking-form .input-group:focus-within {
    border-color: var(--primary);
}

.tracking-form .form-control {
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

.tracking-form .form-control:focus {
    box-shadow: none;
}

.tracking-form .btn {
    padding: 1rem 2rem;
    font-weight: 600;
}

/* =============================================
   SHIPMENT INFO CARD
   ============================================= */
.shipment-info-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.shipment-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
}

.shipment-header h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shipment-header .tracking-number {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.shipment-body {
    padding: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--gray-500);
    font-weight: 500;
}

.info-value {
    font-weight: 600;
    color: var(--gray-800);
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline-section {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.timeline {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    left: 24px;
    margin-left: -1.5px;
}

.rtl-mode .timeline::before {
    left: auto;
    right: 24px;
    margin-right: -1.5px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 2rem;
}

.rtl-mode .timeline-item {
    padding-left: 0;
    padding-right: 60px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    z-index: 1;
}

.rtl-mode .timeline-icon {
    left: auto;
    right: 10px;
}

.timeline-icon.completed {
    background: var(--success);
    color: var(--white);
}

.timeline-icon.current {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.timeline-icon.pending {
    background: var(--gray-300);
    color: var(--gray-600);
}

.timeline-content {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 1.25rem;
}

.timeline-content.current {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--primary);
}

.timeline-status {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.timeline-location {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.timeline-note {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-style: italic;
}

.timeline-time {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* =============================================
   NOT FOUND SECTION
   ============================================= */
.not-found-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.not-found-icon {
    font-size: 5rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.not-found-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.not-found-desc {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* =============================================
   FORMS
   ============================================= */
.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--gray-500);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
    padding: 4rem 0;
}

.about-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.value-item:last-child {
    border-bottom: none;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 1rem;
}

.value-icon i {
    color: var(--primary);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding: 4rem 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 1rem;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-info-content h6 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
}

.alert-info {
    background: rgba(6, 182, 212, 0.1);
    color: #155e75;
}

/* =============================================
   BADGES
   ============================================= */
.badge {
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--border-radius);
}

.badge-status {
    font-size: 0.875rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--gray-900) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-inline-start: 5px;
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary) !important;
}

.footer-track-form .form-control {
    background: var(--gray-800);
    border: none;
    color: var(--white);
}

.footer-track-form .form-control::placeholder {
    color: var(--gray-500);
}

/* =============================================
   ADMIN STYLES
   ============================================= */
.admin-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem;
}

.admin-login-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.admin-sidebar {
    background: var(--gray-900);
    min-height: 100vh;
    padding: 1.5rem;
    position: fixed;
    width: 260px;
    top: 0;
    left: 0;
    z-index: 1000;
}

.rtl-mode .admin-sidebar {
    left: auto;
    right: 0;
}

.admin-sidebar .brand {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-700);
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav li {
    margin-bottom: 0.5rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--gray-400);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--gray-800);
    color: var(--white);
}

.admin-nav a i {
    margin-inline-end: 0.75rem;
    font-size: 1.1rem;
}

.admin-content {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
    background: var(--gray-100);
}

.rtl-mode .admin-content {
    margin-left: 0;
    margin-right: 260px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.admin-table {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table .table {
    margin-bottom: 0;
}

.admin-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
    border-bottom: 2px solid var(--gray-200);
}

.admin-table td {
    vertical-align: middle;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
}

/* Stagger animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .rtl-mode .admin-sidebar {
        transform: translateX(100%);
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-illustration {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .tracking-form-card {
        padding: 1.5rem;
    }
    
    .shipment-header {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .rtl-mode .timeline-item {
        padding-right: 50px;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.rounded-xl {
    border-radius: var(--border-radius-xl);
}

.shadow-premium {
    box-shadow: var(--shadow-xl);
}

/* =============================================
   BIG PORT EXPRESS - SERVICE CARDS
   ============================================= */
.service-card {
    transition: var(--transition);
    border-radius: var(--border-radius-xl) !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stat-item {
    padding: 1rem;
}

.stat-item h2 {
    font-size: 2.5rem;
}

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-preview-section .logistics-illustration {
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
}

/* =============================================
   ACCENT COLOR OVERRIDES
   ============================================= */
.btn-danger {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.btn-danger:hover {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
}

.btn-outline-danger {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.btn-outline-danger:hover {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--white) !important;
}

.text-danger {
    color: var(--accent) !important;
}

.bg-danger {
    background-color: var(--accent) !important;
}

/* Dark Blue Primary Overrides */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

/* Phone numbers always LTR */
.phone-ltr,
a[href^="tel:"],
a[href^="https://wa.me"],
[dir="rtl"] .phone-number,
.rtl-mode .phone-number {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}
