/* CLICK QR - Main Brand Design System */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Cairo:wght@600;700;800;900&display=swap');

:root {
    --brand-blue: #0A345B;
    --brand-blue-hover: #07233E;
    --brand-gold: #F4B400;
    --brand-gold-hover: #D9A000;
    --brand-gold-light: #FFF8E1;
    --brand-bg: #F7F9FC;
    --brand-surface: #FFFFFF;
    --brand-text: #1E293B;
    --brand-muted: #64748B;
    --brand-border: #E2E8F0;
    --brand-radius: 12px;
    --brand-radius-sm: 8px;
    --brand-shadow: 0 10px 25px -5px rgba(10, 52, 91, 0.08), 0 8px 10px -6px rgba(10, 52, 91, 0.04);
    --brand-shadow-lg: 0 20px 35px -10px rgba(10, 52, 91, 0.12);
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--brand-bg);
    color: var(--brand-text);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar-clickqr {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--brand-border);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-badge {
    background: var(--brand-blue);
    color: var(--brand-gold);
    font-weight: 900;
    font-size: 1.25rem;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.brand-text-title {
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0;
}

.nav-link-custom {
    color: var(--brand-text);
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.2s ease;
}

.nav-link-custom:hover {
    color: var(--brand-gold-hover);
}

/* Custom Buttons */
.btn-click-primary {
    background-color: var(--brand-blue);
    color: #FFFFFF;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--brand-radius-sm);
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-click-primary:hover {
    background-color: var(--brand-blue-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 52, 91, 0.25);
}

.btn-click-gold {
    background-color: var(--brand-gold);
    color: var(--brand-blue);
    font-weight: 800;
    padding: 12px 28px;
    border-radius: var(--brand-radius-sm);
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-click-gold:hover {
    background-color: var(--brand-gold-hover);
    color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.35);
}

.btn-click-outline {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--brand-radius-sm);
    transition: all 0.2s ease;
}

.btn-click-outline:hover {
    background: var(--brand-blue);
    color: #FFFFFF;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-bg) 100%);
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-blue);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-title .highlight-gold {
    color: var(--brand-gold);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--brand-muted);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-phone-mockup {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 12px;
    background: #1E293B;
    box-shadow: var(--brand-shadow-lg), 0 0 0 4px #E2E8F0;
}

.hero-phone-screen {
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    height: 520px;
    position: relative;
}

/* Features Grid */
.feature-card {
    background: #FFFFFF;
    border: 1px solid var(--brand-border);
    border-radius: var(--brand-radius);
    padding: 30px 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--brand-shadow);
    border-color: var(--brand-gold);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--brand-gold-light);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Pricing Cards */
.pricing-card {
    background: #FFFFFF;
    border: 1px solid var(--brand-border);
    border-radius: 18px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured-card {
    border: 2px solid var(--brand-gold);
    box-shadow: var(--brand-shadow-lg);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 30px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand-blue);
    margin: 20px 0 10px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-muted);
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
    flex-grow: 1;
}

.pricing-features-list li {
    padding: 10px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #F1F5F9;
}

.pricing-features-list li i {
    color: #10B981;
}

/* Footer */
.footer-clickqr {
    background-color: var(--brand-blue);
    color: #94A3B8;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-clickqr a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-clickqr a:hover {
    color: var(--brand-gold);
}

/* Flash alerts */
.alert-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: var(--brand-radius-sm);
}
