/* ========================================================
   Art Steel - Unified Base Styles & Modern Architectural Color Palette
   Theme: Executive Architectural Platinum, Steel Navy & Champagne Bronze
   ======================================================== */

:root {
    /* Primary Metal & Prestige Accent (Warm Champagne Bronze - Clean & Luxurious) */
    --primary: #b88e44;
    --primary-dark: #9e7530;
    --primary-light: #fcf9f2;
    --primary-glow: rgba(184, 142, 68, 0.18);
    
    /* Engineering & Structural Accents (Royal Steel Navy - Pure & Crisp) */
    --navy-deep: #0f2b48;
    --navy-dark: #0a1f35;
    --navy-light: #18426d;
    --navy-soft: #235487;
    
    /* Architectural Platinum Slate & Clean Backgrounds */
    --bg-body: #f8fafc;        /* Crisp, clean, modern architectural platinum slate */
    --bg-section-alt: #f1f5f9; /* Soft brushed steel tint */
    --bg-card: #ffffff;        /* Pure crisp white card background */
    --bg-card-elevated: #ffffff;
    --bg-input: #ffffff;
    
    /* Typography & Text */
    --text-dark: #0f172a;      /* Deep slate charcoal for razor-sharp readability */
    --text-body: #334155;      /* Slate charcoal body text */
    --text-muted: #64748b;     /* Steel gray secondary text */
    --text-light: #ffffff;     /* For buttons and dark navy banners */
    
    /* Borders & Accents */
    --border-subtle: rgba(15, 43, 72, 0.08);
    --border-medium: rgba(15, 43, 72, 0.14);
    --border-gold: rgba(184, 142, 68, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 43, 72, 0.04);
    --shadow-card: 0 10px 30px rgba(15, 43, 72, 0.06);
    --shadow-hover: 0 18px 45px rgba(15, 43, 72, 0.11), 0 0 20px rgba(184, 142, 68, 0.12);
    
    --font-main: 'Tajawal', sans-serif;
    --font-heading: 'Cairo', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-body);
    direction: rtl;
    overflow-x: hidden !important;
    line-height: 1.75;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 1rem;
}

/* Scoped Section Titles */
.section-title,
.section-header h2,
.main-section-title {
    text-align: center;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 2.2rem;
}

.section-title::after,
.section-header h2::after,
.main-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #d4aa5c 100%);
}

/* Card and Component Heading Resets */
.blog-card-title,
.service-card-title,
.project-card-title,
.sidebar-widget h2,
.sidebar-widget h3,
.sidebar-widget h4 {
    text-align: right !important;
    position: static !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.blog-card-title::after,
.blog-card-title::before,
.service-card-title::after,
.project-card-title::after,
.sidebar-widget h2::after,
.sidebar-widget h3::after {
    display: none !important;
    content: none !important;
}

p {
    color: var(--text-body);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

a {
    color: var(--navy-deep);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 85px 0;
}

/* Section Background Utilities */
.section-white {
    background-color: #ffffff !important;
}

.section-alt {
    background-color: var(--bg-section-alt) !important;
}

.section-platinum {
    background-color: var(--bg-body) !important;
}

.section-navy {
    background: linear-gradient(135deg, #0a1f35 0%, #102e4d 100%) !important;
    color: #ffffff !important;
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
    color: #ffffff !important;
}

.section-navy p {
    color: #cbd5e1 !important;
}