/* AZ Marketing - Premium Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-navy: #071426;
    --primary-navy-dark: #030B18;
    --secondary-navy: #0B1E38;
    --blue-accent: #2F6EA5;
    
    --gold-primary: #D2A95A;
    --gold-dark: #B98735;
    --gold-light: #E4C57F;
    --champagne: #F1DDA8;
    
    --background-light: #FFFFFF;
    --background-section-alt: #F5F7FA;
    
    --text-dark: #111827;
    --text-muted: #667085;
    --text-light: #E2E8F0;
    
    --success: #168B5B;
    --warning: #D58A17;
    --danger: #C73E3E;
    --whatsapp-green: #25D366;
    
    /* Font Families */
    --font-en: 'Manrope', sans-serif;
    --font-ar: 'IBM Plex Sans Arabic', sans-serif;
    
    /* Spacing & Borders */
    --radius-btn: 10px;
    --radius-card: 18px;
    --radius-media: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
body {
    background-color: var(--primary-navy-dark);
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.lang-ar {
    font-family: var(--font-ar);
    direction: rtl;
    text-align: right;
    line-height: 1.8;
}

body.lang-en {
    font-family: var(--font-en);
    direction: ltr;
    text-align: left;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }

/* Metallic Gold Typography Accents */
.text-gold {
    color: var(--gold-primary) !important;
}

.light-section .text-gold {
    color: #a67c1e !important; /* Darker gold for better contrast on white background */
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: var(--primary-navy-dark) !important;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(210, 169, 90, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 169, 90, 0.5);
    filter: brightness(1.1);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light) !important;
    border: 2px solid var(--gold-primary);
    padding: 10px 26px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: rgba(210, 169, 90, 0.1);
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

/* Header/Navigation styles */
.navbar-custom {
    background: rgba(7, 20, 38, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: var(--primary-navy);
    box-shadow: 0 10px 30px rgba(3, 11, 24, 0.5);
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 12px;
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold-primary) !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 169, 90, 0.3);
    box-shadow: 0 15px 35px rgba(3, 11, 24, 0.6);
}

/* Fullscreen Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-navy-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3,11,24,0.92) 0%, rgba(3,11,24,0.7) 60%, rgba(3,11,24,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

/* Editorial content blocks */
.section-padding {
    padding: 100px 0;
}

.light-section {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.light-section h2, .light-section h3, .light-section h4 {
    color: var(--primary-navy-dark);
}

.light-section .text-muted {
    color: var(--text-muted) !important;
}

/* Process Timeline styling */
.process-step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: var(--primary-navy-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Metrics and statistics */
.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Floating Actions */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

body.lang-ar .floating-container {
    right: auto;
    left: 30px;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
}

.btn-phone {
    background-color: var(--blue-accent);
}

/* Footer layout styling */
.footer-section {
    background-color: var(--footer-bg-custom, var(--primary-navy));
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

.footer-section .text-muted {
    color: var(--footer-text-custom, rgba(255, 255, 255, 0.65)) !important;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-primary);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: var(--footer-text-custom, rgba(255, 255, 255, 0.75));
}

.footer-links a {
    color: var(--footer-text-custom, rgba(255,255,255,0.6));
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--footer-hover-custom, var(--gold-primary)) !important;
    padding-left: 5px;
}

body.lang-ar .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

/* Cookie Policy alert */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background: rgba(11, 30, 56, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(210, 169, 90, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
}

body.lang-ar .cookie-banner {
    left: auto;
    right: 20px;
}

/* Multi-step wizard proposal form */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

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

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary-navy);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.progress-node.active {
    background: var(--primary-navy-dark);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(210, 169, 90, 0.5);
}

.progress-node.complete {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--primary-navy-dark);
}
