* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --oa-gold: #b3914a;
  --oa-dark: #2f3846;
  --oa-bg-light: #f7f8fa;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
  color: #333;
}

/* =========================
   PREMIUM LIGHT NAVBAR
========================= */

.lux-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo img {
  height: 46px;
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 34px;
}

.nav-menu a {
  color: #b3914a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

/* ACTIVE + HOVER */
.nav-menu a.active,
.nav-menu a:hover {
  color: #b3914a;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2f3846;
  transition: 0.3s ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

/* ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* CONTACT BUTTON */
.contact-btn {
  padding: 9px 18px;
  border-radius: 50px;
  background: #2f3846;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #1f2631;
}

/* CALL BUTTON */
.call-btn {
  padding: 9px 18px;
  border-radius: 50px;
  background: transparent;
  border: 1.5px solid #b3914a;
  color: #b3914a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: #b3914a;
  color: #ffffff;
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #b3914a;
  cursor: pointer;
}

.menu-toggle:hover {
  color: #2f3846;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 26px;
    display: none;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.desktop-only {
  display: flex;
  gap: 14px;
}

.mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    font-weight: 600;
    color: #b3914a;
  }

  .nav-menu a.mobile-only {
    padding-top: 14px;
    border-top: 1px solid #eee;
  }

  .menu-toggle {
    display: block;
    font-size: 22px;
    color: #b3914a;
    cursor: pointer;
  }
}

/* =========================
   MOBILE SIDEBAR
========================= */

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #b3914a;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.mobile-sidebar.active {
  right: 0;
}

/* HEADER */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #b3914a;
  margin-bottom: 24px;
}

.sidebar-header span {
  font-size: 22px;
}

.sidebar-header i {
  font-size: 22px;
  cursor: pointer;
}

/* MENU */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #b3914a;
  font-weight: 500;
}

.sidebar-menu a.active {
  color: #2f3846;
}

/* ACTION BUTTONS */
.sidebar-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-contact {
  background: #2f3846;
  color: #fff;
  padding: 12px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.sidebar-call {
  background: transparent;
  border: 1.5px solid #b3914a;
  color: #b3914a;
  padding: 12px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   MOBILE ONLY
========================= */

@media (max-width: 900px) {
  .desktop-menu,
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("/images/hero-img.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(47, 56, 70, 0.85),
    /* #2F3846 */ rgba(179, 145, 74, 0.35) /* #B3914A */
  );
  /* background: linear-gradient(
  90deg,
  rgba(47, 56, 70, 0.9),
  rgba(179, 145, 74, 0.25)
);

background: linear-gradient(
  90deg,
  rgba(47, 56, 70, 0.75),
  rgba(179, 145, 74, 0.2)
); */
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-subtext {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #e6e6e6;
}

/* FORM CARD */
.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-form-card h3 {
  font-size: 24px;
  color: #b3914a;
  margin-bottom: 10px;
}

.hero-form-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

/* FORM */
.hero-form .form-group {
  margin-bottom: 16px;
}

.hero-form label {
  font-size: 13px;
  font-weight: 600;
  color: #b3914a;
  display: block;
  margin-bottom: 6px;
}

.hero-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.hero-form input:focus {
  border-color: #2f3846;
}

/* SUBMIT BUTTON */
.hero-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: #2f3846;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-submit-btn:hover {
  background: #1f2631;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-form-card {
    padding: 28px;
  }
}

/* =========================
   WANT TO BUY – PREMIUM
========================= */

.buy-section.premium {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  padding: 120px 20px;
}

.buy-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* EYEBROW TEXT */
.buy-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2f3846;
  margin-bottom: 14px;
}

/* HEADING */
.buy-content h2 {
  font-size: 46px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 22px;
}

.buy-content h2 span {
  color: #2f3846;
}

/* DIVIDER */
.buy-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #2f3846,
    rgba(179, 145, 74, 0.3) /* #B3914A */
  );

  margin-bottom: 30px;
}

/* TEXT */
.buy-content p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 42px;
}

/* ACTIONS */
.buy-actions {
  display: flex;
  gap: 18px;
}

/* BUTTONS */
.buy-btn {
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PRIMARY CTA */
.buy-btn.primary {
  background: #2f3846;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(179, 145, 74, 0.35);
}

.buy-btn.primary:hover {
  background: #1f2631;
  transform: translateY(-2px);
}

/* SECONDARY CTA */
.buy-btn.outline {
  border: 1.5px solid #b3914a;
  color: #b3914a;
  background: transparent;
}

.buy-btn.outline:hover {
  background: #b3914a;
  color: #ffffff;
}

/* IMAGE CARD */
.buy-image {
  position: relative;
}

.buy-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  transition: transform 0.45s ease;
}

.buy-image img:hover {
  transform: scale(1.035);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .buy-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .buy-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .buy-section.premium {
    padding: 90px 20px;
  }

  .buy-content h2 {
    font-size: 32px;
  }

  .buy-content p {
    font-size: 15px;
  }

  .buy-actions {
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  background: #ffffff;
  padding: 120px 20px;
}

.services-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 18px;
}

.services-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  background: #f7f9fd;
  padding: 48px 36px;
  border-radius: 22px;
  text-align: center;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(4, 31, 96, 0.15);
}

/* FEATURED */
.service-card.featured {
  background: #b3914a;
}

.service-card.featured h3,
.service-card.featured p {
  color: #ffffff;
}

/* ICON */
.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.featured .service-icon {
  background: #2f3846;
}

.service-icon i {
  font-size: 36px;
  color: #b3914a;
}

.service-card.featured .service-icon i {
  color: #ffffff;
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #b3914a;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 90px 20px;
  }

  .services-header h2 {
    font-size: 30px;
  }

  .service-card {
    padding: 38px 28px;
  }
}

/* =========================
   LEADERSHIP TEAM – DARK
========================= */

.team-section.dark {
  background: linear-gradient(180deg, #b3914a 0%, #2f3846 100%);

  padding: 140px 20px;
}

.team-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.team-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 100px;
}

.team-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2f3846;
  margin-bottom: 14px;
}

.team-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.team-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfd6ea;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

/* CARD */
.team-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.6);
}

/* FEATURED CARD */
.team-card.featured {
  border: 2px solid rgba(179, 145, 74, 0.45); /* #B3914A */

  transform: translateY(-14px);
}

/* IMAGE */
.team-image {
  background: rgba(255, 255, 255, 0.04);
}
.team-image {
  padding: 26px; /* reduced padding */
}

.team-image {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: center;
}

.team-image img {
  width: 100%;
  max-width: 240px;
  height: 320px; /* fixed portrait height */
  object-fit: cover; /* crop properly */
  object-position: center top; /* focus on face */
  border-radius: 14px;
  background: #ffffff;
}

.team-image img {
  box-shadow: inset 0 0 0 999px rgba(4, 31, 96, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.team-image img {
  filter: grayscale(20%) contrast(1.05);
  transition: all 0.4s ease;
}

.team-card:hover .team-image img {
  filter: grayscale(0%) contrast(1.1);
}

.team-card.featured .team-image img {
  max-width: 260px;
  height: 340px;
}

/* INFO */
.team-info {
  padding: 38px 34px 46px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.team-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2f3846;
  margin-bottom: 20px;
}

.team-info p {
  font-size: 15px;
  line-height: 1.9;
  color: #d6dcef;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .team-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .team-section.dark {
    padding: 100px 20px;
  }

  .team-header h2 {
    font-size: 30px;
  }

  .team-info {
    padding: 30px 26px 38px;
  }
}

/* =========================
   WANT TO RENT – LUXURY
========================= */

.rent-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  padding: 130px 20px;
}

.rent-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

/* IMAGE */
.rent-image {
  position: relative;
}

.rent-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transition: transform 0.45s ease;
}

.rent-image img:hover {
  transform: scale(1.035);
}

/* CONTENT */
.rent-content {
  padding: 50px 46px;
  border-radius: 22px;
}

.rent-content {
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(4, 31, 96, 0.12);
}

/* EYEBROW */
.rent-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2f3846;
  margin-bottom: 14px;
}

/* HEADING */
.rent-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
}

.rent-content h2 span {
  color: #2f3846;
}

.rent-content h2 {
  color: #b3914a;
}

.rent-content p {
  color: #555;
}

/* DIVIDER */
.rent-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #2f3846,
    rgba(179, 145, 74, 0.35) /* #B3914A */
  );

  margin-bottom: 28px;
}

/* TEXT */
.rent-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 38px;
}

/* BUTTON */
.rent-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  background: #2f3846;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.rent-btn:hover {
  background: #1f2631;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .rent-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rent-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .rent-section {
    padding: 90px 20px;
  }

  .rent-content {
    padding: 36px 30px;
  }

  .rent-content h2 {
    font-size: 32px;
  }

  .rent-content p {
    font-size: 15px;
  }
}

.rent-content h2 span,
.rent-eyebrow,
.rent-divider {
  color: #2f3846;
}

.rent-image img {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

/* =========================
   AREAS SECTION
========================= */

.areas-section {
  background: #ffffff;
  padding: 130px 20px;
}

.areas-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.areas-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px;
}

.areas-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 18px;
}

.areas-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* GRID */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 28px;
}

/* CARD */
.area-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.area-card.tall {
  grid-row: span 2;
}

/* IMAGE */
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(47, 56, 70, 0) 40%,
    /* #2F3846 */ rgba(47, 56, 70, 0.65)
  );

  transition: opacity 0.4s ease;
}

/* LABEL */
.area-card span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  z-index: 2;
}

/* HOVER */
.area-card:hover img {
  transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 600px) {
  .areas-section {
    padding: 90px 20px;
  }

  .areas-header h2 {
    font-size: 30px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .area-card.tall {
    grid-row: span 1;
  }
}

/* =========================
   AGENTS SECTION
========================= */

.agents-section {
  background: #ffffff;
  padding: 130px 20px;
}

.agents-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.agents-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.agents-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 16px;
}

.agents-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* SLIDER */
.agents-slider {
  padding-bottom: 70px;
}

/* CARD */
.agent-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(47, 56, 70, 0.12); /* #2F3846 */

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(47, 56, 70, 0.18); /* #2F3846 */
}

/* IMAGE */
.agent-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* TEXT */
.agent-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #b3914a;
  margin-bottom: 6px;
}

.agent-card span {
  display: block;
  font-size: 13px;
  color: #2f3846;
  margin-bottom: 14px;
}

.agent-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* LINK */
.agent-card a {
  font-size: 14px;
  font-weight: 600;
  color: #2f3846;
  text-decoration: none;
}

.agent-card a:hover {
  text-decoration: underline;
}

/* CONTROLS */
.swiper-button-next,
.swiper-button-prev {
  color: #b3914a;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #2f3846;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .agents-header h2 {
    font-size: 32px;
  }
}

/* WATERMARK LOGO ON AGENT CARD */
.agent-card {
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: url("../images/OmerAbdullaFavT.png") no-repeat center;
  background-size: contain;
  /* opacity: 0.08; */
  opacity: 0.15;
  pointer-events: none;
}

.agent-card:hover::before {
  opacity: 0.5;
}

/* =========================
   FINAL CTA – EXPERT
========================= */

.cta-expert {
  position: relative;
  background: url("../images/agent-bg.jpg") center/cover no-repeat;
  padding: 140px 20px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(47, 56, 70, 0.75),
    /* #2F3846 */ rgba(47, 56, 70, 0.45)
  );
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 760px;
  margin-left: 8%;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #e6e6e6;
  margin-bottom: 40px;
  max-width: 620px;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */
.cta-btn {
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.cta-btn.primary {
  background: #2f3846;
  color: #ffffff;
}

.cta-btn.primary:hover {
  background: #1f2631;
  transform: translateY(-2px);
}

.cta-btn.outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .cta-content {
    margin-left: 0;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .cta-expert {
    padding: 100px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }
}

/* =========================
   LUXURY FOOTER
========================= */

.lux-footer {
  background: #b3914a;
  color: #dcdcdc;
  padding-top: 80px;
}

/* GRID */
.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* ABOUT */
.footer-col.about img {
  height: 60px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.footer-col.about p {
  font-size: 14px;
  line-height: 1.8;
  color: #cfcfcf;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #dcdcdc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #2f3846;
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact i {
  color: #2f3846;
  margin-top: 3px;
}

/* MAP */
.footer-col.map iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 14px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

.footer-bottom p {
  font-size: 13px;
  color: #cfcfcf;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #2f3846;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

.footer-credit {
  font-size: 13px;
  color: #cfcfcf;
}

.footer-credit a {
  color: #2f3846;
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* =========================
   INNER HERO – ABOUT US
========================= */

.inner-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/areaB.jpg") center/cover no-repeat;
}

/* OVERLAY */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(47, 56, 70, 0.75),
    /* #2F3846 */ rgba(47, 56, 70, 0.45)
  );
}

/* CONTENT */
.inner-hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.inner-hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.inner-hero-content p {
  font-size: 16px;
  color: #e6e6e6;
  letter-spacing: 0.4px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .inner-hero {
    height: 240px;
  }

  .inner-hero-content h1 {
    font-size: 32px;
  }

  .inner-hero-content p {
    font-size: 14px;
  }
}

/* =========================
   ABOUT MAIN SECTION
========================= */

.about-main {
  background: #ffffff;
  padding: 120px 20px;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* EYEBROW */
.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2f3846;
  margin-bottom: 14px;
}

/* CONTENT */
.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

/* =========================
   MISSION & VISION
========================= */

.mv-container {
  max-width: 1400px;
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.mv-card {
  background: #f8f9fc;
  padding: 50px 40px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(47, 56, 70, 0.12); /* #2F3846 */

  transition: transform 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-card img {
  width: 60px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #b3914a;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mv-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-main {
    padding: 90px 20px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

/* =========================
   MISSION & VISION – ICON
========================= */

.mv-container {
  max-width: 1400px;
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* CARD */
.mv-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  padding: 60px 50px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(4, 31, 96, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(4, 31, 96, 0.18);
}

/* ICON */
.mv-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(179, 145, 74, 0.12); /* #B3914A */

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}

.mv-icon i {
  font-size: 30px;
  color: #2f3846;
}

/* TITLE */
.mv-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #b3914a;
  margin-bottom: 18px;
}

/* TEXT */
.mv-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-card {
    padding: 50px 36px;
  }
}

/* =========================
   SHARJAH MAP – PREMIUM
========================= */

.sharjah-map-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 120px 24px;
}

.map-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* CONTENT CARD */
.premium-card {
  background: #ffffff;
  padding: 60px 52px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(47, 56, 70, 0.12); /* #2F3846 */
}

/* EYEBROW */
.map-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2f3846;
  margin-bottom: 14px;
}

/* HEADING */
.map-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 20px;
}

/* TEXT */
.map-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

/* LIST */
.map-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 14px;
}

.map-points i {
  color: #2f3846;
  font-size: 14px;
}

/* MAP */
.premium-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .premium-card {
    padding: 50px 40px;
  }

  .map-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .sharjah-map-section {
    padding: 90px 20px;
  }

  .map-content h3 {
    font-size: 28px;
  }

  .premium-map iframe {
    height: 300px;
  }
}

/* =========================
   COMPACT AGENTS – PREMIUM
========================= */

.agents-compact {
  padding: 90px 24px;
  background: #ffffff;
}

.agents-wrap {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.agents-header {
  max-width: 650px;
  margin-bottom: 50px;
}

.agents-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 10px;
}

.agents-header p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* MINI CARD */
.agent-mini {
  display: flex;
  align-items: flex-start;
  /* align-items: center; */
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef0f5;
  box-shadow: 0 10px 30px rgba(47, 56, 70, 0.06); /* #2F3846 */

  transition: all 0.3s ease;
}

.agent-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(47, 56, 70, 0.14); /* #2F3846 */
}

/* IMAGE */
/* .agent-mini img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1f3f8;
} */

/* IMAGE – FORCE PERFECT CIRCLE */
.agent-mini img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid #f1f3f8;

  /* 🔥 CRITICAL FIX */
  aspect-ratio: 1 / 1;
  clip-path: circle(50% at 50% 50%);
}

.agent-mini img {
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
}

/* INFO */
.agent-mini-info h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: #b3914a;
  margin-bottom: 4px;
}

.agent-lang {
  display: inline-flex;
  align-items: baseline;
  /* align-items: center; */
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: #2f3846;
  margin-bottom: 4px;
}

.agent-mini-info p {
  font-size: 12.8px;
  color: #666;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .agents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .agents-grid {
    grid-template-columns: 1fr;
  }

  .agent-mini {
    padding: 14px;
  }
}

/* =========================
   CONTACT PAGE – PREMIUM
========================= */

.contact-hero {
  position: relative;
  background: url("/images/areaB.jpg") center/cover no-repeat;
  padding: 140px 24px;
  color: #fff;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(47, 56, 70, 0.92),
    /* #2F3846 */ rgba(47, 56, 70, 0.75)
  );
}

.contact-container {
  position: relative;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  z-index: 2;
}

/* LEFT */
.contact-eyebrow {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2f3846;
  font-weight: 600;
}

.contact-info h1 {
  font-size: 44px;
  margin: 14px 0 18px;
  font-weight: 700;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #e4e8f3;
  max-width: 520px;
}

.contact-details {
  margin-top: 30px;
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #f1f3f9;
}

.contact-details i {
  color: #b3914a;
  font-size: 18px;
  margin-top: 3px;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
}

/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.contact-form-card h3 {
  font-size: 22px;
  color: #b3914a;
  margin-bottom: 22px;
}

/* FORM */
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #dfe3ec;
  font-size: 14px;
  outline: none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #2f3846;
}

.contact-form-card button {
  margin-top: 10px;
  padding: 14px;
  background: #2f3846;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-card button:hover {
  background: #1f2631;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h1 {
    font-size: 36px;
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 30px 24px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float a {
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

a {
  text-decoration: none;
}

.trust-badges {
  margin-top: 26px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fc;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: #b3914a;
}

.trust-item i {
  color: #2f3846;
  font-size: 15px;
}

.contact-faq {
  padding: 80px 24px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.contact-faq h3 {
  font-size: 28px;
  font-weight: 700;
  color: #b3914a;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e6e9f0;
}

.faq-question {
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #b3914a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: #2f3846;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================
   BACK TO TOP BUTTON
========================= */

#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #2f3846;
  color: #fff;
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(179, 145, 74, 0.35); /* #B3914A */

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 999;
}

#backToTop:hover {
  background: #1f2631;
  transform: translateY(-4px);
}

/* SHOW STATE */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 480px) {
  #backToTop {
    width: 48px;
    height: 48px;
    font-size: 16px;
    bottom: 18px;
    right: 18px;
  }
}

.rs-form-success {
  display: none;
  text-align: center;
  padding: 30px;
  margin-top: 20px;
  background: #e9f9f0;
  border-radius: 12px;
  animation: fadeIn 0.6s ease;
}

.rs-form-success i {
  font-size: 48px;
  color: #2ecc71;
  margin-bottom: 10px;
}

.rs-form-success h4 {
  font-size: 22px;
  color: #1f2a7a;
  margin-bottom: 6px;
}

.rs-form-success p {
  font-size: 15px;
  color: #555;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rs-form-error {
  display: none;
  text-align: center;
  padding: 30px;
  margin-top: 20px;
  background: #fdecea;
  border-radius: 12px;
  animation: fadeIn 0.6s ease;
}

.rs-form-error i {
  font-size: 48px;
  color: #e74c3c;
  margin-bottom: 10px;
}

.rs-form-error h4 {
  font-size: 22px;
  color: #c0392b;
  margin-bottom: 6px;
}

.rs-form-error p {
  font-size: 15px;
  color: #555;
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.rs-contact-form,
.rs-form-success,
.rs-form-error {
  transition: all 0.3s ease;
}

/* Form smooth hide */
.hero-form.hide {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Message base */
.rs-form-success,
.rs-form-error {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

/* Show animation */
.rs-form-success.show,
.rs-form-error.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-form.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.rs-form-success,
.rs-form-error {
  display: none;
}

.rs-form-success.show,
.rs-form-error.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enquiry-form.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.rs-form-success,
.rs-form-error {
  display: none;
  text-align: center;
  padding: 22px;
  border-radius: 12px;
  margin-top: 20px;
}

.rs-form-success.show,
.rs-form-error.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

.rs-form-success {
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
}

.rs-form-error {
  background: #fff1f2;
  border: 1px solid #ef4444;
  color: #7f1d1d;
}

.rs-form-success i,
.rs-form-error i {
  font-size: 40px;
  margin-bottom: 10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-text {
  visibility: hidden;
}

/* FIXED TOP-LEFT WATERMARK */
.fixed-watermark {
  position: fixed;
  top: 16px;
  left: 16px;
  width: 70px;
  height: 70px;
  background: url("../images/OmerAbdullaFavT.png") no-repeat center;
  background-size: contain;
  opacity: 0.08; /* watermark effect */
  z-index: 9999; /* stays above content */
  pointer-events: none; /* no click issues */
}

@media (max-width: 768px) {
  .fixed-watermark {
    display: none;
  }
}

/* AGENT CARD WATERMARK */
.agent-mini {
  position: relative;
  overflow: hidden;
}

/* Top-right watermark */
.agent-mini::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: url("../images/OmerAbdullaFavT.png") no-repeat center;
  background-size: contain;
  /* opacity: 0.08;  */
  opacity: 0.15; /* watermark feel */
  pointer-events: none; /* no click issues */
}

.agent-mini:hover::after {
  opacity: 0.5;
}

/* =====================================================
   CLIENT REVIEWS / TESTIMONIALS – FULL CSS
   Brand: Omer Abdulla Real Estate
   Colors:
   Gold: #b3914a
   Dark: #2f3846
===================================================== */

/* Section */
section.oa-testimonials {
  padding: 90px 24px;
  background: var(--oa-bg-light);
  position: relative;
}

/* Container */
.oa-testimonials .oa-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.oa-testimonials .oa-testimonials-header {
  text-align: center;
  margin-bottom: 44px;
}

.oa-testimonials .oa-testimonials-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--oa-dark) !important;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.oa-testimonials .oa-testimonials-header h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: var(--oa-gold);
  margin: 14px auto 0;
  border-radius: 4px;
}

.oa-testimonials .oa-testimonials-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 620px;
  margin: 10px auto 0;
}

/* Swiper */
.oa-testimonials .oa-testimonials-swiper {
  padding-bottom: 52px;
}

/* Slide */
.oa-testimonials .swiper-slide {
  height: auto;
}

/* Card */
.oa-testimonials .oa-testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px 32px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(179, 145, 74, 0.15);
  box-shadow: 0 18px 45px rgba(47, 56, 70, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.oa-testimonials .oa-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(47, 56, 70, 0.18);
}

/* Watermark */
.oa-testimonials .oa-watermark {
  position: absolute;
  bottom: 14px;
  right: 14px;
  opacity: 0.15;
  pointer-events: none;
}

.oa-testimonials .oa-watermark img {
  width: 60px;
  filter: grayscale(100%);
}

/* Client Info */
.oa-testimonials .oa-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* Avatar (fallback letters) */
.oa-testimonials .oa-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b3914a, #9e7f3f);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(179, 145, 74, 0.45);
}

/* Client Name */
.oa-testimonials .oa-client h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--oa-dark);
  margin: 0;
}

/* Review Text */
.oa-testimonials .oa-review {
  font-size: 14.6px;
  line-height: 1.65;
  color: #4b5563;
}

/* Swiper Pagination */
.oa-testimonials .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--oa-gold);
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.oa-testimonials .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.25);
}

/* Responsive */
@media (max-width: 768px) {
  .oa-testimonials {
    padding: 70px 18px;
  }

  .oa-testimonials .oa-testimonials-header h2 {
    font-size: 30px;
  }
}
