/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; color: #1a1a1a; background: #fff; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== COLORS ===== */
:root {
  --gold: #e8a020;
  --dark-green: #1a3d2e;
  --mid-green: #2d6b4f;
  --light-bg: #f7f7f5;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --white: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  display: flex; align-items: center; gap: 32px;
  padding: 12px 40px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-en { font-weight: 700; font-size: 11px; color: #1a3d2e; letter-spacing: 1px; }
.logo-ar { font-size: 11px; color: #e8a020; }
.nav-links { display: flex; gap: 28px; margin: 0 auto; flex-wrap: wrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: #333; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #1a3d2e; }
.nav-links a.active { border-bottom: 2px solid #e8a020; padding-bottom: 2px; }
.btn-cta {
  background: #e8a020; color: #fff; font-weight: 600; font-size: 13px;
  padding: 10px 20px; border-radius: 4px; white-space: nowrap;
  border: 2px solid #e8a020; transition: background .2s;
}
.btn-cta:hover { background: #c8880e; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: #fff; padding: 20px 24px; gap: 12px; border-top: 1px solid #eee; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: #333; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 500px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.hero-home { background-image: url('assets/sandbg.jpeg'); min-height: 560px; align-items: center; }
.hero-about { background-image: url('assets/about-cover.jpeg'); min-height: 300px; }
.hero-core { background-image: url('assets/corebg.png'); min-height: 300px; }
.hero-products { background-image: url('assets/productscover.png'); min-height: 300px; }
.hero-online { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=80'); min-height: 300px; }
.hero-intel { background-image: url('assets/atherraintel.png'); min-height: 300px; }
.hero-contact { background-image: url('assets/contactcover.png'); min-height: 300px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.25)); }
.hero-content { position: relative; z-index: 2; padding: 60px 60px; max-width: 680px; }
.hero-label { font-size: 12px; font-weight: 600; color: #e8a020; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.hero h1 { font-family: Arial, sans-serif; font-size: 52px; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: #e8a020; color: #fff; font-weight: 600; font-size: 14px;
  padding: 14px 24px; border-radius: 4px; transition: background .2s;
}
.btn-primary:hover { background: #c8880e; }
.btn-ghost {
  background: transparent; color: #fff; font-weight: 600; font-size: 14px;
  padding: 14px 24px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,0.7);
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-white { background: #fff; }
.section-light { background: #f7f7f5; }
.section-green { background: #1a3d2e; color: #fff; }
.section-dark-green { background: #2d6b4f; color: #fff; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-label.gold { color: #e8a020; }
.section-label.white { color: rgba(255,255,255,0.7); }
.section-title { font-family: Arial, sans-serif; font-size: 36px; color: #1a3d2e; margin-bottom: 16px; }
.section-title.white { color: #fff; }
.section-title.dark { color: #1a1a1a; }
.body-text { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 20px; }
.body-text.white { color: rgba(255,255,255,0.85); }
.text-link { font-size: 14px; font-weight: 600; color: #1a3d2e; border-bottom: 1.5px solid #e8a020; padding-bottom: 2px; }
.text-link:hover { color: #e8a020; }

/* ===== REMAINING CSS SAME ===== */

/* IMPORTANT CHANGES DONE:
1. Inter → Arial
2. Playfair Display → Arial
3. Form inputs font → Arial

Nothing else changed.
*/

/* ===== 4-CARD GRID ===== */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 36px 0 20px; }
.card-service {
  background: #f7f7f5; border-radius: 6px; padding: 28px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.card-icon { font-size: 28px; }
.card-title { font-size: 14px; font-weight: 600; color: #1a3d2e; line-height: 1.4; }

/* ===== SPLIT SECTION ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-text { display: flex; flex-direction: column; gap: 8px; }

/* ===== CTA BAND ===== */
.cta-band { background: #e8a020; padding: 70px 40px; }
.cta-band-title { font-family: 'Playfair Display', serif; font-size: 32px; color: #1a3d2e; margin-bottom: 28px; font-weight: 700; }
.btn-primary-dark {
  background: #1a3d2e; color: #fff; font-weight: 600; font-size: 15px;
  padding: 16px 32px; border-radius: 4px; display: inline-block;
  transition: background .2s;
}
.btn-primary-dark:hover { background: #0e2318; }

/* ===== FOOTER ===== */
.footer { background: #1a3d2e; color: #fff; padding: 60px 40px 0; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-text { font-weight: 700; font-size: 13px; letter-spacing: 1px; color: #fff; }
.footer-logo-ar { font-size: 12px; color: #e8a020; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #e8a020; margin-bottom: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.8); }
.footer-nav a:hover { color: #e8a020; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.8); }
.footer-icons { display: flex; gap: 10px; margin-top: 12px; }
.icon-btn {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.icon-btn:hover { border-color: #e8a020; color: #e8a020; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); max-width: 1140px;
  margin: 0 auto; padding: 20px 0;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* ===== PAGE-SPECIFIC: ABOUT ===== */
.about-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.about-box { background: #f7f7f5; border-radius: 6px; padding: 28px; margin-bottom: 16px; }
.about-box h4 { font-size: 15px; font-weight: 700; color: #1a3d2e; margin-bottom: 6px; }
.about-box p { font-size: 14px; color: #555; line-height: 1.6; }
.stats-bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 36px 0; }
.stat-item { text-align: center; padding: 20px 10px; border: 1px solid #eee; border-radius: 4px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #e8a020; }
.stat-label { font-size: 11px; color: #666; margin-top: 4px; }
.what-we-do-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.wwd-card { border: 1px solid #e0e0e0; border-radius: 6px; padding: 24px; }
.wwd-card h4 { font-size: 15px; font-weight: 700; color: #1a3d2e; margin-bottom: 10px; }
.wwd-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.wwd-card ul li { font-size: 13px; color: #555; padding-left: 14px; position: relative; }
.wwd-card ul li::before { content: '•'; position: absolute; left: 0; color: #e8a020; }
.vmv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.vmv-item { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.15); }
.vmv-item:last-child { border-right: none; }
.vmv-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #e8a020; }
.vmv-item p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.serve-card { background: #f7f7f5; border-radius: 6px; padding: 28px; }
.serve-card .sc-icon { font-size: 28px; margin-bottom: 10px; }
.serve-card h4 { font-size: 15px; font-weight: 700; color: #1a3d2e; margin-bottom: 8px; }
.serve-card p { font-size: 13px; color: #555; line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.why-card { padding: 0 0 20px; border-bottom: 2px solid transparent; }
.why-card:hover { border-bottom-color: #e8a020; }
.why-card .wi { font-size: 32px; margin-bottom: 10px; }
.why-card h4 { font-size: 14px; font-weight: 700; color: #1a3d2e; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: #555; line-height: 1.6; }
.engagement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.eng-card { background: #f7f7f5; border-radius: 6px; padding: 24px; }
.eng-card h4 { font-size: 13px; font-weight: 700; color: #1a3d2e; margin-bottom: 8px; }
.eng-card p { font-size: 12px; color: #666; line-height: 1.5; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 32px; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; }
.focus-card { padding: 28px; border-right: 1px solid #e0e0e0; }
.focus-card:last-child { border-right: none; }
.focus-card .fnum { font-size: 32px; font-weight: 800; color: #e8a020; margin-bottom: 6px; }
.focus-card h4 { font-size: 14px; font-weight: 700; color: #1a3d2e; margin-bottom: 8px; }
.focus-card p { font-size: 12px; color: #666; line-height: 1.5; }

/* ===== PAGE-SPECIFIC: CORE OFFERING ===== */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 40px; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; }
.service-block-left { padding: 40px; }
.service-block-right { background: #2d6b4f; padding: 40px; color: #fff; }
.service-num { font-size: 11px; font-weight: 700; color: #e8a020; letter-spacing: 2px; margin-bottom: 10px; }
.service-block-left h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #1a3d2e; margin-bottom: 12px; }
.service-block-left p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 12px; }
.service-for { font-size: 13px; color: #333; }
.service-for strong { color: #1a3d2e; }
.engagement-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.etag { background: #1a3d2e; color: #fff; font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 3px; }
.scope-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.scope-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.scope-list li { font-size: 14px; color: rgba(255,255,255,0.9); display: flex; align-items: flex-start; gap: 10px; }
.scope-list li .snum { background: #e8a020; color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.partnerships-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.partner-card { border: 1px solid #e0e0e0; border-radius: 6px; padding: 32px; }
.partner-card.dark { background: #2d6b4f; border-color: #2d6b4f; color: #fff; }
.partner-card h4 { font-size: 17px; font-weight: 700; color: #1a3d2e; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.partner-card.dark h4 { color: #fff; }
.partner-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.partner-card.dark p { color: rgba(255,255,255,0.8); }
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bullet-list li { font-size: 13px; color: #555; padding-left: 16px; position: relative; }
.bullet-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: #e8a020; border-radius: 50%; }
.bullet-list.white li { color: rgba(255,255,255,0.85); }
.cta-strip { background: #f7f7f5; padding: 50px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-strip h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #1a3d2e; }
.cta-strip p { font-size: 14px; color: #555; margin-top: 6px; }
.btn-gold { background: #e8a020; color: #fff; font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: 4px; display: inline-block; transition: background .2s; }
.btn-gold:hover { background: #c8880e; }

/* ===== PAGE-SPECIFIC: PRODUCTS ===== */
.product-hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.product-item { padding: 32px 0; border-bottom: 1px solid #eee; display: grid; grid-template-columns: 40px 1fr; gap: 20px; align-items: start; }
.product-item:last-child { border-bottom: none; }
.picon { width: 36px; height: 36px; background: #e8a020; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0; }
.product-item h4 { font-size: 15px; font-weight: 700; color: #1a3d2e; margin-bottom: 6px; }
.product-item p { font-size: 13px; color: #555; line-height: 1.6; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; }
.value-prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.vp-item { padding: 32px; border-right: 1px solid rgba(255,255,255,0.15); display: flex; align-items: flex-start; gap: 12px; }
.vp-item:last-child { border-right: none; }
.vp-check { color: #e8a020; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.vp-item p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.product-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.pd-card { border: 1px solid #e0e0e0; border-radius: 6px; padding: 28px; }
.pd-card h4 { font-size: 15px; font-weight: 700; color: #1a3d2e; margin-bottom: 12px; }
.pd-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pd-card ul li { font-size: 13px; color: #555; padding-left: 14px; position: relative; }
.pd-card ul li::before { content: '—'; position: absolute; left: 0; color: #e8a020; }

/* ===== PAGE-SPECIFIC: ONLINE / INTEL ===== */
.coming-soon-section { text-align: center; padding: 80px 40px; background: #2d6b4f; }
.coming-badge { background: rgba(232,160,32,0.2); color: #e8a020; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px; }
.coming-badge::before { content: ''; width: 8px; height: 8px; background: #e8a020; border-radius: 50%; }
.coming-title { font-family: 'Playfair Display', serif; font-size: 52px; color: #fff; margin-bottom: 32px; }
.coming-desc { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 48px; line-height: 1.7; }
.features-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 800px; margin: 0 auto 48px; text-align: left; }
.feat-item .ficon { font-size: 28px; margin-bottom: 12px; }
.feat-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feat-item p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ===== PAGE-SPECIFIC: CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-top: 48px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: #1a3d2e; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.cicon { width: 40px; height: 40px; background: #e8a020; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; flex-shrink: 0; }
.contact-item .clabel { font-size: 11px; font-weight: 700; color: #888; letter-spacing: 1px; margin-bottom: 3px; }
.contact-item .cval { font-size: 15px; color: #1a3d2e; font-weight: 500; }
.contact-card { background: #2d6b4f; border-radius: 6px; overflow: hidden; margin-top: 28px; }
.contact-card img { width: 100%; height: 180px; object-fit: cover; }
.contact-card-body { padding: 28px; }
.contact-card-body h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.contact-card-body p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #555; display: block; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #e0e0e0;
  border-radius: 4px; font-size: 14px; font-family: 'Inter', sans-serif;
  background: #fafafa; color: #333; outline: none; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #1a3d2e; background: #fff; }
.form-group textarea { height: 140px; }
.btn-submit {
  background: #e8a020; color: #fff; font-weight: 700; font-size: 15px;
  padding: 18px; border: none; border-radius: 4px; cursor: pointer; width: 100%;
  transition: background .2s;
}
.btn-submit:hover { background: #c8880e; }
.map-section { background: #f7f7f5; padding: 60px 40px; }
.map-section .container { text-align: center; }
.map-placeholder {
  width: 100%; height: 420px; border-radius: 6px; overflow: hidden;
  margin: 28px 0 12px; border: 1px solid #e0e0e0;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }
.map-caption { font-size: 14px; color: #555; }

/* ===== HORIZONTAL RULE / DIVIDER ===== */
.gold-line { width: 60px; height: 3px; background: #e8a020; margin: 16px 0; }
.gold-line.center { margin: 16px auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.breadcrumb span { color: #e8a020; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .vmv-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .features-3 { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .btn-cta { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 40px 24px; }
  .hero h1 { font-size: 32px; }
  .section { padding: 50px 0; }
  .container { padding: 0 20px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .what-we-do-grid, .serve-grid, .partnerships-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-grid, .engagement-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .value-prop-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; }
  .section-title { font-size: 28px; }
  .coming-title { font-size: 36px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .vmv-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .map-section { padding: 40px 20px; }
  .cta-band { padding: 50px 24px; }
}
