/* =====================================================
   DIWAN AL MOLOUK - Modern Professional Redesign
   Color Palette:
     Navy:  #0B1F3A
     Gold:  #C9A44E
     Cream: #F8F6F1
     Gray:  #6B7280
   ===================================================== */

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

:root {
  --navy:      #0B1F3A;
  --navy-mid:  #1A3A5C;
  --navy-light:#243B55;
  --gold:      #C9A44E;
  --gold-light:#E8C97A;
  --cream:     #F8F6F1;
  --off-white: #F0EDE4;
  --text-dark: #1a1a1a;
  --text-mid:  #4a4a4a;
  --text-gray: #6B7280;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:    8px;
  --radius-lg: 16px;
  --font-ar:   'Almarai', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  color: var(--text-dark);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Typography ---------- */
.dm-h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.2; }
.dm-h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.3; }
.dm-h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 700; line-height: 1.4; }
.dm-body { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }
.dm-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}

/* ---------- Buttons ---------- */
.dm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  font-family: var(--font-ar); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none; transition: var(--transition);
}
.dm-btn-primary {
  background: var(--gold); color: var(--navy);
}
.dm-btn-primary:hover {
  background: var(--gold-light); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,164,78,0.4);
}
.dm-btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.dm-btn-outline:hover {
  background: var(--white); color: var(--navy);
  transform: translateY(-2px);
}
.dm-btn-navy {
  background: var(--navy); color: var(--white);
}
.dm-btn-navy:hover {
  background: var(--navy-mid); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* =============================================
   NAVIGATION
   ============================================= */
.dm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.dm-nav-top {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,164,78,0.2);
}
.dm-nav-top .container { display: flex; align-items: center; justify-content: space-between; }
.dm-nav-top-info { display: flex; align-items: center; gap: 24px; }
.dm-nav-top-info span {
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
}
.dm-nav-top-info span i { color: var(--gold); font-size: 0.75rem; }
.dm-nav-lang a {
  font-size: 0.8rem; background-color: var(--gold); font-weight: 700;color: var(--gold);
  padding: 4px 12px; border: 1px solid var(--gold); border-radius: 3px;
}
.dm-nav-lang a:hover { background: var(--gold); color: var(--navy); }

.dm-nav-main {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.dm-nav-main .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.dm-nav-logo img {
  height: 54px; width: auto;
}
.dm-nav-links { display: flex; align-items: center; gap: 4px; }
.dm-nav-links > li { position: relative; }
.dm-nav-links > li > a {
  display: block; padding: 0 20px; height: 72px; line-height: 72px;
  color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; transition: var(--transition);
}
.dm-nav-links > li > a:hover,
.dm-nav-links > li.active > a {
  color: var(--gold);
}
.dm-nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: var(--transition); border-radius: 2px 2px 0 0;
}
.dm-nav-links > li:hover > a::after,
.dm-nav-links > li.active > a::after { transform: scaleX(1); }

/* Dropdown */
.dm-dropdown {
  position: absolute; top: 100%; right: 0;
  background: var(--white); min-width: 220px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
  border-top: 3px solid var(--gold);
}
.dm-nav-links > li:hover .dm-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dm-dropdown li a {
  display: block; padding: 12px 20px;
  color: var(--text-dark); font-size: 0.875rem; font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.dm-dropdown li:last-child a { border-bottom: none; }
.dm-dropdown li a:hover { color: var(--gold); padding-right: 28px; background: var(--cream); }

/* ---------- Mobile Nav Toggle (hamburger) ---------- */
.dm-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; z-index: 10001;
}
.dm-nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: var(--transition); border-radius: 2px;
}
.dm-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.dm-nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dm-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Mobile slide-in panel (RTL: right side) ---------- */
.dm-mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy);
  z-index: 10000; overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 0; box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.dm-mobile-nav.active { right: 0; }

/* Mobile nav header */
.dm-mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dm-mobile-nav-header img { height: 42px; width: auto; }
.dm-mobile-nav-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 1.5rem; line-height: 1;
  padding: 4px; transition: var(--transition);
}
.dm-mobile-nav-close:hover { color: var(--gold); }

/* Mobile nav links */
.dm-mobile-nav ul { list-style: none; padding: 16px 0; margin: 0; }
.dm-mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.dm-mobile-nav > ul > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; color: rgba(255,255,255,0.85);
  font-size: 0.95rem; font-weight: 600; transition: var(--transition);
}
.dm-mobile-nav > ul > li > a:hover,
.dm-mobile-nav > ul > li > a.active-link { color: var(--gold); background: rgba(201,164,78,0.06); }

/* Mobile dropdown toggle */
.dm-dropdown-toggle i { transition: transform 0.3s ease; font-size: 0.7rem; }
.dm-mobile-dropdown.open .dm-dropdown-toggle i { transform: rotate(180deg); }

/* Mobile submenu */
.dm-submenu {
  display: none; background: rgba(0,0,0,0.2); padding: 4px 0;
}
.dm-mobile-dropdown.open .dm-submenu { display: block; }
.dm-submenu li a {
  display: block; padding: 12px 40px;
  color: rgba(255,255,255,0.55); font-size: 0.875rem; font-weight: 500;
  border-bottom: none; transition: var(--transition);
}
.dm-submenu li a:hover { color: var(--gold); padding-right: 48px; }

/* Mobile lang switcher */
.dm-mobile-lang {
  padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 8px;
}
.dm-mobile-lang a {
  display: inline-block; color: var(--gold); font-size: 0.85rem; font-weight: 700;
  border: 1px solid var(--gold); padding: 6px 16px; border-radius: 3px;
}
.dm-mobile-lang a:hover { background: var(--gold); color: var(--navy); }

/* ── Force correct link colours (override Bootstrap defaults) ── */
.dm-nav-top a,
.dm-nav-main a { color: inherit; }

.dm-mobile-nav a { color: rgba(255,255,255,0.85); text-decoration: none; }
.dm-mobile-nav > ul > li > a { color: rgba(255,255,255,0.85); }
.dm-mobile-nav > ul > li > a:hover { color: var(--gold); }
.dm-mobile-nav .dm-submenu a { color: rgba(255,255,255,0.6); text-decoration: none; }
.dm-mobile-nav .dm-submenu a:hover { color: var(--gold); }
.dm-mobile-lang a { color: var(--gold); text-decoration: none; }
.dm-mobile-nav-close { color: rgba(255,255,255,0.6); }

/* ---------- Overlay backdrop ---------- */
.dm-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9999; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}
.dm-nav-overlay.active { opacity: 1;  }

/* Scrolled state */
.dm-nav.scrolled .dm-nav-top { display: none; }
.dm-nav.scrolled .dm-nav-main { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }

/* Nav spacer */
.dm-nav-spacer { height: 110px; }

/* =============================================
   HERO SECTION
   ============================================= */
.dm-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.dm-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }

.dm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.75) 60%, rgba(26,58,92,0.6) 100%);
}
.dm-hero-content {
  position: relative; z-index: 1; padding: 120px 0 80px;
  text-align: right;
}
.dm-hero-label {
  display: inline-block; margin-bottom: 20px;
  padding: 8px 20px; background: rgba(201,164,78,0.15);
  border: 1px solid var(--gold); border-radius: 3px;
  color: var(--gold); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em;
}
.dm-hero h1 {
  color: var(--white); margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.dm-hero p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.8;
  max-width: 580px; margin: 0 0 40px auto;
}
.dm-hero-actions { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }
.dm-hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; z-index: 1;
}
.dm-hero-scroll span {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0;} 50%{opacity:1;} }

/* Page Hero (inner pages) */
.dm-page-hero {
  position: relative; height: 400px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.dm-page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.dm-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.6) 60%, rgba(11,31,58,0.3) 100%);
}
.dm-page-hero-content {
  position: relative; z-index: 1; padding-bottom: 48px; width: 100%;
}
.dm-page-hero h1 { color: var(--white); margin-bottom: 8px; }
.dm-breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.dm-breadcrumb a { color: var(--gold); }
.dm-breadcrumb span { color: rgba(255,255,255,0.4); }

/* =============================================
   SECTION STYLES
   ============================================= */
.dm-section { padding: 96px 0; }
.dm-section-sm { padding: 64px 0; }
.dm-section-lg { padding: 128px 0; }
.dm-section-navy { background: var(--navy); }
.dm-section-cream { background: var(--cream); }
.dm-section-dark { background: #080F1C; }

.dm-section-header { margin-bottom: 64px; text-align: center; }
.dm-section-header.rtl-header { text-align: right; }
.dm-section-header .dm-label { display: block; margin-bottom: 12px; }
.dm-section-header h2 { margin-bottom: 16px; }
.dm-section-header p { color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.dm-section-header.rtl-header p { margin: 0; }
.dm-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 16px 0 0 auto;
  border-radius: 2px;
}
.dm-section-header:not(.rtl-header) .dm-divider { margin: 16px auto 0; }

/* =============================================
   STATS STRIP
   ============================================= */
.dm-stats {
  background: var(--gold);
  padding: 0;
}
.dm-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.dm-stat-item {
  padding: 40px 24px; text-align: center;
  border-left: 1px solid rgba(11,31,58,0.15);
  transition: var(--transition);
}
.dm-stat-item:last-child { border-left: none; }
.dm-stat-item:hover { background: rgba(11,31,58,0.08); }
.dm-stat-number {
  font-size: 2.5rem; font-weight: 800; color: var(--navy);
  display: block; line-height: 1;
}
.dm-stat-label { color: var(--navy); font-size: 0.875rem; font-weight: 600; margin-top: 6px; opacity: 0.75; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.dm-services-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.dm-service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}
.dm-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.dm-service-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.dm-service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.dm-service-card:hover .dm-service-card-img img { transform: scale(1.08); }
.dm-service-card-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; font-size: 0.8rem; font-weight: 700;
  border-radius: var(--radius) 0 0 0;
}
.dm-service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.dm-service-card-body h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--navy); }
.dm-service-card-body ul { flex: 1; }
.dm-service-card-body ul li {
  padding: 8px 0; color: var(--text-mid); font-size: 0.9rem;
  border-bottom: 1px dashed rgba(0,0,0,0.08); display: flex; align-items: baseline; gap: 8px;
}
.dm-service-card-body ul li:last-child { border-bottom: none; }
.dm-service-card-body ul li::before {
  content: '›'; color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
}

/* =============================================
   FEATURE BOXES (Why Us)
   ============================================= */
.dm-features-grid { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); }
.dm-feature-item { display: flex; gap: 20px; align-items: flex-start; }
.dm-feature-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(201,164,78,0.12); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold);
  transition: var(--transition);
}
.dm-feature-item:hover .dm-feature-icon { background: var(--gold); color: var(--navy); }
.dm-feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.dm-feature-text p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.dm-about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.dm-about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.dm-about-img-badge {
  position: absolute; bottom: 32px; right: 32px;
  background: var(--gold); color: var(--navy);
  padding: 20px 28px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md);
}
.dm-about-img-badge .num { font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.dm-about-img-badge .txt { font-size: 0.85rem; font-weight: 600; }

.dm-about-content { padding-right: 48px; }
.dm-about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.dm-value-item {
  padding: 20px; background: var(--cream); border-radius: var(--radius);
  border-right: 3px solid var(--gold); text-align: right;
}
.dm-value-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.dm-value-item p { font-size: 0.8rem; color: var(--text-gray); line-height: 1.6; }

/* =============================================
   LOCATIONS (Contact)
   ============================================= */
.dm-locations-grid { display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr); }
.dm-location-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.dm-location-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.dm-location-map { height: 220px; overflow: hidden; }
.dm-location-map iframe { width: 100%; height: 100%; border: none; display: block; }
.dm-location-info { padding: 28px; }
.dm-location-city {
  display: inline-block; background: var(--navy); color: var(--gold);
  padding: 6px 16px; border-radius: 3px; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 16px;
}
.dm-location-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; }
.dm-location-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; font-size: 0.875rem; color: var(--text-mid); text-align: right;
}
.dm-location-detail i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* =============================================
   CONTACT FORM
   ============================================= */
.dm-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.dm-form-group { margin-bottom: 20px; }
.dm-form-group label {
  display: block; margin-bottom: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--text-dark);
}
.dm-form-group input,
.dm-form-group textarea,
.dm-form-group select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius); background: var(--white);
  font-family: var(--font-ar); font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition); outline: none; text-align: right;
}
.dm-form-group input:focus,
.dm-form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,78,0.15); }
.dm-form-group textarea { resize: vertical; min-height: 140px; }

/* =============================================
   FOOTER
   ============================================= */
.dm-footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.dm-footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 2fr 1fr 1.5fr;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dm-footer-logo { margin-bottom: 20px; }
.dm-footer-logo img { height: 52px; width: auto; filter: brightness(2); }
.dm-footer-about {
  font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px;
}
.dm-footer-social { display: flex; gap: 12px; }
.dm-footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition);
}
.dm-footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.dm-footer-col h4 {
  color: var(--white); font-size: 1rem; font-weight: 700;
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.dm-footer-hours li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.dm-footer-hours li:last-child { border-bottom: none; }
.dm-footer-hours .day { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.dm-footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px; font-size: 0.875rem;
}
.dm-footer-contact-item .icon {
  width: 32px; height: 32px; background: rgba(201,164,78,0.15);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem; flex-shrink: 0;
}
.dm-footer-contact-item .info { color: rgba(255,255,255,0.65); line-height: 1.6; }
.dm-footer-contact-item .info strong { color: var(--white); display: block; font-size: 0.8rem; margin-bottom: 2px; }

.dm-footer-bottom {
  padding: 20px 0; background: rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: space-between;
}
.dm-footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.dm-footer-bottom a { color: var(--gold); }

/* =============================================
   ABOUT PAGE - PILLARS
   ============================================= */
.dm-pillars-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.dm-pillar-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: right;
  border-top: 4px solid transparent; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.06);
}
.dm-pillar-card:hover { border-top-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dm-pillar-num {
  font-size: 3rem; font-weight: 800; color: rgba(201,164,78,0.15);
  line-height: 1; margin-bottom: 16px; display: block;
}
.dm-pillar-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.dm-pillar-card p { font-size: 0.875rem; color: var(--text-gray); line-height: 1.7; }

/* =============================================
   SERVICES PAGE - DETAILED LIST
   ============================================= */
.dm-service-section { padding: 72px 0; }
.dm-service-section:nth-child(even) { background: var(--cream); }
.dm-service-detail {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.dm-service-detail.reverse { direction: ltr; }
.dm-service-detail.reverse .dm-service-detail-content { direction: rtl; }
.dm-service-img { border-radius: var(--radius-lg); overflow: hidden; }
.dm-service-img img { width: 100%; height: 380px; object-fit: cover; }
.dm-service-detail-content h2 { color: var(--navy); margin-bottom: 20px; }
.dm-service-list { margin-top: 28px; }
.dm-service-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem; color: var(--text-mid);
}
.dm-service-list li:last-child { border-bottom: none; }
.dm-service-list li .bullet {
  width: 24px; height: 24px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.dm-service-list li .bullet::after { content: '✓'; color: var(--navy); font-size: 0.7rem; font-weight: 900; }

/* =============================================
   CTA SECTION
   ============================================= */
.dm-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.dm-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A44E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.dm-cta h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.dm-cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; position: relative; }
.dm-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* WhatsApp Float */
.dm-whatsapp-float {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.dm-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); color: var(--white); }

/* =============================================
   ANIMATIONS
   ============================================= */
.dm-fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.dm-fade-up.visible { opacity: 1; transform: translateY(0); }
.dm-fade-up:nth-child(2) { transition-delay: 0.1s; }
.dm-fade-up:nth-child(3) { transition-delay: 0.2s; }
.dm-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  /* Hide the top info bar — too crowded on mobile */
  .dm-nav-top { display: none; }
  .dm-nav-links { display: none; }
  .dm-nav-toggle { display: flex; }
  .dm-about-content { padding-right: 0; padding-top: 32px; }
  .dm-features-grid { grid-template-columns: 1fr; }
  .dm-contact-grid { grid-template-columns: 1fr; }
  .dm-footer-grid { grid-template-columns: 1fr 1fr; }
  .dm-service-detail { grid-template-columns: 1fr !important; gap: 32px; }
  .dm-service-detail.reverse { direction: rtl; }
  .dm-pillars-grid { grid-template-columns: 1fr 1fr; }
  .dm-locations-grid { grid-template-columns: 1fr; }
  .dm-services-grid { grid-template-columns: 1fr 1fr; }
  .dm-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .dm-about-values { grid-template-columns: 1fr; }
  /* Spacer = just the main nav bar height */
  .dm-nav-spacer { height: 72px; }
  .dm-nav-logo img { height: 44px; }
  /* Ensure the main nav container doesn't wrap */
  .dm-nav-main .container { flex-wrap: nowrap; gap: 0; }
}

@media (max-width: 767px) {
  .dm-section { padding: 64px 0; }
  .dm-hero p { text-align: center; margin: 0 0 32px; }
  .dm-hero-actions { justify-content: center; }
  .dm-hero h1 { text-align: center; }
  .dm-hero-label { display: none; }
  .dm-footer-grid { grid-template-columns: 1fr; }
  .dm-stats-inner { grid-template-columns: 1fr 1fr; }
  .dm-stat-item { border-left: none; border-bottom: 1px solid rgba(11,31,58,0.1); }
  .dm-page-hero { height: 300px; }
  .dm-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* Shrink logo further on phones */
  .dm-nav-logo img { height: 38px; }
  .dm-nav-main .container { padding-right: 12px; padding-left: 12px; }
}

@media (max-width: 480px) {
  .dm-stats-inner { grid-template-columns: 1fr; }
  .dm-hero-actions { flex-direction: column; align-items: center; }
}
