/* ============================================================
   NASSRU — Afaq Construction
   Design Direction: "Midnight Elegance"
   Navy + Premium Gold | Modern Construction
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --primary: #0C1B33;
  --primary-light: #162D50;
  --accent: #C8A45C;
  --accent-hover: #D4B872;
  --accent-subtle: rgba(200, 164, 92, 0.15);
  --text: #1A1A1A;
  --text-light: #E8E6E3;
  --text-muted: #9A9590;
  --bg: #F8F5F0;
  --bg-white: #FEFDFB;
  --bg-dark: #0A1628;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.15);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

/* ============================================================
   HEADER — Transparent to Solid
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(12, 27, 51, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
  padding: 12px 0;
}

.header-brand a {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
}

/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 70%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-quote {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-quote:hover {
  background: var(--accent);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(12, 27, 51, 0.75) 50%,
    rgba(22, 45, 80, 0.65) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
  padding-top: 80px;
}

.hero-content .hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(200, 164, 92, 0.3);
  border-radius: 2px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content h1 .accent-word {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider .shape-fill {
  fill: var(--bg);
}

/* Particles Canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   SECTION HEADER (Reusable)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.dark-section .section-header h2 {
  color: #ffffff;
}

.section-header .accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.dark-section .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 120px 0;
  background: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 164, 92, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  background: var(--accent-subtle);
  border-radius: 12px;
}

.service-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(0.7) sepia(1) saturate(3) hue-rotate(15deg);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.9);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(200, 164, 92, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

/* ============================================================
   ABOUT / DIRECTOR
   ============================================================ */
.about-narrative {
  padding: 120px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  padding-left: 30px;
  border-left: 3px solid var(--accent);
}

.about-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 24px;
}

.director-quote {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.director-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 10rem;
  color: rgba(200, 164, 92, 0.08);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 30px;
}

.director-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.director-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.director-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.director-title-text {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-section {
  padding: 120px 0;
  background: var(--primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(transparent 20%, rgba(10, 22, 40, 0.98));
}

.project-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.project-overlay .view-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-card:hover .view-link {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder for projects without images */
.project-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(200, 164, 92, 0.15);
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-block {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}

.quote-block .quote-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 30px;
  opacity: 0.6;
}

.quote-block .quote-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
  font-style: italic;
}

.quote-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.quote-company {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 92, 0.08);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 92, 0.06);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ============================================================
   CONTACT (Homepage Section)
   ============================================================ */
.contact-section {
  padding: 120px 0;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  padding: 10px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
}

.contact-info-item .info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 45px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  margin-bottom: 16px;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.3);
}

.contact-strip {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-strip-item i {
  color: var(--accent);
  font-size: 1rem;
}

.contact-strip-item a {
  color: var(--text-muted);
}

.contact-strip-item a:hover {
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}

.footer-main {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   BUTTONS (Global)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(200, 164, 92, 0.4);
}

#back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(200, 164, 92, 0.5);
}

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  padding: 160px 0 100px;
  text-align: center;
  color: #ffffff;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 27, 51, 0.85);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.3);
  margin-right: 10px;
}

html[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
  margin-right: 0;
  margin-left: 10px;
}

.breadcrumb-item.active {
  color: var(--accent);
}

/* ============================================================
   CONTACT MAP (Contact Page — Glassmorphism)
   ============================================================ */
.contact-map-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

.contact-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
  z-index: 1;
}

.contact-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 27, 51, 0.35);
  z-index: 2;
}

.contact-map-section .container {
  position: relative;
  z-index: 3;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}

.glass-card h2, .glass-card h3 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.glass-input {
  width: 100% !important;
  padding: 16px 20px !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 6px !important;
  color: var(--text) !important;
  transition: var(--transition) !important;
}

.glass-input:focus {
  background: #ffffff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.15) !important;
}

/* ============================================================
   GRID UTILITIES
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE — Tablet (max-width: 991px)
   ============================================================ */
@media (max-width: 991px) {
  /* Header */
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    padding: 80px 30px 40px;
    transition: right 0.4s ease;
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 16px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
  }

  .main-nav a::after {
    display: none;
  }

  .btn-quote {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Sections */
  .services-section,
  .about-narrative,
  .projects-section,
  .contact-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 35px;
  }

  /* Grid utility */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Footer */
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 576px)
   ============================================================ */
@media (max-width: 576px) {
  .header-brand .brand-name {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  .header-brand .brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .hero-content .hero-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    padding: 6px 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-gold,
  .btn-ghost {
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .wave-divider svg {
    height: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 30px 24px;
  }

  .stats-section {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .about-text {
    padding-left: 20px;
  }

  .director-quote {
    padding: 30px;
  }

  .quote-block .quote-text {
    font-size: 1.2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-strip {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .services-section,
  .about-narrative,
  .projects-section,
  .contact-section {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-nav a {
    font-size: 0.7rem;
  }

  .footer-brand {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  /* Contact map page */
  .contact-map-section {
    padding: 40px 0;
    min-height: auto;
  }
}
