/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --gold: #E8CC6C;
  --gold-light: #F0D878;
  --gold-dark: #C9A84C;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --dark: #111111;
  --dark-medium: #1A1A1A;
  --gray: #111111;
  --gray-light: #EEEEEE;
  --border: #E0E0E0;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: #ffffff;
  background-image: url("pattern-bg.jpeg");
  background-repeat: repeat;
  background-size: 320px 320px;
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
}

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

p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Keep centred sections centred */
.text-center p,
.text-center p,
.section-subtitle.centered,
.hero-pure-right p,
.footer-brand p,
.mobile-menu p,
.section-dark p,
[style*="text-align:center"] p {
  text-align: center;
  hyphens: none;
  -webkit-hyphens: none;
}

.footer-contact-item span {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  text-align: center;
  border-radius: 50px;
}
.btn-dark {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.btn-dark:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 18%, #D4B96A 35%, #E8CC6C 52%, #DFC070 65%, #C9A84C 78%, #B8922A 100%);
  border-color: transparent;
  color: var(--white);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 40%, #E8CC6C 70%, #C9A84C 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.navbar-logo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1.1;
  white-space: nowrap;
}
.navbar-logo-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu */
.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(--dark);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 85px;
  background-color: rgba(255,255,255,0.97);
  background-image: url('pattern-bg.jpeg');
  background-size: 320px 320px;
  background-repeat: repeat;
  background-blend-mode: multiply;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  padding-top: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  min-height: 540px;
  padding-top: 85px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}
.page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.10) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 60px;
  text-align: left;
}
.page-header-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.1;
  display: inline-block;
}
.page-header-content .header-line {
  width: 120px;
  height: 2px;
  background: var(--gold);
}
.page-header-content p {
  display: none;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
}
.section-title-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 24px;
}
.section-title-line.centered { margin: 0 auto 24px; }
.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle.centered {
  margin: 0 auto;
  text-align: center;
}

/* ===== SECTIONS ===== */
section { padding: 96px 0; }

.section-white { background: transparent; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.75); }

.section-gold {
  background: var(--gold);
  color: var(--white);
}
.section-gold h2, .section-gold h3 { color: var(--white); }

/* ===== HERO PURE GOLD ===== */
.hero-pure {
  background: var(--gold);
  padding-top: 85px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}

/* main content — two column */
.hero-pure-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0;
  padding: 72px 80px 72px 80px;
  flex: 1;
}
.hero-pure-left {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.hero-pure-right {
  padding-left: 56px;
  text-align: center;
}
.hero-pure-left,
.hero-pure-top,
.hero-pure-sub {
  background: rgba(0,0,0,0.42);
  border-radius: 6px;
  padding: 10px 16px;
}

/* eyebrow row */
.hero-pure-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  text-align: center;
}
.hero-diamond {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  line-height: 1;
}

/* headline */
.hero-pure-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.hero-pure-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

/* subtitle */
.hero-pure-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

/* buttons */
.hero-btn-dark {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 18%, #D4B96A 35%, #E8CC6C 52%, #DFC070 65%, #C9A84C 78%, #B8922A 100%);
  border-color: transparent;
  color: var(--white);
}
.hero-btn-dark:hover {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 40%, #E8CC6C 70%, #C9A84C 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-btn-outline {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 18%, #D4B96A 35%, #E8CC6C 52%, #DFC070 65%, #C9A84C 78%, #B8922A 100%);
  border-color: transparent;
  color: var(--white);
}
.hero-btn-outline:hover {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 40%, #E8CC6C 70%, #C9A84C 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* stats strip — black */
.hero-pure-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 24px 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  gap: 5px;
}
.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
}
.hero-stat span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero-pure-inner { padding: 56px 40px; gap: 0; }
  .hero-stat { padding: 0 28px; }
}
@media (max-width: 768px) {
  .hero-pure-inner { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-pure-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-right: 0; padding-bottom: 32px; margin-bottom: 32px; }
  .hero-pure-right { padding-left: 0; }
  .hero-pure-title { font-size: 52px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat strong { font-size: 24px; }
  .hero-stat span { font-size: 10px; }
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 20px;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.card-body { padding: 28px; }
.card-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.card-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  transition: all 0.35s ease;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 28px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 26px; margin-bottom: 16px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.service-features { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 20px; }
.service-features li {
  font-size: 13px;
  color: var(--gray);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
}

/* ===== STAT BOXES ===== */
.stat-box { text-align: center; padding: 40px 24px; }
.stat-box .num {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 32px;
}
.testimonial cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  font-weight: 600;
}
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.testimonial-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s; }
.testimonial-dots span.active { background: var(--white); }

/* ===== IMAGE GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 320px;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery-grid img:hover { opacity: 0.8; }

/* ===== CONTACT ===== */
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.contact-info-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #ffffff;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 280px;
  text-align: left;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 13px;
  color: #ffffff;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-email-link:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 13px;
  color: #ffffff;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== HOME SPECIFIC ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.why-card svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin-bottom: 24px; }
.why-card h3 { font-size: 22px; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ABU DHABI SPECIFIC */
.invest-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.feature-icon { color: var(--gold); font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 6px; font-family: var(--font-body); }
.feature-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.project-highlight {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 32px;
}
.project-highlight-img img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.project-highlight-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-highlight-content h3 { font-size: 30px; margin-bottom: 12px; }
.project-highlight-content p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }

/* DEVELOPERS */
.developer-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
  transition: all 0.3s ease;
}
.developer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.developer-logo {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.developer-card h3 { font-size: 22px; margin-bottom: 12px; }
.developer-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }
.developer-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  margin-bottom: 20px;
}

/* About chairman */
.chairman-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Decorative corner-bracket frame */
.quote-frame {
  position: relative;
  padding: 10px;
}
.quote-frame::before,
.quote-frame::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 1;
}
.quote-frame::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.quote-frame::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}
.quote-frame-inner {
  position: relative;
  padding: 48px 52px;
  border: 1px solid rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.04);
}
.quote-frame-inner::before,
.quote-frame-inner::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 1;
}
.quote-frame-inner::before {
  top: -1px; right: -1px;
  border-width: 2px 2px 0 0;
}
.quote-frame-inner::after {
  bottom: -1px; left: -1px;
  border-width: 0 0 2px 2px;
}

.chairman-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  position: relative;
  margin-bottom: 36px;
  border: none;
  padding: 0;
}
.chairman-quote blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 140px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -30px; left: -10px;
  line-height: 1;
  pointer-events: none;
}
.chairman-sig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.chairman-sig hr {
  width: 60px;
  border: none;
  border-top: 1px solid var(--border);
}
.chairman-sig span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B6914;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .gallery-grid img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-highlight { grid-template-columns: 1fr; }
  .project-highlight-img img { min-height: 260px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .invest-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-brand p { text-align: left; }
  .who-card-right .btn { display: block; width: fit-content; margin: 0 auto; }
  .why-ad-body .btn { display: block; width: fit-content; margin: 0 auto; }
  .contact-form { padding: 32px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-header-content h1 { font-size: 36px; }
  .hero-content h1 { font-size: 42px; }
  .navbar-inner { padding: 12px 20px; }
}

/* ===== WHO WE ARE — FLOATING CARD ===== */
.who-section {
  background: transparent;
  padding: 64px 0 72px;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do-section {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 18%, #D4B96A 35%, #E8CC6C 52%, #DFC070 65%, #C9A84C 78%, #B8922A 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.what-we-do-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('pattern-bg.jpeg') center/320px 320px repeat;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.wwd-inner {
  position: relative;
}
.wwd-main-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.services-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-dark-card {
  border-radius: 20px;
  padding: 44px 32px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* All cards — lighter amber gradient */
.service-dark-card:nth-child(1) {
  background: linear-gradient(155deg, #b09040 0%, #7e6030 100%);
  border: 1.5px solid rgba(201,168,76,0.65);
}
.service-dark-card:nth-child(2) {
  background: linear-gradient(155deg, #a48038 0%, #785828 100%);
  border: 1.5px solid rgba(201,168,76,0.6);
}
.service-dark-card:nth-child(3) {
  background: linear-gradient(155deg, #a07c34 0%, #745425 100%);
  border: 1.5px solid rgba(201,168,76,0.55);
}
.service-dark-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('pattern-bg.jpeg') center/140px 140px repeat;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 20px;
  mix-blend-mode: overlay;
}
.service-dark-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.1);
}
.service-dark-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  text-align: center;
  position: relative;
}
.service-dark-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  text-align: center;
  position: relative;
}
.service-dark-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2.5px solid #dfc06a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,230,120,0.3);
}
.service-dark-icon svg {
  width: 30px;
  height: 30px;
  stroke: #f5e0a0;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-dark-card:hover .service-dark-icon {
  border-color: #e0c060;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.35), 0 0 18px rgba(201,168,76,0.3);
}

/* ===== CORE VALUES CARDS ===== */
.value-card {
  background: #111111;
  border: 4px solid var(--gold);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.5);
}
.value-card-num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card-title {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 14px;
}
.value-card-text {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.75;
}

/* ===== MISSION VISION OBJECTIVES CARDS ===== */
.mvc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.mvc-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mvc-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mvc-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.mvc-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mvc-right-objectives {
  justify-content: flex-start;
}
.mvc-obj-tall-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mvc-obj-tall-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(120, 80, 0, 0.2);
  line-height: 1.5;
}
.mvc-obj-tall-list li:last-child {
  border-bottom: none;
}
.mvc-obj-bullet {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  min-width: 36px;
  flex-shrink: 0;
}
.mvc-card {
  background: linear-gradient(155deg, #d4a940 0%, #eacc62 30%, #d0a030 65%, #b8860c 100%);
  border: 4px solid #ffffff;
  border-radius: 16px;
  overflow: hidden;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  transition: all 0.3s ease;
}
.mvc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
  filter: brightness(1.06);
}
.mvc-card-icon {
  margin-bottom: 14px;
}
.mvc-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.mvc-card-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(120, 80, 0, 0.55);
  margin: 14px auto 16px;
  flex-shrink: 0;
}
.mvc-card-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.85;
  text-align: center;
}
.mvc-objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  text-align: left;
  width: 100%;
}
.mvc-objectives-list li {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.72);
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.5;
}
.mvc-objectives-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: rgba(80, 50, 0, 0.6);
  font-size: 17px;
  line-height: 1.4;
}
.mvc-objectives-card {
  flex-direction: column;
}
.mvc-objectives-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}
.mvc-obj-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(120, 80, 0, 0.3);
}
.mvc-obj-item:last-child {
  border-right: none;
}
.mvc-obj-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  margin-bottom: 10px;
}
.mvc-obj-item p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 860px) {
  .mvc-grid { grid-template-columns: 1fr; }
  .mvc-objectives-list { grid-template-columns: 1fr; }
  .mvc-top-row { grid-template-columns: 1fr; }
  .mvc-objectives-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mvc-obj-item { border-right: none; border-bottom: 1px solid rgba(120, 80, 0, 0.3); padding: 12px 0; }
  .mvc-obj-item:last-child { border-bottom: none; }
}

/* ===== DEVELOPERS SECTION ===== */
.developers-section {
  padding: 88px 0;
  background-color: #111111;
  background-image: url('pattern-bg.jpeg');
  background-size: 320px 320px;
  background-repeat: repeat;
  background-blend-mode: soft-light;
}
.developer-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.developer-card-new {
  background: linear-gradient(155deg, #c9963a 0%, #e8c958 28%, #d4a838 58%, #b07a10 100%);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 4px 22px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.developer-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.developer-logo-box {
  background: transparent;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 12px;
  width: 100%;
}
.developer-logo-box img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.developer-card-new:hover .developer-logo-box img {
  filter: none;
  mix-blend-mode: multiply;
}
.developer-logo-box img.dev-logo-screen {
  filter: grayscale(1) brightness(1.2);
  mix-blend-mode: screen;
  max-width: 140px;
  max-height: 80px;
}
.developer-card-new:hover .developer-logo-box img.dev-logo-screen {
  filter: none;
  mix-blend-mode: multiply;
}

.developer-logo-init {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-align: center;
  filter: none;
}
.developer-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding: 0 12px 16px;
  background: transparent;
  text-transform: none;
  position: relative;
}
.developer-card-name::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  margin: 0 auto 10px;
}

/* btn outline gold */
.btn-outline-gold {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 18%, #D4B96A 35%, #E8CC6C 52%, #DFC070 65%, #C9A84C 78%, #B8922A 100%);
  border-color: transparent;
  color: var(--white);
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #B8922A 0%, #C9A84C 40%, #E8CC6C 70%, #C9A84C 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
/* btn outline white (for dark/gold bg) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

@media (max-width: 960px) {
  .services-dark-grid { grid-template-columns: 1fr; gap: 20px; }
  .developer-cards-grid { grid-template-columns: repeat(2, 1fr); }
  /* Remove pattern image on mobile — blend-mode unreliable on some mobile browsers */
  .developers-section {
    background-image: none;
  }
}
@media (max-width: 600px) {
  .developer-cards-grid { grid-template-columns: 1fr; }
  .service-dark-card { padding: 32px 24px; }
}
.who-card {
  background: transparent;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 56px;
}
.who-card-img {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.who-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-card-divider {
  background: var(--border);
  width: 1px;
  margin: 40px 0;
}
.who-card-right {
  padding: 8px 0;
}
/* pillars */
.who-pillars {
  border-top: 1px solid var(--border);
}
.who-pillar {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.who-pillar:last-child { border-bottom: none; }
.who-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  width: 48px;
  flex-shrink: 0;
  padding-top: 2px;
}
.who-pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.who-pillar p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
}
@media (max-width: 960px) {
  .who-card { grid-template-columns: 1fr; gap: 32px; }
  .who-card-img { min-height: 280px; }
  .who-card-right { padding: 0; }
}
@media (max-width: 600px) {
  .who-card-img { min-height: 220px; }
  .who-card-right { padding: 0; }
}

/* ===== LOCATION CARDS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.13);
}
.location-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.location-card:hover .location-img-wrap img {
  transform: scale(1.07);
}
.location-overlay {
  display: none;
}
.location-card-body {
  padding: 22px 22px 26px;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.location-card-body h3 {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.location-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.location-card-body > span {
  display: block;
  margin-top: auto;
  padding-top: 16px;
}
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ===== WHY ABU DHABI SECTION — 3-part responsive grid ===== */
.why-ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 64px;
  align-items: start;
}
.why-ad-header {
  grid-column: 1;
  grid-row: 1;
}
.why-ad-body {
  grid-column: 1;
  grid-row: 2;
  padding-top: 8px;
}
.why-ad-img {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
@media (max-width: 1024px) {
  .why-ad-grid { gap: 0 48px; }
}
@media (max-width: 768px) {
  .why-ad-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }
  .why-ad-header { grid-column: 1; grid-row: 1; }
  .why-ad-img    { grid-column: 1; grid-row: 2; }
  .why-ad-body   { grid-column: 1; grid-row: 3; }
  .why-ad-img img { height: 260px !important; }
}

/* ===== SERVICES DIVIDER GRID (Homepage "Our Services") ===== */
.wwd-services-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
}
.wwd-services-grid--2col {
  grid-template-columns: 1fr 1px 1fr;
}

/* ===== CORE VALUES 4-COL GRID (About Page) ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== PROJECTS 2-COL GRID (Projects Page) ===== */
.projects-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE ===== */

/* Tablet — stack projects to 1 col, values to 2 col */
@media (max-width: 900px) {
  .projects-2col-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile — major stacking */
@media (max-width: 768px) {
  /* Homepage services 3-col → 1 col, hide vertical dividers */
  .wwd-services-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .wwd-services-grid > div:nth-child(even) {
    display: none;
  }

  /* Hero stats bar: wrap into 2×2 grid */
  .hero-pure-stats {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 0;
  }
  .hero-stat {
    width: 50%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-divider { display: none; }

  /* Page header smaller on mobile */
  .page-header { height: 260px; }
  .page-header-content h1 { font-size: 32px; }

  /* General section padding */
  section { padding: 56px 0; }

  /* Navbar logo — trim size on mobile */
  .navbar-logo-img { height: 48px; }
  .navbar-logo-text strong { font-size: 14px; }
  .navbar-logo-text span { font-size: 8px; letter-spacing: 0.15em; }
  .navbar-inner { padding: 10px 16px; }

  /* Services page section headings */
  .section-title { font-size: clamp(24px, 6vw, 40px); }

  /* Value cards 2 col */
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Gallery grid 1 col on mobile */
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-grid img { height: 220px; }
}

/* Small mobile — extra tweaks */
@media (max-width: 480px) {
  /* Values to 1 col */
  .values-grid { grid-template-columns: 1fr; }

  /* Hero title */
  .hero-pure-title { font-size: 38px; }

  /* Page header */
  .page-header { height: 220px; }
  .page-header-content h1 { font-size: 26px; }

  /* Container tighter padding */
  .container { padding: 0 16px; }

  /* Section label spacing */
  section { padding: 48px 0; }

  /* Stats bar — 2×2 still OK */
  .hero-stat strong { font-size: 22px; }

  /* Form card padding */
  .contact-form { padding: 24px 16px; }

  /* Filter buttons */
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 9px 18px; font-size: 11px; }

  /* Developers page grid (backup) */
  .developer-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
