/*
Theme Name: Wafid Business Setup
Theme URI: https://wafid.ae
Author: Wafid
Author URI: https://wafid.ae
Description: Premium UAE business setup and corporate services theme with bilingual (EN/AR) support, gold & teal Gulf Luxe branding, and RTL compatibility.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wafid
Tags: business, bilingual, rtl, arabic, english, corporate, services
*/

/* =========================================================
   WAFID BRAND TOKENS
   ========================================================= */
:root {
  --teal: #054a57;
  --teal-mid: #076072;
  --teal-light: #e8f4f6;
  --gold: #c9a84c;
  --gold-dark: #a68a3a;
  --white: #ffffff;
  --off-white: #fafafa;
  --charcoal: #333333;
  --mid-gray: #666666;
  --light-gray: #999999;
  --border-gray: #e5e5e5;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-arabic: "Cairo", 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(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

body.rtl,
body[dir="rtl"] {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--teal);
  line-height: 1.25;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6 {
  font-family: var(--font-arabic);
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   GOLDEN THREAD ACCENTS
   ========================================================= */
.golden-thread-top {
  border-top: 3px solid var(--gold);
}
.golden-thread-bottom {
  border-bottom: 3px solid var(--gold);
}
.golden-thread-left {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

body.rtl .golden-thread-left {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 1.5rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
body.rtl .btn {
  font-family: var(--font-arabic);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-teal {
  background: var(--teal-mid);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-teal {
  background: transparent;
  border: 2px solid var(--teal-mid);
  color: var(--teal-mid);
}
.btn-outline-teal:hover {
  background: var(--teal-mid);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
#top-bar {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  padding: 0.375rem 0;
  display: none;
}
@media (min-width: 1024px) {
  #top-bar {
    display: block;
  }
}

#top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#top-bar a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
#top-bar a:hover {
  color: var(--gold);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#lang-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#lang-toggle:hover {
  color: var(--gold);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  background: rgba(5, 74, 87, 0.6);
  backdrop-filter: blur(4px);
  border-bottom: 3px solid rgba(201, 168, 76, 0.4);
}

#site-header.scrolled,
#site-header.solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo img {
  
  width: 120px !important;
  object-fit: contain;
}
@media(max-width:768px){
    .site-logo img {
  
  width: 100px !important;
  
}
}
#site-header > .container{
    padding:1rem 0;
}
/* Desktop nav */
.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
body.rtl .main-nav a {
  font-family: var(--font-arabic);
}

#site-header.scrolled .main-nav a,
#site-header.solid .main-nav a {
  color: var(--charcoal);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--gold);
}

.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Mobile nav toggle */
.mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .mobile-controls {
    display: none;
  }
}

.mobile-lang-btn,
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
#site-header.scrolled .mobile-lang-btn,
#site-header.solid .mobile-lang-btn,
#site-header.scrolled .mobile-menu-btn,
#site-header.solid .mobile-menu-btn {
  color: var(--teal-mid);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu panel */
#mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#mobile-nav.open {
  display: block;
}
#mobile-nav .container {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s;
}
#mobile-nav a:hover,
#mobile-nav a.active {
  background: var(--teal-light);
  color: var(--teal-mid);
  font-weight: 700;
}

.mobile-cta-wrap {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gray);
}
.mobile-cta-wrap .btn {
  width: 100%;
  justify-content: center;
  border-radius: 6px;
}

/* Header spacer */
.header-spacer {
  height: 80px;
}
@media (min-width: 1024px) {
  body.has-topbar .header-spacer {
    height: 112px;
  }
  .header-spacer {
    height: 80px;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}
@media (min-width: 1024px) {
  body.has-topbar .hero-section {
    margin-top: -112px;
    padding-top: 112px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 44, 53, 0.95),
    rgba(5, 74, 87, 0.9),
    rgba(5, 74, 87, 0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  max-width: 48rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  padding: 1.5rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust-item svg {
  color: var(--teal-mid);
  flex-shrink: 0;
}
.trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--mid-gray);
  font-size: 1.0625rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: block;
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-gray);
  height: 100%;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(7, 96, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  color: var(--teal-mid);
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.service-card:hover h3 {
  color: var(--teal-mid);
}

.service-card p {
  color: var(--mid-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  transition: gap 0.2s;
}
.service-card:hover .service-link {
  gap: 0.5rem;
}

.section-cta {
  text-align: center;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.hiw-section {
  padding: 5rem 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-item {
  text-align: center;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--teal-mid);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.step-item p {
  color: var(--mid-gray);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* =========================================================
   WHY US / STATS
   ========================================================= */
.whyus-section {
  padding: 5rem 0;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.whyus-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}
.whyus-bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whyus-section .section-title {
  color: var(--white);
}
.whyus-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
}
.stat-val {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}
.feature-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries-section {
  padding: 5rem 0;
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1023px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  transition: all 0.3s;
}
.industry-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}
.industry-item svg {
  color: var(--teal-mid);
  flex-shrink: 0;
}
.industry-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}
.industry-item:hover span {
  color: var(--teal-mid);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-gray);
}
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.stars svg {
  color: var(--gold);
  fill: var(--gold);
}
.testimonial-text {
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--teal);
}
.testimonial-author .role {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.blog-section {
  padding: 5rem 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.blog-card-top {
  height: 4px;
  background: var(--gold);
}
.blog-card-body {
  padding: 1.5rem;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.4;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover h3 {
  color: var(--teal-mid);
}
.blog-excerpt {
  color: var(--mid-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--light-gray);
}

/* =========================================================
   LEAD MAGNET BANNER
   ========================================================= */
.lead-magnet {
  padding: 4rem 0;
  background: var(--teal-mid);
}
.lead-magnet-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .lead-magnet-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.lead-magnet h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.lead-magnet p {
  color: rgba(255, 255, 255, 0.7);
}
.lead-magnet .btn {
  flex-shrink: 0;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
body.rtl .faq-question {
  text-align: right;
}

.faq-question span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9375rem;
}
body.rtl .faq-question span {
  font-family: var(--font-arabic);
}

.faq-icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--mid-gray);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-item.open .faq-answer {
  display: block;
}

.faq-cta {
  text-align: center;
  margin-top: 2rem;
}
.faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-mid);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: color 0.2s;
}
.faq-cta a:hover {
  color: var(--gold);
}

/* =========================================================
   FINAL CTA BANNER
   ========================================================= */
.cta-banner-section {
  padding: 5rem 0;
  background: var(--white);
}
.cta-banner {
  background: var(--teal);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 639px) {
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-inner {
  position: relative;
  z-index: 10;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--teal);
  color: var(--white);
}
.footer-gold-thread {
  height: 3px;
  background: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  width: 200px;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
body.rtl .footer-col h4 {
  font-family: var(--font-arabic);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
body.rtl .whatsapp-float {
  right: auto;
  left: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}
.whatsapp-float svg {
  color: white;
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: var(--teal);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 96, 114, 0.75);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 10rem;
}
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.page-hero .breadcrumb a:hover {
  color: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  max-width: 40rem;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-detail svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail span {
  color: var(--mid-gray);
  font-size: 0.9375rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* =========================================================
   SINGLE POST / PAGE CONTENT
   ========================================================= */
.entry-content {
  max-width: 48rem;
  padding: 4rem 0;
  line-height: 1.8;
  color: var(--charcoal);
}
.entry-content h2,
.entry-content h3 {
  color: var(--teal);
  margin: 2rem 0 1rem;
}
.entry-content p {
  margin-bottom: 1.25rem;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.entry-content li {
  margin-bottom: 0.5rem;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 767px) {
  .about-mv-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  text-align: center;
}
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-icon svg {
  color: var(--gold);
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-mid);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-teal {
  color: var(--teal);
}
.text-white {
  color: var(--white);
}
.bg-off-white {
  background: var(--off-white);
}
.mt-auto {
  margin-top: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   ANIMATIONS (no JS required)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  background-color: #076072;
  padding-top: 128px;
  padding-bottom: 48px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  font-size: 16px;
}

/* Progress Section */
.progress-section {
  background-color: #076072;
  padding-bottom: 32px;
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 768px;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.step-icon.active {
  background-color: #c9a84c;
}

.step-icon.active svg {
  color: white;
}

.step-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: none;
}

@media (min-width: 640px) {
  .step-label {
    display: block;
  }
}

.step-label.active {
  color: #c9a84c;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background-color: white;
}

.form-container {
  max-width: 672px;
  margin: 0 auto;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #076072;
  margin-bottom: 8px;
}

.step-description {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 32px;
}

/* Option Buttons */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-btn {
  width: 100%;
  text-align: left;
  padding: 16px;
  border: 2px solid #e5e7eb;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.option-btn:hover {
  border-color: rgba(7, 96, 114, 0.3);
}

.option-btn.selected {
  border-color: #c9a84c;
  background-color: rgba(201, 168, 76, 0.05);
}

.option-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #c9a84c;
  display: none;
}

.option-btn.selected .check-icon {
  display: block;
}

/* Form Fields */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #076072;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  background-color: #fafafa;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #c9a84c;
}

/* Navigation */
.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
}

.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-prev:hover {
  color: #076072;
}

.btn-prev svg {
  width: 16px;
  height: 16px;
}

.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a84c;
  color: white;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-next:hover,
.btn-submit:hover {
  background-color: #b8963e;
}

.btn-next svg,
.btn-submit svg {
  width: 16px;
  height: 16px;
}

.hidden {
  display: none !important;
}

/* Success Message */
.success-message {
  margin-top: 24px;
  padding: 16px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
}
/* Reset & Base */
.free-zones-page {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  line-height: 1.6;
  color: #333;
}

.free-zones-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.fz-hero {
  position: relative;
  padding: 80px 0;
  background-color: #054a57;
  overflow: hidden;
}

.fz-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.fz-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fz-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.fz-hero-label {
  color: #c9a84c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading, inherit);
}

.fz-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-top: 12px;
  margin-bottom: 16px;
  font-family: var(--font-heading, inherit);
}

@media (min-width: 768px) {
  .fz-hero-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .fz-hero-title {
    font-size: 48px;
  }
}

.fz-hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Bar */
.fz-benefits {
  padding: 48px 0;
  background-color: white;
  border-bottom: 1px solid #f3f4f6;
}

.fz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .fz-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fz-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.fz-check-icon {
  width: 18px;
  height: 18px;
  color: #c9a84c;
  flex-shrink: 0;
}

.fz-benefit-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Emirate Sections */
.fz-emirate-section {
  padding: 64px 0;
}

.fz-emirate-section.alt {
  background-color: #fafafa;
}

.fz-emirate-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.fz-map-icon {
  width: 20px;
  height: 20px;
  color: #076072;
}

.fz-emirate-title {
  font-size: 24px;
  font-weight: 700;
  color: #054a57;
  font-family: var(--font-heading, inherit);
}

.fz-emirate-divider {
  width: 48px;
  height: 2px;
  background-color: #c9a84c;
  margin-bottom: 32px;
}

/* Cards Grid */
.fz-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .fz-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fz-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Zone Card */
.fz-card {
  background-color: white;
  padding: 24px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fz-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.fz-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #076072;
  margin-bottom: 8px;
  font-family: var(--font-heading, inherit);
}

.fz-card-focus {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.fz-card-focus-label {
  font-weight: 600;
  color: #054a57;
}

.fz-card-price {
  font-size: 14px;
  margin-bottom: 16px;
}

.fz-card-price-label {
  font-weight: 600;
  color: #054a57;
}

.fz-card-price-value {
  color: #c9a84c;
  font-weight: 700;
}

.fz-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #c9a84c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s ease;
}

.fz-card-link:hover {
  gap: 8px;
}

.fz-card-link svg {
  width: 14px;
  height: 14px;
}

/* CTA Section */
.fz-cta {
  padding: 64px 0;
  background-color: #054a57;
}

.fz-cta-content {
  text-align: center;
}

.fz-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-family: var(--font-heading, inherit);
}

@media (min-width: 768px) {
  .fz-cta-title {
    font-size: 30px;
  }
}

.fz-cta-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.fz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #c9a84c;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-heading, inherit);
  transition: background-color 0.3s ease;
}

.fz-cta-btn:hover {
  background-color: #a68a3a;
}

.fz-cta-btn svg {
  width: 20px;
  height: 20px;
}
/* ── Shared layout ──────────────────────────────────── */
.ws-archive,
.ws-single {
  font-family: inherit;
}

/* ── Hero (archive) ─────────────────────────────────── */
.ws-hero {
  position: relative;
  padding: 80px 0;
  background: #054a57;
  overflow: hidden;
}
.ws-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.ws-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ws-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ws-hero-label {
  display: inline-block;
  color: #c9a84c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ws-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.ws-hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Hero (single) ──────────────────────────────────── */
.ws-single-hero {
  position: relative;
  padding: 80px 0 60px;
  background: #054a57;
  overflow: hidden;
}
.ws-single-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.ws-single-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ws-single-hero-inner {
  position: relative;
  z-index: 1;
}
.ws-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.ws-back-link:hover {
  color: #c9a84c;
}
.ws-back-link svg {
  width: 16px;
  height: 16px;
}
.ws-single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ws-single-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ws-single-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #c9a84c;
  stroke: #c9a84c;
}
.ws-single-cat-label {
  color: #c9a84c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ws-single-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* ── Section rows ───────────────────────────────────── */
.ws-section {
  padding: 64px 0;
}
.ws-section--white {
  background: #fff;
}
.ws-section--grey {
  background: #fafafa;
}
.ws-cat-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #054a57;
  margin: 0 0 8px;
}
.ws-cat-divider {
  width: 48px;
  height: 3px;
  background: #c9a84c;
  margin-bottom: 32px;
}

/* ── Card grid ──────────────────────────────────────── */
.ws-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .ws-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ws-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ws-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Card ───────────────────────────────────────────── */
.ws-card {
  display: block;
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 24px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ws-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.ws-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ws-card-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(7, 96, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ws-card-icon svg,
.ws-card-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: #076072;
}
.ws-card-body {
  flex: 1;
  min-width: 0;
}
.ws-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #054a57;
  margin: 0 0 8px;
  transition: color 0.2s;
}
.ws-card:hover .ws-card-title {
  color: #076072;
}
.ws-card-short {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px;
}
.ws-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c9a84c;
}
.ws-card-cta svg {
  width: 14px;
  height: 14px;
  stroke: #c9a84c;
}

/* ── Related cards (single) ─────────────────────────── */
.ws-card--related {
  display: block;
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 24px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ws-card--related:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.ws-card-icon--sm svg {
  width: 24px;
  height: 24px;
  stroke: #076072;
  display: block;
  margin-bottom: 16px;
}

/* ── Single body ────────────────────────────────────── */
.ws-single-body {
  padding: 64px 0;
  background: #fff;
}
.ws-single-content {
  max-width: 780px;
}
.ws-single-detail {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.85;
  margin: 0 0 32px;
}

/* ── Related section ────────────────────────────────── */
.ws-related {
  padding: 64px 0;
  background: #fafafa;
}
.ws-related-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #054a57;
  margin: 0 0 32px;
}

/* ── CTA ────────────────────────────────────────────── */
.ws-cta {
  padding: 64px 0;
  background: #076072;
}
.ws-cta--teal {
  background: #054a57;
}
.ws-cta-inner {
  text-align: center;
}
.ws-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.ws-cta-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.ws-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Buttons ────────────────────────────────────────── */
.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.ws-btn svg {
  width: 18px;
  height: 18px;
}
.ws-btn--gold {
  background: #c9a84c;
  color: #fff;
}
.ws-btn--gold:hover {
  background: #a68a3a;
  color: #fff;
}
.ws-btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.ws-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* ── Page wrapper ───────────────────────────────────── */
.wi-page {
  font-family: inherit;
}

/* ── Hero ───────────────────────────────────────────── */
.wi-hero {
  position: relative;
  padding: 80px 0;
  background: #054a57;
  overflow: hidden;
  text-align: center;
}
.wi-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.wi-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wi-hero-inner {
  position: relative;
  z-index: 1;
}
.wi-hero-label {
  display: inline-block;
  color: #c9a84c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wi-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.wi-hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Grid section ───────────────────────────────────── */
.wi-grid-section {
  padding: 80px 0;
  background: #fff;
}
.wi-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .wi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .wi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Card ───────────────────────────────────────────── */
.wi-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  padding: 32px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.wi-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.wi-card-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(7, 96, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wi-card-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: #076072;
}
.wi-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #054a57;
  margin: 0 0 12px;
}
.wi-card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 20px;
}
.wi-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #c9a84c;
  text-decoration: none;
  transition: gap 0.2s;
}
.wi-card-cta:hover {
  gap: 8px;
}
.wi-card-cta svg {
  width: 14px;
  height: 14px;
  stroke: #c9a84c;
}

/* ── CTA section ────────────────────────────────────── */
.wi-cta {
  padding: 64px 0;
  background: #076072;
}
.wi-cta-inner {
  text-align: center;
}
.wi-cta-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.wi-cta-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.wi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #c9a84c;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.wi-btn:hover {
  background: #a68a3a;
  color: #fff;
}
.wi-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
/* ── Shared ─────────────────────────────────────────── */
.bl-archive,
.bl-single {
  font-family: inherit;
}

/* ── Hero (archive) ─────────────────────────────────── */
.bl-hero {
  position: relative;
  padding: 80px 0;
  background: #054a57;
  overflow: hidden;
}
.bl-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.bl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bl-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.bl-hero-label {
  display: inline-block;
  color: #c9a84c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bl-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.bl-hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Filter bar ─────────────────────────────────────── */
.bl-filter-bar {
  padding: 32px 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.bl-search-form {
  margin-bottom: 20px;
}
.bl-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.bl-search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  width: 18px;
  height: 18px;
  stroke: #999;
  pointer-events: none;
}
.bl-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid #e0e0e0;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.bl-search-input--rtl {
  padding: 12px 42px 12px 16px;
}
.bl-search-input:focus {
  border-color: #076072;
}
.bl-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.bl-cat-pill {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  background: #fafafa;
  color: #666;
  transition:
    background 0.2s,
    color 0.2s;
}
.bl-cat-pill:hover {
  background: rgba(7, 96, 114, 0.1);
  color: #076072;
}
.bl-cat-pill--active {
  background: #076072;
  color: #fff;
}

/* ── Grid section ───────────────────────────────────── */
.bl-grid-section {
  padding: 64px 0;
  background: #fafafa;
}
.bl-count {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 24px;
}
.bl-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .bl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Card ───────────────────────────────────────────── */
.bl-card {
  display: block;
  background: #fff;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.bl-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}
.bl-card-bar {
  height: 6px;
  background: #c9a84c;
}
.bl-card-body {
  padding: 24px;
}
.bl-card-cat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.bl-card-cat-row svg {
  width: 12px;
  height: 12px;
  stroke: #076072;
  flex-shrink: 0;
}
.bl-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: #076072;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bl-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #054a57;
  margin: 0 0 10px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bl-card:hover .bl-card-title {
  color: #076072;
}
.bl-card-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bl-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bl-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #999;
}
.bl-card-meta-item svg {
  width: 12px;
  height: 12px;
}

/* ── Pagination ─────────────────────────────────────── */
.bl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.bl-page-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.bl-page-btn svg {
  width: 18px;
  height: 18px;
}
.bl-page-btn:hover {
  background: #076072;
  color: #fff;
  border-color: #076072;
}
.bl-page-btn:hover svg {
  stroke: #fff;
}
.bl-page-btn--active {
  background: #076072;
  color: #fff;
  border-color: #076072;
}

/* ── Empty state ────────────────────────────────────── */
.bl-empty {
  text-align: center;
  padding: 48px 0;
  color: #666;
}

/* ── Single hero ────────────────────────────────────── */
.bl-single-hero {
  position: relative;
  padding: 80px 0 60px;
  background: #054a57;
  overflow: hidden;
}
.bl-single-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.bl-single-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bl-single-hero-inner {
  position: relative;
  z-index: 1;
}
.bl-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.bl-back-link:hover {
  color: #c9a84c;
}
.bl-back-link svg {
  width: 16px;
  height: 16px;
}
.bl-single-cat {
  display: block;
  color: #c9a84c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bl-single-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  max-width: 760px;
}
.bl-single-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.bl-single-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.bl-single-meta-item svg {
  width: 14px;
  height: 14px;
}

/* ── Single body ────────────────────────────────────── */
.bl-single-body {
  padding: 64px 0;
  background: #fff;
}
.bl-single-content {
  max-width: 760px;
  margin: 0 auto;
}
.bl-single-excerpt {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin: 0 0 24px;
}
.bl-single-placeholder p,
.bl-single-wp-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── CTA box ────────────────────────────────────────── */
.bl-single-cta-box {
  margin-top: 40px;
  padding: 24px;
  background: rgba(7, 96, 114, 0.05);
  border: 1px solid rgba(7, 96, 114, 0.1);
}
.bl-single-cta-title {
  font-size: 1rem;
  font-weight: 800;
  color: #054a57;
  margin: 0 0 8px;
}
.bl-single-cta-text {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px;
}
.bl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #c9a84c;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
}
.bl-btn:hover {
  background: #a68a3a;
  color: #fff;
}
.bl-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* ── Related ────────────────────────────────────────── */
.bl-related {
  padding: 64px 0;
  background: #fafafa;
}
.bl-related-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #054a57;
  margin: 0 0 32px;
}
.bl-related-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .bl-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bl-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bl-related-card {
  display: block;
  background: #fff;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.bl-related-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.bl-related-card-bar {
  height: 6px;
  background: #c9a84c;
}
.bl-related-card-body {
  padding: 20px;
}
.bl-related-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: #076072;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bl-related-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #054a57;
  margin: 8px 0 8px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bl-related-card:hover .bl-related-card-title {
  color: #076072;
}
.bl-related-card-meta {
  font-size: 0.75rem;
  color: #999;
}
