/* ========== CSS VARIABLES ========== */
:root {
  --blue: #25a84a;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --dark-gray: #333333;
  --text-muted: #666666;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(37,99,168,0.12);
  --shadow-hover: 0 8px 30px rgba(37,99,168,0.22);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* ========== RESET ========== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins','Noto Sans Ethiopic',sans-serif; color: var(--dark-gray); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.3; font-weight: 700; }

/* ========== TYPOGRAPHY ========== */
.section-title { font-size: clamp(1.8rem,4vw,2.5rem); color: var(--blue); margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 600px; }
.gold-text { color: var(--gold); }
.section-tag { display: inline-block; background: rgba(212,175,55,0.15); color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 30px; margin-bottom: 0.8rem; }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--blue); color: var(--white); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto 2.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 6px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--transition); text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--blue); border-color: var(--gold); }
.btn-primary:hover { background: #c9a227; border-color: #c9a227; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--blue); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: #1a8a43; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ========== NAVBAR ========== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; padding: 20px 0; transition: var(--transition); }
#navbar.scrolled { background: var(--blue); padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; color: var(--blue); }
.nav-logo-text { color: var(--white); }
.nav-logo-text strong { display: block; font-size: 1.1rem; line-height: 1.1; }
.nav-logo-text span { font-size: 0.7rem; opacity: 0.8; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.88); font-size: 0.87rem; font-weight: 500; padding: 7px 12px; border-radius: 5px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.1); border-radius: 20px; padding: 3px; }
.lang-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 16px; transition: var(--transition); }
.lang-btn.active { background: var(--gold); color: var(--blue); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 130px 20px 60px;
  background: linear-gradient(150deg, #0d5a10 0%, #1a8a43 40%, #25a84a 75%, #3ac86e 100%);
}

/* background image overlay — transparent (0.18 opacity) */
#hero .hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(20%);
}

/* snow canvas */
#hero-snow-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* subtle dot pattern overlay */
#hero .hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* glow orbs */
#hero .hero-orb-1 {
  position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
#hero .hero-orb-2 {
  position: absolute; bottom: -120px; left: -80px; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 860px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 30px;
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before { content: '✦'; opacity: 0.7; }

.hero-title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 0.4rem;
}
.hero-title .gold { color: var(--gold); }

.hero-tagline {
  font-size: clamp(1.1rem,2.5vw,1.55rem);
  color: rgba(255,255,255,0.78);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-bottom: 1.4rem;
}

.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 3.5rem; }

/* Stats row */
.hero-stats-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.4rem 2rem;
  margin: 0 auto 2.5rem;
  max-width: 680px;
  gap: 0;
}
.hero-stat {
  flex: 1; min-width: 110px;
  text-align: center;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* Destination flags */
.hero-flags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 2.5rem; }
.hero-flag-item {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px; padding: 6px 14px;
  font-size: 0.8rem; color: rgba(255,255,255,0.82); font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.hero-flag-item:hover { background: rgba(212,175,55,0.18); border-color: rgba(212,175,55,0.4); color: var(--white); }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-badge { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 5px 14px; font-size: 0.74rem; color: rgba(255,255,255,0.65); }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.35); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-arrow { width: 22px; height: 22px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); animation: scrollBounce 1.8s ease infinite; margin-top: 4px; }
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ========== MARQUEE ========== */
.marquee-section { background: var(--gold); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.marquee-item::after { content: '★'; color: var(--blue); opacity: 0.4; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrapper { position: relative; }
.about-img-placeholder { background: linear-gradient(135deg,var(--blue) 0%,#1a8a43 100%); border-radius: 20px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-img-icon { font-size: 6rem; opacity: 0.3; }
.about-exp-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--blue); border-radius: 14px; padding: 18px 22px; text-align: center; box-shadow: var(--shadow); }
.about-exp-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-exp-badge span { font-size: 0.75rem; font-weight: 600; }
.about-license { background: var(--light-gray); border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 0 8px 8px 0; margin-top: 1.5rem; font-size: 0.88rem; color: var(--text-muted); }
.about-license strong { color: var(--blue); }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 1.5rem; }
.value-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--light-gray); border-radius: 10px; }
.value-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(212,175,55,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.value-item h4 { font-size: 0.85rem; color: var(--blue); margin-bottom: 2px; }
.value-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ========== WHY CHOOSE ========== */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 3px solid transparent; text-align: center; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-bottom-color: var(--gold); }
.why-icon { width: 60px; height: 60px; background: rgba(37,99,168,0.07); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.why-card h3 { font-size: 1rem; color: var(--blue); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card-top { background: var(--blue); padding: 1.5rem; display: flex; align-items: center; gap: 14px; }
.service-card-top .icon { width: 48px; height: 48px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--blue); }
.service-card-top h3 { color: var(--white); font-size: 1rem; }
.service-card-body { padding: 1.5rem; }
.service-card-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-list { list-style: none; }
.service-list li { font-size: 0.83rem; color: var(--dark-gray); padding: 4px 0 4px 18px; position: relative; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ========== PROCESS ========== */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right,var(--gold),transparent); z-index: 0; }
.step { flex: 1; text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num { width: 80px; height: 80px; background: var(--blue); border: 4px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.5rem; font-weight: 800; color: var(--gold); box-shadow: 0 0 0 8px rgba(212,175,55,0.1); }
.step-icon-inner { font-size: 1.6rem; }
.step h3 { font-size: 0.92rem; color: var(--blue); margin-bottom: 0.5rem; }
.step p { font-size: 0.8rem; color: var(--text-muted); }

/* ========== JOB CARDS ========== */
.jobs-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.filter-btn { background: var(--white); border: 1.5px solid var(--border); color: var(--text-muted); border-radius: 30px; padding: 8px 18px; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.filter-btn.active,.filter-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.job-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border-top: 4px solid var(--blue); transition: var(--transition); display: flex; flex-direction: column; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-top-color: var(--gold); }
.job-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.job-country { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.job-badge { background: rgba(212,175,55,0.12); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(212,175,55,0.3); }
.job-card h3 { font-size: 1rem; color: var(--blue); margin-bottom: 0.5rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); }
.job-requirements { margin-bottom: 1.2rem; }
.job-requirements h4 { font-size: 0.82rem; color: var(--blue); margin-bottom: 0.4rem; }
.job-req-list { display: flex; flex-wrap: wrap; gap: 6px; }
.req-tag { background: var(--light-gray); color: var(--dark-gray); font-size: 0.73rem; padding: 3px 10px; border-radius: 15px; }
.job-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--blue); padding: 80px 0; }
.testimonials-track { overflow: hidden; position: relative; }
.testimonials-inner { display: flex; gap: 1.5rem; transition: transform 0.5s ease; }
.testimonial-card { min-width: calc(33.333% - 1rem); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 2rem; }
.testimonial-quote { font-size: 3rem; line-height: 1; color: var(--gold); opacity: 0.5; margin-bottom: 0.5rem; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 46px; height: 46px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--blue); font-weight: 800; }
.author-info strong { display: block; color: var(--white); font-size: 0.9rem; }
.author-info span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
.carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.carousel-btn { width: 42px; height: 42px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; cursor: pointer; color: var(--white); font-size: 1rem; transition: var(--transition); }
.carousel-btn:hover { background: var(--gold); color: var(--blue); border-color: var(--gold); }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* ========== GALLERY ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; grid-auto-rows: 200px; }
.gallery-item { background: var(--blue); border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg,var(--blue) 0%,#1a8a43 100%); transition: var(--transition); }
.gallery-placeholder:hover { background: linear-gradient(135deg,#1a8a43 0%,var(--blue) 100%); }
.gallery-placeholder .icon { font-size: 2.5rem; margin-bottom: 0.5rem; opacity: 0.6; }
.gallery-placeholder span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10, 78, 45, 0.7); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 600; }

/* ========== FORMS ========== */
.reg-form-section { background: var(--light-gray); padding: 80px 0; }
.form-wrapper { background: var(--white); border-radius: 16px; padding: 3rem; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.form-group input,.form-group select,.form-group textarea { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 0.9rem; font-family: inherit; color: var(--dark-gray); transition: var(--transition); background: var(--white); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.form-consent { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 8px; }
.form-consent input { width: auto; margin-top: 2px; }

/* ========== FAQs ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 0.95rem; font-weight: 600; color: var(--blue); cursor: pointer; text-align: left; transition: var(--transition); }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; min-width: 28px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--blue); transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--blue); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease,padding 0.3s ease; font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); display: flex; align-items: flex-start; gap: 1rem; }
.contact-card-icon { width: 44px; height: 44px; min-width: 44px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-card h4 { font-size: 0.85rem; color: var(--blue); margin-bottom: 4px; }
.contact-card p,.contact-card a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.contact-card a:hover { color: var(--gold); }
.map-embed { border-radius: var(--radius); overflow: hidden; height: 200px; background: var(--light-gray); display: flex; align-items: center; justify-content: center; margin-top: 1rem; border: 1px solid var(--border); }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form-card h3 { color: var(--blue); margin-bottom: 1.5rem; font-size: 1.2rem; }

/* ========== NEWSLETTER ========== */
.newsletter-section { background: linear-gradient(135deg,#1a6b2e 0%,var(--blue) 100%); padding: 60px 0; }
.newsletter-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.newsletter-text h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.5rem; }
.newsletter-text p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 300px; }
.newsletter-form input { flex: 1; padding: 13px 18px; border-radius: 8px; font-size: 0.9rem; background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* ========== FOOTER ========== */
footer { background: #105e3f; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; color: var(--blue); }
.footer-logo-text strong { display: block; color: var(--white); font-size: 1rem; }
.footer-logo-text span { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.2rem; }
.footer-license { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2); border-radius: 6px; padding: 8px 12px; font-size: 0.78rem; color: var(--gold); }
.footer-socials { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-btn:hover { background: var(--gold); color: var(--blue); }
.footer-col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 1.2rem; }
.footer-col h4::after { content: ''; display: block; width: 30px; height: 2px; background: var(--gold); margin-top: 6px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--gold); }

/* ========== FLOATING ========== */
.floating-whatsapp { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; transition: var(--transition); border: none; text-decoration: none; }
.wa-btn:hover { transform: scale(1.1); }
.wa-tooltip { background: var(--white); color: var(--blue); font-size: 0.78rem; font-weight: 600; padding: 6px 12px; border-radius: 6px; box-shadow: var(--shadow); white-space: nowrap; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.7} }
.back-to-top { position: fixed; bottom: 90px; right: 24px; width: 42px; height: 42px; background: var(--blue); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; cursor: pointer; z-index: 999; transition: var(--transition); opacity: 0; pointer-events: none; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--blue); }

/* ========== PAGE HERO (other pages) ========== */
.page-hero { background: linear-gradient(135deg,#1a6b2e 0%,var(--blue) 100%); padding: 120px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ========== LANGUAGE ========== */
.hidden-en { display: none !important; }
body.lang-am .hidden-en { display: revert !important; }
body.lang-am .hidden-am { display: none !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid-3,.services-grid,.jobs-grid,.why-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-wrap: wrap; }
  .step { min-width: 45%; }
  .process-steps::before { display: none; }
  .testimonial-card { min-width: calc(50% - 0.75rem); }
}
@media (max-width: 768px) {
  .hero-stats-bar { flex-direction: column; gap: 1rem; padding: 1.2rem; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 0; }
  .hero-stat:last-child { border-bottom: none; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--blue); flex-direction: column; align-items: center; justify-content: center; gap: 1rem; z-index: 100; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 101; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}
@media (max-width: 576px) {
  .grid-3,.services-grid,.jobs-grid,.why-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .step { min-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-flags { gap: 8px; }
  .hero-flag-item { font-size: 0.73rem; padding: 5px 10px; }
}
