.elementor-72923 .elementor-element.elementor-element-4c1460ac{--display:flex;}.elementor-72923 .elementor-element.elementor-element-e488d53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6236b82 *//* masdar-blog.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1f44;
  --navy-light: #1a3a6b;
  --green: #2e7d32;
  --green-light: #43a047;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --text-dark: #0a1f44;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --bg-green: #f0fdf4;
  --white: #ffffff;
  --font: 'Inter', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-md: 0 4px 16px rgba(10,31,68,0.09);
  --shadow-lg: 0 8px 32px rgba(10,31,68,0.12);
}

/* ── Layout ── */
.msdr-article {
  font-family: var(--font);
  width: 100%;
  padding: auto;
  color: var(--text-body);
}

.msdr-inner {
  width: 100%;
  max-width: 100%;
}

/* ── Hero Image ── */
.msdr-hero-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/7;
}

.msdr-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Badge ── */
.msdr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-green);
  border: 1px solid #bbf7d0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Main Heading ── */
.msdr-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
}

.msdr-gold-bar {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ── Intro Text ── */
.msdr-lead {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── Section Heading ── */
.msdr-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

/* ── Body Para ── */
.msdr-para {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── Highlight Box ── */
.msdr-highlight {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 500;
}

/* ── List ── */
.msdr-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msdr-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

.msdr-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Checklist ── */
.msdr-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msdr-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  padding: 11px 14px;
  background: var(--bg-green);
  border: 1px solid #d1fae5;
  border-radius: var(--radius-sm);
}

.msdr-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
  color: var(--white);
  font-weight: 800;
}

/* ── Services Grid ── */
.msdr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.msdr-service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.msdr-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(10,31,68,0.11);
}

.msdr-service-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.msdr-service-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

/* ── Image Grid ── */
.msdr-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.msdr-img-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.msdr-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.msdr-img-item:hover img {
  transform: scale(1.03);
}

.msdr-img-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 7px;
  font-style: italic;
}

/* ── Video Block ── */
.msdr-video-block {
  margin: 36px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #000;
}

.msdr-video-block video,
.msdr-video-block iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.msdr-video-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ── Thank You Box ── */
.msdr-thankyou-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.msdr-thankyou-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  pointer-events: none;
}

.msdr-thankyou-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.msdr-thankyou-box p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── CTA Section ── */
.msdr-cta-section {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 40px;
  text-align: center;
}

.msdr-cta-section h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.msdr-cta-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.msdr-cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 28px;
}

.msdr-cta-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.msdr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(46,125,50,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}

.msdr-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46,125,50,0.32);
}

/* ── Divider ── */
.msdr-divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 36px 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .msdr-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .msdr-article {
    padding: 40px 20px;
  }

  .msdr-title {
    font-size: 1.55rem;
  }

  .msdr-section-title {
    font-size: 1.15rem;
  }

  .msdr-img-grid {
    grid-template-columns: 1fr;
  }

  .msdr-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .msdr-thankyou-box {
    padding: 24px 22px;
  }

  .msdr-cta-section {
    padding: 28px 20px;
  }

  .msdr-hero-img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .msdr-article {
    padding: 32px 16px;
  }

  .msdr-title {
    font-size: 1.3rem;
  }

  .msdr-services-grid {
    grid-template-columns: 1fr;
  }

  .msdr-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .msdr-highlight {
    padding: 14px 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0ccbf2d *//* ==================== CTA BUTTONS CSS ==================== */

.aa-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
  align-items: stretch;
}

/* --- Base Button --- */
.aa-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.aa-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aa-cta-btn:hover::before {
  opacity: 1;
}

/* --- Primary Button (Main Website) --- */
.aa-cta-primary {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.aa-cta-primary::before {
  background: #2a2a2a;
}

.aa-cta-primary .aa-cta-icon svg {
  stroke: #c8a84b;
}

.aa-cta-primary .aa-cta-label {
  color: #f0d080;
}

.aa-cta-primary .aa-cta-sub {
  color: #aaaaaa;
}

.aa-cta-primary .aa-cta-arrow {
  color: #c8a84b;
}

.aa-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.2);
  border-color: #c8a84b;
}

/* --- Secondary Button (Freezone + Mainland) --- */
.aa-cta-secondary {
  background: #ffffff;
  border-color: #c8a84b;
}

.aa-cta-secondary::before {
  background: linear-gradient(135deg, rgba(200,168,75,0.06), rgba(240,208,128,0.06));
}

.aa-cta-secondary .aa-cta-icon svg {
  stroke: #c8a84b;
}

.aa-cta-secondary .aa-cta-label {
  color: #1a1a1a;
}

.aa-cta-secondary .aa-cta-sub {
  color: #888888;
}

.aa-cta-secondary .aa-cta-arrow {
  color: #c8a84b;
}

.aa-cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.15);
  border-color: #b8922a;
  background: #fffdf5;
}

/* --- Gold Button (Contact / CTA) --- */
.aa-cta-gold {
  background: linear-gradient(135deg, #c8a84b 0%, #f0d080 50%, #c8a84b 100%);
  background-size: 200% auto;
  border-color: transparent;
}

.aa-cta-gold::before {
  background: linear-gradient(135deg, #b8922a 0%, #e0c060 50%, #b8922a 100%);
  background-size: 200% auto;
}

.aa-cta-gold .aa-cta-icon svg {
  stroke: #ffffff;
}

.aa-cta-gold .aa-cta-label {
  color: #ffffff;
}

.aa-cta-gold .aa-cta-sub {
  color: rgba(255,255,255,0.8);
}

.aa-cta-gold .aa-cta-arrow {
  color: #ffffff;
}

.aa-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,0.45);
  background-position: right center;
}

/* --- Icon Wrapper --- */
.aa-cta-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.aa-cta-icon svg {
  width: 20px;
  height: 20px;
}

/* --- Text Block --- */
.aa-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.aa-cta-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.aa-cta-sub {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.3;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* --- Arrow --- */
.aa-cta-arrow {
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.aa-cta-btn:hover .aa-cta-arrow {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .aa-cta-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .aa-cta-btn {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .aa-cta-btn {
    padding: 12px 16px;
  }

  .aa-cta-label {
    font-size: 13.5px;
  }

  .aa-cta-sub {
    font-size: 11px;
  }
}/* End custom CSS */