:root {
    --gold: #c9a227;
    --gold-hover: #b08d1e;
    --dark: #0f1923;
    --dark-light: #1a2a3a;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    padding-top: 72px;
}

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

/* Navbar */
.site-navbar {
    background: rgba(15, 25, 35, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    transition: box-shadow 0.3s;
}

.site-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s;
}

.site-navbar .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-logo {
    max-height: 36px;
    max-width: 120px;
    object-fit: contain;
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, #1e3a5f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 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.02'%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;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.4);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
}

/* Calculator */
.calculator-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.quote-result {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 4px solid var(--gold);
}

.quote-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Service cards */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 162, 39, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Route table */
.route-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.route-table thead {
    background: var(--dark);
    color: #fff;
}

.route-table thead th {
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.route-table tbody td {
    padding: 0.85rem 1rem;
    vertical-align: middle;
}

/* Trust */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.trust-item {
    padding: 1rem;
}

/* Contact */
.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    transition: box-shadow 0.2s;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #fff;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1050;
    transition: transform 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Form focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 2rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .calculator-card {
        padding: 1.5rem;
    }
}

body.lang-ar {
    font-family: 'Noto Sans Arabic', 'Inter', system-ui, sans-serif;
}

html[dir="rtl"] .whatsapp-float {
    left: 24px;
    right: auto;
}

html[dir="rtl"] .quote-result {
    border-left: none;
    border-right: 4px solid var(--gold);
}

html[dir="rtl"] .feature-list li i {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}
