/*
Theme Name: DooCareer
Theme URI: https://doocareer.com
Author: DooCareer Team
Description: Bilingual (EN/AR) educational platform theme — free courses, scholarships, and jobs.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: doocareer
*/

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --gold:        #D4A017;
  --gold-light:  #F0C040;
  --gold-dark:   #A87C10;
  --bg:          #FFFFFF;
  --bg-2:        #F5F5F5;
  --bg-3:        #EDEDED;
  --card-bg:     #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #555555;
  --border:      #E0E0E0;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --nav-bg:      rgba(255,255,255,0.97);
  --footer-bg:   #111111;
  --footer-text: #CCCCCC;
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  0.25s ease;
}
[data-theme="dark"] {
  --bg:         #0D0D0D;
  --bg-2:       #161616;
  --bg-3:       #1E1E1E;
  --card-bg:    #1A1A1A;
  --text:       #F0F0F0;
  --text-muted: #AAAAAA;
  --border:     #2A2A2A;
  --shadow:     0 2px 16px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
  --nav-bg:     rgba(13,13,13,0.97);
  --footer-bg:  #080808;
  --footer-text:#AAAAAA;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
[lang="ar"], [dir="rtl"] {
  font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
  direction: rtl;
  text-align: right;
}
img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--text-muted); }
.gold { color: var(--gold); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,0.12);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-light); color: #000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #000; transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--text); white-space: nowrap; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { color: var(--text); font-size: 0.9rem; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(212,160,23,0.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.toggle-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-2);
  cursor: pointer; font-size: 1rem; color: var(--text); transition: all var(--transition);
}
.toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--bg-2);
  cursor: pointer; font-size: 0.85rem; font-weight: 600; color: var(--text); transition: all var(--transition);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--nav-bg); border-bottom: 1px solid var(--border);
  padding: 20px; z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); padding: 10px 14px; border-radius: 8px; font-weight: 500; transition: all var(--transition); }
.mobile-menu a:hover { color: var(--gold); background: rgba(212,160,23,0.08); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold); padding: 6px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero p  { font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat h3 { color: var(--gold); font-size: 1.8rem; }
.hero-stat p   { font-size: 0.85rem; margin: 0; }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-3px); }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212,160,23,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.hero-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
.hero-card p  { font-size: 0.8rem; margin: 0; }

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar { background: var(--gold); padding: 32px 0; }
.stats-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; color: #000; }
.stat-item h3 { font-size: 2rem; font-weight: 800; }
.stat-item p  { font-size: 0.85rem; font-weight: 500; opacity: 0.8; margin: 0; }

/* ============================================================
   Section Header
   ============================================================ */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 600px; margin: 0 auto; }

/* ============================================================
   Cards Grid
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* Stretched link for clickable cards */
.course-card, .scholarship-card, .blog-card, .job-card { position: relative; }
.stretched-link { position: static; }
.stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; border-radius: var(--radius-lg); }

/* Course Card */
.course-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.course-card-img {
  height: 160px; background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.course-card-img .badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #000;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
[dir="rtl"] .course-card-img .badge { right: auto; left: 12px; }
.course-card-body { padding: 20px; }
.course-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.course-meta .tag { font-size: 0.72rem; font-weight: 600; color: var(--gold); background: rgba(212,160,23,0.1); padding: 2px 10px; border-radius: 50px; }
.course-meta .provider { font-size: 0.75rem; color: var(--text-muted); }
.course-card h3 { font-size: 1rem; margin-bottom: 8px; }
.course-card p  { font-size: 0.85rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.course-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 8px; }
.course-footer .duration { font-size: 0.8rem; color: var(--text-muted); }
.free-badge { background: #16a34a; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; }

/* Scholarship Card */
.scholarship-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 14px;
}
.scholarship-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.scholarship-header { display: flex; align-items: flex-start; gap: 14px; }
.scholarship-flag { width: 48px; height: 48px; border-radius: 10px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.scholarship-card h3 { font-size: 1rem; }
.scholarship-card .country { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.scholarship-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.scholarship-tags span { font-size: 0.72rem; padding: 3px 10px; border-radius: 50px; border: 1px solid var(--border); color: var(--text-muted); }
.scholarship-deadline { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); }
.scholarship-deadline .urgent { color: #ef4444; font-weight: 600; }

/* Job Card */
.job-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; align-items: center; gap: 20px;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.job-logo { width: 56px; height: 56px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.job-info { flex: 1; }
.job-info h3 { font-size: 1rem; margin-bottom: 4px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { font-size: 0.72rem; padding: 3px 10px; border-radius: 50px; background: rgba(212,160,23,0.1); color: var(--gold); font-weight: 600; }

/* Blog Card */
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, #1a1a2e, #16213e); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.blog-card-body { padding: 20px; }
.blog-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p  { font-size: 0.85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-top: 14px; display: inline-flex; align-items: center; gap: 4px; }

/* ============================================================
   Categories
   ============================================================ */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 16px; text-align: center; cursor: pointer; transition: all var(--transition);
}
.category-card:hover { border-color: var(--gold); background: rgba(212,160,23,0.05); transform: translateY(-3px); box-shadow: var(--shadow); }
.category-card:hover .cat-icon { background: var(--gold); }
.cat-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 12px; transition: background var(--transition); }
.category-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.category-card p  { font-size: 0.75rem; margin: 0; }

/* ============================================================
   Steps
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; }
.step-card { text-align: center; padding: 30px 20px; }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: #000; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card h3 { margin-bottom: 10px; }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter { background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; }
.newsletter h2 { margin-bottom: 12px; }
.newsletter p  { margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 12px 18px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 0.95rem; outline: none; transition: border-color var(--transition); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ============================================================
   Footer
   ============================================================ */
footer { background: var(--footer-bg); color: var(--footer-text); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--footer-text); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #222; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: #666; }
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; color: var(--footer-text); font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ============================================================
   Page Hero
   ============================================================ */
.page-hero { padding: 110px 0 60px; background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }

/* ============================================================
   Filter & Search
   ============================================================ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.filter-btn { padding: 7px 18px; border-radius: 50px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }
.search-bar { display: flex; gap: 10px; margin-bottom: 36px; max-width: 480px; }
.search-bar input { flex: 1; padding: 10px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 0.9rem; outline: none; }
.search-bar input:focus { border-color: var(--gold); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 1rem; }
.author-info h4 { font-size: 0.9rem; }
.author-info p  { font-size: 0.78rem; margin: 0; }

/* ============================================================
   Article / Blog
   ============================================================ */
.article-content { max-width: 780px; margin: 0 auto; }
.article-content h2 { margin: 36px 0 14px; }
.article-content h3 { margin: 24px 0 10px; }
.article-content p  { margin-bottom: 18px; color: var(--text); }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; color: var(--text); }
[dir="rtl"] .article-content ul, [dir="rtl"] .article-content ol { padding-left: 0; padding-right: 24px; }
.article-content li { margin-bottom: 8px; }

/* ============================================================
   Contact Form
   ============================================================ */
.contact-form { display: grid; gap: 20px; max-width: 600px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { padding: 11px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   Utility
   ============================================================ */
.bg-2 { background: var(--bg-2); }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.view-all { text-align: center; margin-top: 40px; }
.highlight-box { background: rgba(212,160,23,0.08); border: 1px solid rgba(212,160,23,0.25); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.ad-slot { background: var(--bg-2); border: 1px dashed var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ad-slot-leaderboard { width: 100%; height: 90px; margin: 20px 0; }
.ad-slot-rectangle { width: 100%; min-height: 250px; margin: 30px auto; max-width: 336px; }

/* ============================================================
   Scroll to Top
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #000; border: none;
  font-size: 1.1rem; cursor: pointer; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(212,160,23,0.4); z-index: 500; transition: all var(--transition);
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { transform: translateY(-3px); background: var(--gold-light); }
[dir="rtl"] #scrollTop { right: auto; left: 28px; }

/* ============================================================
   Pagination
   ============================================================ */
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.pagination .page-numbers { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text); font-size: 0.9rem; transition: all var(--transition); }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 100px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 60px 0; }
}
@media (max-width: 600px) {
  .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .job-card .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .newsletter { padding: 40px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom > div { justify-content: center; }
}
@media (max-width: 380px) {
  .lang-label { display: none; }
  .lang-toggle { padding: 6px 10px; }
  .nav-logo { font-size: 1.25rem; }
  .nav-actions { gap: 6px; }
}