/*
Theme Name: Astra Child - Arma
Theme URI: http://wpastra.com/
Description: Astra Child Theme for Arma Real Estate (Design 3: Modern Dynamic)
Author: Antigravity
Author URI: https://arma.sa
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');


/* ============================================
   ARMA Real Estate - Custom Block Styles
   ============================================ */

:root {
  --green: #7AB648;
  --green-dark: #5A9A2F;
  --green-light: #9DD66A;
  --green-bg: #EDF7E3;
  --emerald: #2D8A4E;
  --teal: #0D9488;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --gradient-green: linear-gradient(135deg, #7AB648, #2D8A4E);
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #132743 40%, #1A3A5C 100%);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  --glass-white: rgba(255,255,255,0.75);
  --glass-white-border: rgba(255,255,255,0.5);
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
  --shadow-green: 0 8px 30px rgba(122,182,72,0.3);
  --r: 20px;
  --r-sm: 12px;
  --r-full: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.4s var(--ease);
  --font: 'Cairo', sans-serif;
}

/* GLOBAL FONTS OVERRIDES FOR PREMIUM TYPOGRAPHY */
body, html, #page, .site, input, select, textarea, button,
h1, h2, h3, h4, h5, h6, .entry-title, .widget-title, .wp-block-heading,
p, a, li, span, div, strong, em, small {
  font-family: 'Cairo', sans-serif !important;
}

/* For English Language Pages, switch to Inter Font */
html[lang^="en"] body,
html[lang^="en"] html,
html[lang^="en"] #page,
html[lang^="en"] .site,
html[lang^="en"] input,
html[lang^="en"] select,
html[lang^="en"] textarea,
html[lang^="en"] button,
html[lang^="en"] h1,
html[lang^="en"] h2,
html[lang^="en"] h3,
html[lang^="en"] h4,
html[lang^="en"] h5,
html[lang^="en"] h6,
html[lang^="en"] .entry-title,
html[lang^="en"] .widget-title,
html[lang^="en"] .wp-block-heading,
html[lang^="en"] p,
html[lang^="en"] a,
html[lang^="en"] li,
html[lang^="en"] span,
html[lang^="en"] div,
html[lang^="en"] strong,
html[lang^="en"] em,
html[lang^="en"] small {
  font-family: 'Inter', sans-serif !important;
}

/* Ensure numerical stats in hero and metrics use Inter font for cleaner numbers */
.metric h3,
.hero-metrics h3,
.metric h3 *,
.hero-metrics h3 * {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
}

/* DECORATIVE ORBS IN HERO GENERATED VIA CSS PSEUDO ELEMENTS */
.arma-hero-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero) !important;
  padding: 120px 0 80px !important;
}

.arma-hero-wrapper h1,
.arma-hero-wrapper h1 * {
  color: #ffffff !important;
}
.arma-hero-wrapper h1 em {
  font-style: normal;
  background: var(--gradient-green) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
}
.arma-hero-wrapper .hero-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* We create the background image and bottom fade-out gradient using pseudo-elements */
.arma-hero-wrapper::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: -20% !important;
  width: 70% !important;
  height: 100% !important;
  background: url('images/hero-3.png') center/cover no-repeat !important;
  opacity: 0.25 !important;
  mask-image: linear-gradient(to right, transparent 0%, black 40%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%) !important;
  z-index: 1 !important;
  border-radius: 0 !important;
  filter: none !important;
  animation: none !important;
  pointer-events: none !important;
}

.arma-hero-wrapper::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 200px !important;
  background: linear-gradient(to top, var(--gray-50), transparent) !important;
  z-index: 2 !important;
  border-radius: 0 !important;
  filter: none !important;
  animation: none !important;
  pointer-events: none !important;
}

@keyframes orbFloat{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(20px,-30px) scale(1.05)}
  66%{transform:translate(-15px,20px) scale(0.95)}
}

/* HERO CHIP */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 28px;
}
.hero-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(122,182,72,0.5)}
  50%{box-shadow:0 0 0 8px rgba(122,182,72,0)}
}

/* DYNAMIC BUTTONS */
a.btn-grad,
.wp-block-button.btn-grad .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px !important;
  background: var(--gradient-green) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--t);
  border: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-green);
  text-decoration: none;
}
a.btn-grad::before,
.wp-block-button.btn-grad .wp-block-button__link::before {
  content: '\f135';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-inline-end: 8px;
}
a.btn-grad:hover,
.wp-block-button.btn-grad .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(122,182,72,0.45) !important;
}

a.btn-ghost,
.wp-block-button.btn-ghost .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px !important;
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-radius: var(--r-full) !important;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--t);
  text-decoration: none;
}
a.btn-ghost::before,
.wp-block-button.btn-ghost .wp-block-button__link::before {
  content: '\f1ad';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-inline-end: 8px;
}
a.btn-ghost:hover,
.wp-block-button.btn-ghost .wp-block-button__link:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
}

/* HERO METRICS */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  z-index: 2;
  position: relative;
}
.metric {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 20px;
  text-align: center;
  transition: var(--t);
}
.metric:hover {
  border-color: rgba(122,182,72,0.3);
  transform: translateY(-4px);
}
.metric h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.metric h3 span {
  font-size: 1rem;
  color: var(--green-light);
}
.metric p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  margin-bottom: 0;
}

/* HERO IMAGE STACK & BADGES */
.hero-card-stack {
  position: relative;
  z-index: 2;
}
.hero-main-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
}
.hero-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  background: var(--glass-white);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-white-border);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.float-badge-1 {
  bottom: 30px;
  right: -30px;
  animation: bobUp 4s ease-in-out infinite;
}
.float-badge-2 {
  top: 30px;
  left: -30px;
  animation: bobUp 4s ease-in-out infinite 2s;
}
@keyframes bobUp {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.float-badge .fb-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content:center;
  color: #fff;
  font-size: 1.1rem;
}
.float-badge h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.float-badge small {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* SECTION TAG */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--green-bg);
  border: 1px solid rgba(122,182,72,0.2);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.sec-tag::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 8px;
}
.services .sec-tag::before {
  content: '\f0b1'; /* fa-briefcase */
}
.props-sec .sec-tag::before {
  content: '\f1ad'; /* fa-building */
}
.why-sec .sec-tag::before {
  content: '\f004'; /* fa-heart */
}
.blog-sec .sec-tag::before {
  content: '\f1ea'; /* fa-newspaper */
}

/* SERVICES CARD GRID */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.srv {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 36px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.srv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-green);
  opacity: 0;
  transition: var(--t);
  z-index: 0;
}
.srv > * {
  position: relative;
  z-index: 1;
}
.srv:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.srv:hover::after {
  opacity: 1;
}
.srv:hover h3, .srv:hover p, .srv:hover .srv-link {
  color: #fff !important;
}
.srv:hover .ic {
  background: rgba(255,255,255,0.2);
}
.srv:hover .ic svg {
  stroke: #fff;
}

.srv .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--t);
}
.srv .ic i {
  font-size: 22px;
  color: var(--green);
  transition: var(--t);
}
.srv:hover .ic i {
  color: #fff !important;
}
.srv h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
  transition: var(--t);
}
.srv p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  transition: var(--t);
}
.srv-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
}
.srv-link:hover {
  gap: 12px;
}

/* PROPERTIES GRID */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prop {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--t);
}
.prop:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prop .thumb {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.prop .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t);
}
.prop:hover .thumb img {
  transform: scale(1.06);
}
.prop .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 16px;
  background: var(--gradient-green);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.prop .det {
  padding: 24px;
}
.prop .det h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 6px;
}
.prop .det .loc {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prop .det .ft {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.prop .det .ft span {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* WHY US SECTION */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  transition: var(--t);
}
.feat-item:hover {
  border-color: var(--green);
  background: var(--green-bg);
}
.feat-item .dot {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  margin-top: 2px;
}
.feat-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 2px;
}
.feat-item p {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: 0;
}

.why-visual-wrapper {
  position: relative;
}
.why-visual-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r);
}
.why-visual-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--r) + 8px);
  border: 2px dashed rgba(122,182,72,0.2);
  z-index: -1;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-c {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
}
.blog-c:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.blog-c .img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-c .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t);
}
.blog-c:hover .img img {
  transform: scale(1.05);
}
.blog-c .cat {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 14px;
  background: var(--glass-white);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-dark);
  border: 1px solid var(--glass-white-border);
}
.blog-c .body {
  padding: 24px;
}
.blog-c .date {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.blog-c h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog-c p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.blog-c .link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-c .link:hover {
  gap: 12px;
}

/* CTA BLOCK */
.cta-sec {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--gradient-green) !important;
}
.cta-sec::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  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='%23ffffff' fill-opacity='0.05'%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") !important;
  opacity: 0.4 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-sec h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff !important;
  margin-top: 0;
  margin-bottom: 16px;
}
.cta-sec p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #fff !important;
  color: var(--green) !important;
  border-radius: var(--r-full) !important;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--t);
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* RESPONSIVE LAYOUTS FOR BLOCKS */
@media(max-width:1024px){
  .float-badge-1{right:10px}
  .float-badge-2{left:10px}
  .srv-grid, .prop-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:768px){
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .srv-grid, .prop-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PAGE SPECIFIC & FORM STYLES
   ============================================ */

/* WPFORMS GLASSMORPHISM CARDS */
.form-card-glass {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: var(--r) !important;
  padding: 40px !important;
  box-shadow: var(--shadow-lg) !important;
  transition: var(--t) !important;
}

.form-card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(122,182,72,0.3) !important;
}

.booking-card-glass {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(26, 58, 92, 0.95)) !important;
  border: 1px solid rgba(122, 182, 72, 0.25) !important;
  color: #fff !important;
}

.booking-card-glass h3, 
.booking-card-glass p {
  color: #fff !important;
}

.booking-card-glass p {
  opacity: 0.8;
}

/* WPFORMS FIELDS STYLING */
.wpforms-form .wpforms-field {
  padding: 10px 0 !important;
}

.wpforms-form .wpforms-field-label {
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: var(--gray-800) !important;
  margin-bottom: 8px !important;
}

.booking-card-glass .wpforms-field-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100% !important;
  padding: 14px 20px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--r-sm) !important;
  font-size: 0.95rem !important;
  color: var(--gray-900) !important;
  transition: var(--t) !important;
  outline: none !important;
}

.booking-card-glass input[type="text"],
.booking-card-glass input[type="email"],
.booking-card-glass select,
.booking-card-glass textarea {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(122, 182, 72, 0.15) !important;
  background: #fff !important;
}

.booking-card-glass input:focus,
.booking-card-glass select:focus,
.booking-card-glass textarea:focus {
  border-color: var(--green-light) !important;
  box-shadow: 0 0 0 4px rgba(157, 214, 106, 0.25) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.wpforms-form button[type="submit"],
.wpforms-form .wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 36px !important;
  background: var(--gradient-green) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  transition: var(--t) !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: var(--shadow-green) !important;
  margin-top: 10px !important;
  width: auto !important;
}

.wpforms-form button[type="submit"]:hover,
.wpforms-form .wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(122,182,72,0.45) !important;
}

/* CONTACT INFO & MAP */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--t);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 24px;
}

.info-item {
  display: flex !important;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--r-sm);
  background: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px 0;
}

.info-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

.map-wrapper {
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 16px;
  transition: var(--t);
}

.map-wrapper:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ABOUT PAGE STYLES */
.about-hero-sec,
.srv-hero-sec,
.props-hero-sec,
.blog-hero-sec {
  padding: 100px 0 60px !important;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%) !important;
  text-align: center;
}

.about-hero-sec h1,
.srv-hero-sec h1,
.props-hero-sec h1,
.blog-hero-sec h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 16px;
}

.about-highlights-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.about-highlights-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 20px;
}

.about-highlights-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.about-highlights-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.about-highlights-card ul li:last-child {
  margin-bottom: 0;
}

.about-highlights-card ul li i {
  color: var(--green);
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 30px 24px;
  text-align: center;
  transition: var(--t);
  height: 100%;
}

.value-card:hover {
  background: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.value-card .icon {
  width: 50px;
  height: 50px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* SERVICES PAGE DETAILED GRID */
.srv-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 40px 30px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow);
}

.srv-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.srv-detail-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--green-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 24px;
}

.srv-detail-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 12px;
}

.srv-detail-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE SUBPAGES */
@media(max-width:1024px){
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    flex-direction: column !important;
  }
  .contact-grid > .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
    margin-bottom: 40px;
  }
}

@media(max-width:640px){
  .values-grid {
    grid-template-columns: 1fr;
  }
  .srv-detailed-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-sec h1,
  .srv-hero-sec h1,
  .props-hero-sec h1,
  .blog-hero-sec h1 {
    font-size: 2rem;
  }
  .form-card-glass {
    padding: 24px !important;
  }
}

/* ============================================
   ASTRATHEME OVERRIDES FOR PREMIUM HEADER
   ============================================ */

/* Make the header absolute positioned so it floats on the Hero gradient */
.site-header {
  position: absolute !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
  background: transparent !important;
  border-bottom: none !important;
  z-index: 1000 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: none !important;
}

/* Scroll state styling */
.site-header.scrolled {
  position: fixed !important;
  background: transparent !important;
  animation: headerSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Floating glass pill design */
.main-header-bar {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--r-full) !important;
  max-width: 1200px !important;
  margin: 20px auto 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  padding: 6px 24px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Remove default full-width backgrounds in Astra */
.ast-main-header-wrap, .main-header-bar-wrap {
  background: transparent !important;
  border: none !important;
}

.site-header.scrolled .main-header-bar {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
  margin-top: 10px !important;
}

/* Site branding text */
.site-header:not(.scrolled) .site-title a,
.site-header:not(.scrolled) .site-title a:hover {
  color: #ffffff !important;
}
.site-header.scrolled .site-title a {
  color: var(--gray-900) !important;
}

/* Navigation Links */
.site-header:not(.scrolled) .main-header-menu .menu-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  transition: var(--t) !important;
}
.site-header:not(.scrolled) .main-header-menu .menu-link:hover {
  color: #ffffff !important;
}

.site-header.scrolled .main-header-menu .menu-link {
  color: var(--gray-600) !important;
}
.site-header.scrolled .main-header-menu .menu-link:hover {
  color: var(--green) !important;
}

/* Active menu item styling */
.site-header:not(.scrolled) .main-header-menu .current-menu-item > .menu-link {
  color: #ffffff !important;
}
.site-header.scrolled .main-header-menu .current-menu-item > .menu-link {
  color: var(--green) !important;
}

/* CTA: Contact Us / اتصل بنا button (second to last menu item) */
.main-header-menu > li:nth-last-child(2) > .menu-link {
  background: var(--gradient-green) !important;
  color: #ffffff !important;
  border-radius: var(--r-full) !important;
  padding: 10px 24px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-green) !important;
  border: none !important;
  margin: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: var(--t) !important;
}
.main-header-menu > li:nth-last-child(2) > .menu-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(122, 182, 72, 0.45) !important;
  color: #ffffff !important;
}
.main-header-menu > li:nth-last-child(2) {
  display: flex !important;
  align-items: center !important;
}

/* Language Switcher pill: Last menu item */
.main-header-menu > li:last-child > .menu-link {
  padding: 8px 16px !important;
  border-radius: var(--r-full) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: var(--t) !important;
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.site-header.scrolled .main-header-menu > li:last-child > .menu-link {
  color: var(--gray-600) !important;
  background: var(--gray-100) !important;
  border-color: var(--gray-200) !important;
}
.main-header-menu > li:last-child > .menu-link:hover {
  border-color: var(--green) !important;
  color: var(--green) !important;
  background: transparent !important;
}
.main-header-menu > li:last-child {
  display: flex !important;
  align-items: center !important;
}

/* MOBILE RESPONSIVE HEADER FIXES */
@media (max-width: 920px) {
  .main-header-bar {
    margin: 10px 15px 0 !important;
    border-radius: 24px !important;
    padding: 8px 16px !important;
  }
  .ast-mobile-menu-trigger-minimal {
    color: #ffffff !important;
  }
  .site-header.scrolled .ast-mobile-menu-trigger-minimal {
    color: var(--gray-800) !important;
  }
  .main-header-menu > li:nth-last-child(2),
  .main-header-menu > li:last-child {
    display: block !important;
    height: auto !important;
  }
  .main-header-menu > li:nth-last-child(2) > .menu-link {
    margin: 10px 0 !important;
    justify-content: center;
    width: 100%;
  }
  .main-header-menu > li:last-child > .menu-link {
    margin: 10px 0 !important;
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   GLOWING ORBS STYLING
   ============================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(122, 182, 72, 0.15);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(13, 148, 136, 0.1);
  bottom: 10%;
  right: 10%;
  animation-delay: -3s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(122, 182, 72, 0.08);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}

/* ============================================
   PREMIUM CUSTOM DARK FOOTER
   ============================================ */
.footer {
  background: var(--gray-900) !important;
  color: var(--gray-400) !important;
  padding: 80px 0 0 !important;
  font-family: var(--font) !important;
}
.footer a {
  color: var(--gray-400) !important;
  text-decoration: none;
  transition: var(--t);
}
.footer a:hover {
  color: var(--green) !important;
}
.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.f-brand img {
  height: 44px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.f-brand p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.soc {
  display: flex;
  gap: 10px;
}
.soc a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500) !important;
  transition: var(--t) !important;
}
.soc a:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}
.fc h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 22px;
  margin-top: 0;
}
.fc ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.fc ul li {
  margin-bottom: 10px;
}
.fc ul li a {
  font-size: 0.88rem;
}
.fc ul li a:hover {
  padding-right: 6px;
}
.fcon {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.fcon li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.fcon .fic {
  color: var(--green);
  min-width: 18px;
  margin-top: 3px;
}
.f-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.f-blinks {
  display: flex;
  gap: 22px;
}
.f-blinks a:hover {
  color: var(--green) !important;
}

@media(max-width:1024px){
  .f-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:768px){
  .f-grid {
    grid-template-columns: 1fr;
  }
  .f-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}


/* ==========================================================================
   ARMA ADDITIONAL CUSTOM OVERRIDES
   ========================================================================== */

/* HIDE SITE TITLE NEXT TO LOGO IN HEADER */
.ast-site-title-wrap, 
.site-branding .site-title, 
.site-branding .site-title a {
  display: none !important;
}

/* CENTER-ALIGN SECTION HEADERS */
.sec-head {
  text-align: center !important;
  margin-bottom: 56px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.sec-head h2 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-bottom: 14px !important;
  text-align: center !important;
}
.sec-head p {
  font-size: 1.02rem !important;
  color: var(--gray-500) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
@media (max-width: 768px) {
  .sec-head h2 {
    font-size: 1.8rem !important;
  }
}

/* FLOATING WHATSAPP BUTTON */
.wa-float {
  position: fixed !important;
  bottom: 30px !important;
  left: 30px !important;
  width: 60px !important;
  height: 60px !important;
  background-color: #25D366 !important;
  color: #fff !important;
  border-radius: 50% !important;
  text-align: center !important;
  font-size: 30px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}
.wa-float:hover {
  background-color: #128C7E !important;
  transform: scale(1.1) translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}
.wa-float .wa-tooltip {
  visibility: hidden !important;
  width: 160px !important;
  background-color: #333 !important;
  color: #fff !important;
  text-align: center !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  position: absolute !important;
  z-index: 100000 !important;
  bottom: 75px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  opacity: 0 !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: opacity 0.3s !important;
  pointer-events: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}
.wa-float .wa-tooltip::after {
  content: "" !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  margin-left: -5px !important;
  border-width: 5px !important;
  border-style: solid !important;
  border-color: #333 transparent transparent transparent !important;
}
.wa-float:hover .wa-tooltip {
  visibility: visible !important;
  opacity: 1 !important;
}


/* ==========================================================================
   FIXED HEADER BUTTON SHAPES
   ========================================================================== */
.main-header-menu > li:nth-last-child(2) > .menu-link,
.main-header-menu > li:last-child > .menu-link {
  line-height: 1 !important;
  height: auto !important;
  padding: 10px 24px !important;
  margin: 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  border-radius: var(--r-full) !important;
}
.main-header-menu > li:last-child > .menu-link {
  padding: 8px 16px !important;
}
.main-header-menu > li:nth-last-child(2),
.main-header-menu > li:last-child {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

/* Hover effect for clickable homepage property links */
.prop .det h3 a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
.prop .det h3 a:hover {
  color: var(--green) !important;
}
.prop-link-img {
  display: block !important;
  text-decoration: none !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}
.prop-link-img img {
  transition: transform 0.5s ease !important;
}
.prop:hover .prop-link-img img {
  transform: scale(1.05) !important;
}


/* ==========================================================================
   DYNAMIC INNER PAGE HERO STYLES
   ========================================================================== */
.inner-page-hero {
  position: relative !important;
  padding: 160px 0 90px !important;
  background: var(--gradient-hero) !important;
  text-align: center !important;
  color: #ffffff !important;
  overflow: hidden !important;
}
.inner-page-hero::before {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -20% !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(122, 182, 72, 0.15) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
.inner-page-hero::after {
  content: "" !important;
  position: absolute !important;
  bottom: -50% !important;
  right: -20% !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%) !important;
  pointer-events: none !important;
}
.inner-page-hero .hero-content-inner {
  position: relative !important;
  z-index: 2 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}
.inner-page-hero .hero-tag-glow {
  display: inline-block !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: var(--green) !important;
  background: rgba(122, 182, 72, 0.1) !important;
  border: 1px solid rgba(122, 182, 72, 0.2) !important;
  padding: 6px 16px !important;
  border-radius: 99px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 0 20px rgba(122, 182, 72, 0.15) !important;
}
.inner-page-hero .page-title {
  font-size: 3rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.2 !important;
}
.inner-page-hero .page-subtitle {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 24px !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.inner-page-hero .arma-breadcrumbs {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 8px 20px !important;
  border-radius: 99px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  direction: ltr !important;
}
html[lang="ar"] .inner-page-hero .arma-breadcrumbs {
  direction: rtl !important;
}
.inner-page-hero .arma-breadcrumbs a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
.inner-page-hero .arma-breadcrumbs a:hover {
  color: var(--green) !important;
}
.inner-page-hero .arma-breadcrumbs .sep {
  display: inline-flex !important;
  font-size: 0.75rem !important;
}
.inner-page-hero .arma-breadcrumbs .current {
  color: var(--green) !important;
  font-weight: 600 !important;
}

/* Hide existing gutenberg hero sections */
.about-hero-sec,
.srv-hero-sec,
.props-hero-sec,
.blog-hero-sec {
  display: none !important;
}


/* ==========================================================================
   PROPERTY SINGLE PAGE DETAILS LAYOUT
   ========================================================================== */
.prop-single-layout {
  padding: 60px 0 !important;
  background-color: #f8fafc !important;
}
.prop-single-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 40px !important;
}
.prop-main-column {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 30px !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.025) !important;
}
.prop-featured-image {
  margin-bottom: 30px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
.prop-featured-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.prop-description h2 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-bottom: 20px !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #f1f5f9 !important;
}
.prop-sidebar-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}
.prop-specs-card, .prop-contact-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.025) !important;
}
.prop-specs-card h3, .prop-contact-card h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--gray-900) !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.prop-specs-card h3 i, .prop-contact-card h3 i {
  color: var(--green) !important;
}
.prop-specs-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.prop-specs-list li {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.prop-specs-list li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.prop-specs-list .spec-icon {
  width: 40px !important;
  height: 40px !important;
  background-color: #f0fdf4 !important;
  color: var(--green) !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
}
.prop-specs-list .spec-info {
  display: flex !important;
  flex-direction: column !important;
}
.prop-specs-list .spec-label {
  font-size: 0.8rem !important;
  color: var(--gray-500) !important;
  font-weight: 500 !important;
}
.prop-specs-list .spec-value {
  font-size: 0.95rem !important;
  color: var(--gray-800) !important;
  font-weight: 600 !important;
}
.prop-contact-card .wpforms-container {
  margin: 0 !important;
}
@media (max-width: 991px) {
  .prop-single-grid {
    grid-template-columns: 1fr !important;
  }
  .prop-single-layout {
    padding: 30px 0 !important;
  }
}

/* Contact Page Social Icons Styling */
.contact-social-links {
  display: flex !important;
  gap: 12px !important;
  margin-top: 8px !important;
}
.contact-social-links .social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: var(--gray-100) !important;
  color: var(--gray-700) !important;
  font-size: 1.1rem !important;
  transition: var(--t) !important;
  text-decoration: none !important;
}
.contact-social-links .social-link:hover {
  background-color: var(--green) !important;
  color: var(--white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 12px rgba(122,182,72,0.3) !important;
}

/* ============================================
   Blog Post Share Buttons
   ============================================ */
.arma-share-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.arma-share-buttons .share-label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.arma-share-buttons .share-icons {
  display: flex;
  gap: 10px;
}
.arma-share-buttons .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.15rem;
  color: white;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.arma-share-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.share-btn.share-whatsapp { background: #25D366; }
.share-btn.share-twitter { background: #000; }
.share-btn.share-linkedin { background: #0A66C2; }

@media (max-width: 600px) {
  .arma-share-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================
   Legal Pages (Privacy, Terms) - Premium Redesign
   ============================================ */
.legal-page {
  max-width: 1140px !important;
  margin: 60px auto !important;
  padding: 48px 48px !important;
  background: #ffffff !important;
  border-radius: var(--r-md) !important;
  border: 1px solid var(--gray-200) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
}
@media (max-width: 768px) {
  .legal-page {
    padding: 32px 20px !important;
    margin: 40px 16px !important;
  }
}
.legal-page h2 {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-bottom: 32px !important;
  text-align: start !important;
  position: relative !important;
  padding-bottom: 16px !important;
}
.legal-page h2::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  inset-inline-start: 0 !important;
  transform: none !important;
  width: 80px !important;
  height: 4px !important;
  background: var(--gradient-green) !important;
  border-radius: 2px !important;
}
.legal-page h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  padding-inline-start: 16px !important;
  border-inline-start: 4px solid var(--green) !important;
}
.legal-page p {
  font-size: 1rem !important;
  color: var(--gray-600) !important;
  line-height: 1.85 !important;
  margin-bottom: 20px !important;
}
.legal-page ul {
  padding-inline-start: 24px !important;
  margin-bottom: 24px !important;
  list-style: none !important;
}
.legal-page li {
  font-size: 1rem !important;
  color: var(--gray-600) !important;
  line-height: 1.8 !important;
  margin-bottom: 12px !important;
  position: relative !important;
  padding-inline-start: 24px !important;
}
.legal-page li::before {
  content: "\f058" !important; /* fa-circle-check */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  inset-inline-start: 0 !important;
  top: 4px !important;
  color: var(--green) !important;
  font-size: 0.95rem !important;
}
.legal-update-date {
  margin-top: 48px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--gray-200) !important;
  color: var(--gray-400) !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  text-align: center !important;
}

/* ============================================
   Services/Property Management Page (Premium)
   ============================================ */
.services-page {
  max-width: 1140px;
  margin: 60px auto !important;
  padding: 0 20px;
}
.services-page .section-title {
  display: none !important; /* Hide redundant title as it is in inner page hero */
}
.services-page .section-subtitle {
  font-size: 1.4rem !important;
  color: var(--green-dark) !important;
  font-weight: 800 !important;
  text-align: start !important;
  margin-bottom: 20px !important;
  position: relative;
  display: inline-block;
}
.services-page .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  inset-inline-start: 0;
  width: 60px;
  height: 3.5px;
  background: var(--gradient-green);
  border-radius: 2px;
}
.services-page > p {
  text-align: start !important;
  font-size: 1.05rem !important;
  color: var(--gray-600) !important;
  max-width: 800px !important;
  margin: 24px 0 48px 0 !important;
  line-height: 1.8;
}
.services-page h3 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-top: 48px !important;
  margin-bottom: 24px !important;
  padding-inline-start: 36px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}
.services-page h3::before {
  content: "\f0b1" !important; /* Default Briefcase Icon */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  inset-inline-start: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--green) !important;
  font-size: 1.25rem !important;
}
.services-page h3:nth-of-type(1)::before { content: "\f53f" !important; } /* fa-building-user */
.services-page h3:nth-of-type(2)::before { content: "\f0ad" !important; } /* fa-wrench */
.services-page h3:nth-of-type(3)::before { content: "\f201" !important; } /* fa-chart-line */
.services-page h3:nth-of-type(4)::before { content: "\f085" !important; } /* fa-gears */
.services-page h3:nth-of-type(5)::before { content: "\f0c9" !important; } /* fa-list */

.services-page ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 40px 0 !important;
}
.services-page li {
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--r-sm) !important;
  padding: 20px 24px !important;
  padding-inline-start: 48px !important;
  font-size: 0.92rem !important;
  color: var(--gray-700) !important;
  position: relative !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: var(--t) !important;
  display: flex !important;
  align-items: center !important;
  line-height: 1.6 !important;
}
.services-page li:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--green-light) !important;
  background: var(--green-bg) !important;
}
.services-page li::before {
  content: "\f00c" !important; /* fa-check */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  inset-inline-start: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--green) !important;
  font-size: 1rem !important;
}
@media(max-width:768px) {
  .services-page ul {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   Redesigned Premium Contact Page (Two Columns)
   ============================================ */
.contact-page-wrapper {
  max-width: 1140px;
  margin: 60px auto !important;
  padding: 0 20px;
}
.contact-two-columns {
  gap: 40px !important;
  margin-bottom: 60px !important;
}

/* Sidebar Info Column */
.contact-sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Info Item Cards (Glassmorphism on lightbg) */
.contact-sidebar-info .info-item {
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  gap: 20px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
  transition: var(--t) !important;
  display: flex !important;
  align-items: center !important;
}
.contact-sidebar-info .info-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(122, 182, 72, 0.1) !important;
  border-color: var(--green-light) !important;
  background: var(--green-bg) !important;
}

/* Rounded Icon Badge inside Cards */
.contact-sidebar-info .info-item .icon {
  width: 52px;
  height: 52px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin: 0 !important;
  transition: var(--t);
  border: 1px solid rgba(122, 182, 72, 0.15);
}
.contact-sidebar-info .info-item:hover .icon {
  background: var(--green);
  color: #ffffff;
  transform: scale(1.1);
  border-color: var(--green);
}

.contact-sidebar-info .info-item h4 {
  font-size: 0.85rem !important;
  color: var(--gray-400) !important;
  font-weight: 600 !important;
  margin: 0 0 6px 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-sidebar-info .info-item p {
  color: var(--gray-800) !important;
  font-weight: 700 !important;
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

/* Custom layout for Social Links Card in sidebar */
.contact-sidebar-info .info-item-social {
  padding-bottom: 20px !important;
}
.contact-sidebar-info .info-item-social .contact-social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-sidebar-info .info-item-social .social-link {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--t);
  text-decoration: none;
}
.contact-sidebar-info .info-item-social .social-link:hover {
  background: var(--green);
  color: #ffffff;
  transform: scale(1.1);
}

/* Form Container Card */
.form-container-premium {
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
  position: relative;
  overflow: hidden;
}
.form-container-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-green);
}
.form-container-premium .form-title {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  text-align: start !important;
}
.form-container-premium .form-desc {
  font-size: 0.95rem !important;
  color: var(--gray-500) !important;
  margin-bottom: 30px !important;
  text-align: start !important;
  line-height: 1.6 !important;
}

/* Remove old wrapper styling since it is nested now */
.form-container-premium .consultation-form-wrapper {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.map-wrapper iframe {
  width: 100%;
  min-height: 400px;
  display: block;
  border: 0;
}

/* Map Section Premium */
.map-section-premium {
  margin-top: 40px;
}
.map-section-premium .map-title-premium {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-bottom: 24px !important;
  position: relative;
  display: inline-block;
}
.map-section-premium .map-title-premium::after {
  content: '';
  position: absolute;
  bottom: -6px;
  inset-inline-start: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-green);
  border-radius: 2px;
}

/* Media Queries for Responsiveness */
@media (max-width: 900px) {
  .contact-two-columns {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .contact-sidebar-col,
  .contact-form-col {
    flex-basis: 100% !important;
    width: 100% !important;
  }
  .form-container-premium {
    padding: 30px 20px !important;
  }
}

/* ============================================
   Consultation Form Fields & Styling
   ============================================ */
.arma-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.arma-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.arma-form-group.full-width {
  flex: none;
  width: 100%;
}
.arma-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.arma-form-group label .required {
  color: #ef4444;
  margin-inline-start: 4px;
}
.arma-form-group input,
.arma-form-group select,
.arma-form-group textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 14px;
  background: #ffffff;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}
.arma-form-group input:focus,
.arma-form-group select:focus,
.arma-form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122,182,72,0.15);
  outline: none;
}
.arma-form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.arma-form-submit {
  text-align: center;
  margin-top: 10px;
}
.arma-form-submit input[type="submit"] {
  background: var(--green) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 12px rgba(122,182,72,0.2) !important;
}
.arma-form-submit input[type="submit"]:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(122,182,72,0.3) !important;
}

@media (max-width: 768px) {
  .arma-form-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* ============================================
   About Us Page (Premium Redesign)
   ============================================ */
.about-hero {
  display: none !important;
}
.about-section {
  max-width: 1140px;
  margin: 80px auto !important;
  padding: 0 20px;
}
.about-section h2 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-bottom: 28px !important;
  position: relative;
  display: inline-block;
}
.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  inset-inline-start: 0;
  width: 60px;
  height: 3.5px;
  background: var(--gradient-green);
  border-radius: 2px;
}
.about-section p {
  font-size: 1.05rem !important;
  color: var(--gray-600) !important;
  line-height: 1.85 !important;
  margin-bottom: 24px !important;
  text-align: start !important;
}

/* Vision Highlight block */
.about-section--vision {
  background: linear-gradient(135deg, var(--green-bg) 0%, #f0fdf4 100%);
  border: 1px solid rgba(122,182,72,0.15);
  border-radius: var(--r-md);
  padding: 48px 40px !important;
  box-shadow: 0 10px 30px rgba(122,182,72,0.03);
}
@media (max-width: 768px) {
  .about-section--vision {
    padding: 32px 24px !important;
  }
}

/* Experience Cards Grid */
.about-section--experience ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 0 0 !important;
}
.about-section--experience li {
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--r-sm) !important;
  padding: 24px !important;
  padding-top: 48px !important;
  position: relative !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: var(--t) !important;
  font-size: 0.95rem !important;
  color: var(--gray-700) !important;
  line-height: 1.7 !important;
}
.about-section--experience li:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--green-light) !important;
}
.about-section--experience li::before {
  content: "\f19c" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  top: 20px !important;
  inset-inline-start: 24px !important;
  color: var(--green) !important;
  font-size: 1.25rem !important;
}
.about-section--experience li:nth-child(1)::before { content: "\f53f" !important; } /* fa-building-user */
.about-section--experience li:nth-child(2)::before { content: "\f4ff" !important; } /* fa-user-tie */
.about-section--experience li:nth-child(3)::before { content: "\f0c9" !important; } /* fa-bars */

.about-section--experience li strong {
  display: block !important;
  font-size: 1.1rem !important;
  color: var(--gray-900) !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

/* Why ARMA Grid Counter cards */
.about-section--why-arma ol.about-numbered-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 0 0 !important;
  counter-reset: why-counter;
}
@media (max-width: 900px) {
  .about-section--why-arma ol.about-numbered-list {
    grid-template-columns: 1fr !important;
  }
}
.about-section--why-arma ol.about-numbered-list li {
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--r-sm) !important;
  padding: 24px !important;
  padding-inline-start: 80px !important;
  position: relative !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: var(--t) !important;
  font-size: 0.95rem !important;
  color: var(--gray-700) !important;
  line-height: 1.7 !important;
  counter-increment: why-counter;
}
.about-section--why-arma ol.about-numbered-list li:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--green-light) !important;
}
.about-section--why-arma ol.about-numbered-list li::before {
  content: counter(why-counter, decimal-leading-zero) !important;
  position: absolute !important;
  inset-inline-start: 24px !important;
  top: 24px !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: rgba(122,182,72,0.15) !important;
  font-family: var(--font-primary) !important;
  line-height: 1 !important;
  transition: var(--t) !important;
}
.about-section--why-arma ol.about-numbered-list li:hover::before {
  color: var(--green) !important;
}
.about-section--why-arma ol.about-numbered-list li strong {
  display: block !important;
  font-size: 1.1rem !important;
  color: var(--gray-900) !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

/* Digital Ecosystem Cards */
.about-section--digital ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 0 0 !important;
}
.about-section--digital li {
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--r-sm) !important;
  padding: 24px !important;
  padding-top: 56px !important;
  position: relative !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: var(--t) !important;
  font-size: 0.92rem !important;
  color: var(--gray-700) !important;
  line-height: 1.65 !important;
}
.about-section--digital li:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--green-light) !important;
}
.about-section--digital li::before {
  content: "\f0ac" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  position: absolute !important;
  top: 20px !important;
  inset-inline-start: 24px !important;
  color: var(--green) !important;
  font-size: 1.25rem !important;
}
.about-section--digital li:nth-child(1)::before { content: "\f53c" !important; } /* fa-gavel */
.about-section--digital li:nth-child(2)::before { content: "\f56c" !important; } /* fa-file-signature */
.about-section--digital li:nth-child(3)::before { content: "\f0ac" !important; } /* fa-globe */
.about-section--digital li:nth-child(4)::before { content: "\f201" !important; } /* fa-chart-line */

.about-section--digital li strong {
  display: block !important;
  font-size: 1.05rem !important;
  color: var(--gray-900) !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

/* About Values Columns */
.about-values-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin: 32px 0 0 0 !important;
}
.about-value-item {
  flex: 1 1 180px !important;
  background: #ffffff !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--r-sm) !important;
  padding: 32px 20px !important;
  text-align: center !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: var(--t) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
.about-value-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--green-light) !important;
  background: var(--green-bg) !important;
}
.about-value-item h3 {
  margin: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--gray-900) !important;
}
.about-value-item::before {
  content: "\f05d" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: var(--green) !important;
  font-size: 1.75rem !important;
  margin-bottom: 16px !important;
  display: inline-block !important;
}
.about-value-item:nth-child(1)::before { content: "\f505" !important; } /* fa-shield-halved */
.about-value-item:nth-child(2)::before { content: "\f0a3" !important; } /* fa-certificate */
.about-value-item:nth-child(3)::before { content: "\f560" !important; } /* fa-hands-holding */
.about-value-item:nth-child(4)::before { content: "\f017" !important; } /* fa-clock */
.about-value-item:nth-child(5)::before { content: "\f540" !important; } /* fa-handshake */

/* ============================================
   FAQ Accordion Styling
   ============================================ */
.wp-block-rank-math-faq-block,
.rank-math-block {
  max-width: 1140px;
  margin: 60px auto !important;
  padding: 0 20px;
}
.wp-block-rank-math-faq-block,
.rank-math-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rank-math-faq-item,
.rank-math-list-item {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: var(--t);
  overflow: hidden;
}
.rank-math-faq-item:hover,
.rank-math-list-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}
.rank-math-faq-item.active,
.rank-math-list-item.active {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(122,182,72,0.08);
  background: var(--green-bg);
}
.rank-math-question {
  margin: 0 !important;
  padding: 24px !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--gray-900) !important;
  cursor: pointer;
  position: relative;
  padding-inline-end: 60px !important;
  user-select: none;
  display: flex;
  align-items: center;
}
.rank-math-question::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-end: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  transition: var(--t);
  font-size: 1rem;
}
.rank-math-faq-item.active .rank-math-question::after,
.rank-math-list-item.active .rank-math-question::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--green);
}
.rank-math-answer {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1rem;
  border-top: 1px solid transparent;
  transition: var(--t);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.rank-math-faq-item.active .rank-math-answer,
.rank-math-list-item.active .rank-math-answer {
  border-top-color: rgba(122,182,72,0.15);
}

/* ============================================
   Managed Properties Archive Page (Premium)
   ============================================ */
.prop-archive-layout {
  background: var(--gray-50);
  padding: 60px 0;
  min-height: 70vh;
}
.prop-archive-content-wrapper {
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}
.prop-archive-content-wrapper .page-header {
  margin-bottom: 48px !important;
  text-align: start !important;
}
.prop-archive-content-wrapper .page-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--gray-900) !important;
  margin-bottom: 12px !important;
  position: relative !important;
  display: inline-block !important;
}
.prop-archive-content-wrapper .page-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: -6px;
  inset-inline-start: 0 !important;
  width: 60px !important;
  height: 4px !important;
  background: var(--gradient-green) !important;
  border-radius: 2px !important;
}
.prop-archive-content-wrapper .archive-description {
  font-size: 1.1rem !important;
  color: var(--gray-600) !important;
  max-width: 700px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}
.prop-pagination-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.prop-pagination-wrapper .nav-links,
.prop-pagination-wrapper .pagination {
  display: flex;
  gap: 8px;
}
.prop-pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
}
.prop-pagination-wrapper .page-numbers:hover,
.prop-pagination-wrapper .page-numbers.current {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}
.prop-empty-message {
  font-size: 1.2rem;
  color: var(--gray-500);
  padding: 80px 0;
}

/* INNER PAGE CONTAINMENT OVERRIDES */
.wp-block-group.services-page,
.wp-block-group.about-section,
.wp-block-group.legal-page {
  max-width: 1140px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


.agent-avatar-badge {
	    position: absolute !important;
	    bottom: -10px !important;
	    inset-inline-end: -10px !important;
	    background: var(--green) !important;
	    color: #ffffff !important;
	    width: 28px !important;
	    height: 28px !important;
	    border-radius: 50% !important;
	    display: flex !important;
	    align-items: center !important;
	    justify-content: center !important;
	    font-size: 14px !important;
	    border: 2px solid #ffffff !important;
	    box-shadow: var(--shadow) !important;
	    z-index: 2 !important;
}

.agent-avatar-badge i {
	    font-size: 12px !important;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES & REFINEMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .inner-page-hero {
    padding: 120px 0 60px !important;
  }
  .inner-page-hero .page-title {
    font-size: 2rem !important;
  }
  .inner-page-hero .page-subtitle {
    font-size: 0.95rem !important;
    padding: 0 15px;
  }
}

@media (max-width: 640px) {
  /* Hero Image and Badge refinements on mobile */
  .hero-main-img img {
    height: 300px !important;
  }
  .float-badge {
    padding: 10px 14px !important;
    gap: 8px !important;
  }
  .float-badge .fb-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }
  .float-badge h4 {
    font-size: 0.78rem !important;
  }
  .float-badge small {
    font-size: 0.68rem !important;
  }
  .float-badge-1 {
    bottom: 20px !important;
    right: 10px !important;
  }
  .float-badge-2 {
    top: 20px !important;
    left: 10px !important;
  }
  
  /* general section spacing */
  .section {
    padding: 40px 0 !important;
  }
}

/* ============================================
   Properties Page Filter Form (Premium)
   ============================================ */
.arma-filter-form {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.arma-filter-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green, var(--green));
}

.arma-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.arma-filter-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.arma-filter-group.search-group {
  flex: 2 1 300px;
}

.arma-filter-group.buttons-group {
  flex: 0 1 auto;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

/* Input & Select Wrappers with Icons */
.arma-input-icon-wrapper,
.arma-select-wrapper {
  position: relative;
  width: 100%;
}

.arma-input-icon-wrapper .input-icon,
.arma-select-wrapper .select-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--t);
  z-index: 2;
}

/* RTL / LTR logical spacing for icons */
html[dir="rtl"] .arma-input-icon-wrapper .input-icon,
html[dir="rtl"] .arma-select-wrapper .select-icon {
  right: 14px;
  left: auto;
}
html[dir="ltr"] .arma-input-icon-wrapper .input-icon,
html[dir="ltr"] .arma-select-wrapper .select-icon {
  left: 14px;
  right: auto;
}

html[dir="rtl"] .arma-filter-input {
  padding: 12px 40px 12px 16px;
}
html[dir="ltr"] .arma-filter-input {
  padding: 12px 16px 12px 40px;
}

html[dir="rtl"] .arma-filter-select {
  padding: 12px 40px 12px 30px;
}
html[dir="ltr"] .arma-filter-select {
  padding: 12px 30px 12px 40px;
}

.arma-filter-input,
.arma-filter-select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: var(--t);
  outline: none;
  box-sizing: border-box;
  height: 48px;
}

/* Dropdown arrow wrapper styling */
.arma-filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.arma-select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.85rem;
  pointer-events: none;
  transition: var(--t);
  z-index: 1;
}
html[dir="rtl"] .arma-select-wrapper::after {
  left: 14px;
  right: auto;
}
html[dir="ltr"] .arma-select-wrapper::after {
  right: 14px;
  left: auto;
}

.arma-filter-input:focus,
.arma-filter-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122,182,72,0.12);
}

.arma-filter-input:focus + .input-icon,
.arma-filter-select:focus + .select-icon,
.arma-select-wrapper:focus-within::after {
  color: var(--green);
}

/* Button styles */
.arma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  line-height: 1.5;
  box-sizing: border-box;
  height: 48px; /* Match height of input and select */
}

.arma-btn-filter {
  background: var(--green) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(122,182,72,0.15);
}

.arma-btn-filter:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122,182,72,0.25);
  color: #ffffff !important;
}

.arma-btn-reset {
  background: var(--gray-100) !important;
  color: var(--gray-700) !important;
  border: 1px solid var(--gray-200) !important;
}

.arma-btn-reset:hover {
  background: var(--gray-200) !important;
  color: var(--gray-900) !important;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .arma-filter-group.search-group {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .arma-filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .arma-filter-group {
    flex: 1 1 auto;
  }
  .arma-filter-group.buttons-group {
    margin-top: 8px;
  }
  .arma-btn {
    flex: 1;
    width: 100%;
  }
}

