@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Tajawal:wght@300;400;500;700&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1a2744;
  --deep-navy: #0d1628;
  --red: #c0392b;
  --red-dark: #96281b;
  --red-light: #e74c3c;
  --blue: #2c4a8c;
  --blue-light: #3d5fa3;
  --gray: #6b7280;
  --light-gray: #f4f6f9;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --border: #e2e8f0;
  --gold: #d4a843;
  --shadow-sm: 0 2px 8px rgba(26,39,68,0.08);
  --shadow-md: 0 8px 30px rgba(26,39,68,0.12);
  --shadow-lg: 0 20px 60px rgba(26,39,68,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 22, 40, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  position: relative;
}

.logo-badge .letter-n {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
}

.logo-badge .letter-s {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-left: -4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .ar {
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.logo-text .en {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 6px !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand .logo-wrap {
    margin-bottom: 20px;
    margin-left: 141px;
    
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: white;
  max-width: 280px;
  margin-top: -52px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(192,57,43,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.footer-contact-item p {
  font-size: 14px;
  line-height: 1.6;
  color: white;
}

.footer-contact-item a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: white;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== SHARED COMPONENTS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.page-main { padding-top: 76px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;   /* ADD THIS */
  border: none;              /* ADD THIS */
  outline: none;             /* ADD THIS */
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: 14px 20px; border-radius: 8px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .header-inner { padding: 0 24px; }

  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px 40px; }
}
