/* Tayseer Law - Custom Styling */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-teal: #083232;
  --primary-teal-light: #0E4B4B;
  --primary-teal-dark: #041A1A;
  --primary-teal-rgb: 8, 50, 50;
  --accent-gold: #C59B27;
  --accent-gold-light: #DFB847;
  --accent-gold-dark: #A67F19;
  --accent-gold-rgb: 197, 155, 39;
  --bg-cream: #FAF8F5;
  --bg-cream-dark: #F3EFEA;
  --text-dark: #1E2929;
  --text-muted: #5C6E6E;
  --border-light: #EAE5DD;
  --white: #FFFFFF;
  --card-shadow: 0 12px 30px rgba(8, 50, 50, 0.04);
  --card-shadow-hover: 0 20px 45px rgba(8, 50, 50, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-teal);
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Custom Buttons */
.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid var(--accent-gold);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 155, 39, 0.25);
}

.btn-teal {
  background-color: var(--primary-teal);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid var(--primary-teal);
  transition: var(--transition-smooth);
}

.btn-teal:hover {
  background-color: var(--primary-teal-light);
  border-color: var(--primary-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 50, 50, 0.15);
}

.btn-outline-dark-teal {
  background-color: transparent;
  color: var(--primary-teal) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
  transition: var(--transition-smooth);
}

.btn-outline-dark-teal:hover {
  border-color: var(--primary-teal);
  background-color: rgba(8, 50, 50, 0.03);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Islamic/Omani Geometric SVG Background Patterns */
.bg-pattern-dark {
  background-color: var(--primary-teal-dark);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L45 15L30 30L15 15Z' fill='%23083232' fill-opacity='0.15'/%3E%3Cpath d='M0 30L15 45L0 60L-15 45Z' fill='%23083232' fill-opacity='0.15'/%3E%3Cpath d='M60 30L75 45L60 60L45 45Z' fill='%23083232' fill-opacity='0.15'/%3E%3Cpath d='M30 30L45 45L30 60L15 45Z' fill='%23083232' fill-opacity='0.15'/%3E%3C/svg%3E");
}

.bg-pattern-light {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L45 15L30 30L15 15Z' fill='%23c59b27' fill-opacity='0.02'/%3E%3Cpath d='M30 30L45 45L30 60L15 45Z' fill='%23c59b27' fill-opacity='0.02'/%3E%3C/svg%3E");
}

/* Navbar */
.navbar {
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(8, 50, 50, 0.05);
}

.navbar-brand .logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--primary-teal);
}

.navbar-brand .logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 600;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary-teal);
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-gold) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.lang-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--primary-teal);
  text-decoration: none;
}

.lang-dropdown .dropdown-toggle::after {
  margin-left: 2px;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
}

.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  background-color: var(--bg-cream);
  padding: 100px 0 90px 0;
  position: relative;
  overflow: hidden;
}

/* Fort photo — visible on far right, fading to cream */
.hero-fort-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url('../assets/images/faq_fort.png');
  background-size: cover;
  background-position: center left;
  z-index: 0;
}

.hero-fort-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right,
      var(--bg-cream) 0%,
      rgba(250, 248, 245, 0.82) 30%,
      rgba(250, 248, 245, 0.55) 60%,
      rgba(250, 248, 245, 0.3) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.08) 0%, rgba(250, 248, 245, 0) 70%);
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(8, 50, 50, 0.06);
  border: 1px solid rgba(8, 50, 50, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.hero-badge i {
  color: var(--accent-gold);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.18;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title span {
  color: var(--accent-gold);
  display: block;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-badges-bottom {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-badge-bottom-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-light);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ═══════════════════════════════════
   LAPTOP MOCKUP
═══════════════════════════════════ */
.hero-laptop-col {
  position: relative;
  z-index: 3;
  padding-top: 10px;
}

.laptop-mockup-wrap {
  perspective: 1200px;
  animation: laptopFloat 5s ease-in-out infinite;
}

@keyframes laptopFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.laptop-body {
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 0 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 60px 100px rgba(0, 0, 0, 0.15);
  position: relative;
}

.laptop-body::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #3a3a3a;
  border-radius: 50%;
}

.laptop-screen {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.laptop-screen-inner {
  width: 100%;
  aspect-ratio: 16/10;
}

.laptop-base {
  background: linear-gradient(to bottom, #2a2a2a, #222);
  height: 14px;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.laptop-notch {
  width: 60px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 0 0 4px 4px;
}

/* ═══════════════════════════════════
   DASHBOARD UI INSIDE LAPTOP
═══════════════════════════════════ */
.dash-ui {
  display: flex;
  height: 100%;
  font-family: var(--font-body);
  overflow: hidden;
}

/* ── Sidebar ── */
.dash-sidebar {
  width: 88px;
  background: var(--primary-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 2px;
  flex-shrink: 0;
}

.dash-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  margin-bottom: 4px;
}

.dash-logo span {
  font-size: 0.42rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.dash-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
  margin: 0 4px;
  width: calc(100% - 8px);
}

.dash-nav-item i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.dash-nav-item span {
  font-size: 0.38rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.dash-nav-item.active,
.dash-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dash-nav-item.active i,
.dash-nav-item.active span {
  color: var(--accent-gold);
}

/* ── Main area ── */
.dash-main {
  flex: 1;
  background: #f7f8fb;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

/* Topbar */
.dash-topbar {
  background: #fff;
  padding: 7px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.dash-welcome {
  font-size: 0.5rem;
  color: #666;
}

.dash-welcome strong {
  color: var(--primary-teal);
  font-weight: 700;
}

.dash-topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-search-bar {
  background: #f0f0f0;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 0.45rem;
  color: #999;
}

.dash-icon-btn {
  font-size: 0.5rem;
  color: #888;
  cursor: pointer;
}

.dash-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: #fff;
  font-size: 0.38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* KPI Cards */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px 10px 6px;
  flex-shrink: 0;
}

.kpi-card {
  background: #fff;
  border-radius: 6px;
  padding: 7px 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
}

.kpi-green::before {
  background: #10B981;
}

.kpi-blue::before {
  background: #3B82F6;
}

.kpi-gold::before {
  background: #C59B27;
}

.kpi-teal::before {
  background: #083232;
}

.kpi-label {
  font-size: 0.38rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 2px;
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
}

.kpi-icon {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  opacity: 0.08;
  color: var(--primary-teal);
}

/* Bottom panels */
.dash-panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 6px;
  padding: 0 10px 8px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.dash-panel {
  background: #fff;
  border-radius: 6px;
  padding: 7px 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 0.48rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #f0f0f0;
}

/* Hearings */
.hearing-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 5px;
}

.hearing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.hearing-dot.green {
  background: #10B981;
}

.hearing-dot.gold {
  background: #C59B27;
}

.hearing-dot.red {
  background: #EF4444;
}

.hearing-name {
  font-size: 0.38rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.hearing-date {
  font-size: 0.33rem;
  color: #999;
}

/* Donut chart */
.donut-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}

.donut-svg {
  width: 60px;
  height: 60px;
}

.donut-center {
  position: absolute;
  text-align: center;
}

.donut-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
}

.donut-lbl {
  font-size: 0.3rem;
  color: #999;
}

.donut-legend {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.33rem;
  color: #666;
}

.legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

/* Activity feed */
.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 5px;
}

.act-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.act-dot.green {
  background: #10B981;
}

.act-dot.blue {
  background: #3B82F6;
}

.act-dot.gold {
  background: #C59B27;
}

.act-dot.red {
  background: #EF4444;
}

.act-title {
  font-size: 0.38rem;
  font-weight: 600;
  color: #333;
}

.act-time {
  font-size: 0.32rem;
  color: #bbb;
}

/* Responsive hero */
@media (max-width: 991px) {

  .hero-fort-bg,
  .hero-fort-overlay {
    display: none;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .laptop-mockup-wrap {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .dash-sidebar {
    width: 60px;
  }

  .dash-logo span {
    display: none;
  }

  .dash-nav-item span {
    display: none;
  }
}



/* Floating Metrics Bar */
.metrics-section {
  position: relative;
  margin-top: -50px;
  z-index: 10;
  padding-bottom: 60px;
}

.metrics-container {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 15px 40px rgba(8, 50, 50, 0.06);
  border: 1px solid var(--border-light);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.metric-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: rgba(197, 155, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
}

.metric-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-teal);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Feature Cards Grid */
.features-section {
  padding: 60px 0 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent-gold);
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(197, 155, 39, 0.3);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(8, 50, 50, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.25rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--accent-gold);
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.feature-card:hover h4 {
  color: var(--accent-gold);
}

.feature-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.how-it-works-section .section-title {
  color: var(--white);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.timeline-step-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 155, 39, 0.4);
  transform: translateX(5px);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.timeline-step-item h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline-step-item p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.92rem;
}

.how-it-works-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.how-it-works-img:hover {
  transform: scale(1.02);
}

/* Testimonial & Trust Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--white);
}

.logo-slider-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.65;
  transition: var(--transition-smooth);
  filter: grayscale(1);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partner-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-teal);
}

.partner-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--primary-teal);
}

.testimonial-card-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: var(--bg-cream);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial-quote {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary-teal);
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(8, 50, 50, 0.1);
  margin-bottom: 12px;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-teal);
  margin-bottom: 2px;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.slider-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  z-index: 10;
}

.slider-nav-btn:hover {
  background-color: var(--primary-teal);
  color: var(--white);
  border-color: var(--primary-teal);
}

.slider-nav-btn.prev {
  left: -24px;
}

.slider-nav-btn.next {
  right: -24px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.pricing-section .pricing-bg-decor-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background-image: url('../assets/images/omani_fort_pricing.png');
  background-size: cover;
  background-position: left bottom;
  opacity: 0.05;
  pointer-events: none;
}

.pricing-section .pricing-bg-decor-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-image: url('../assets/images/omani_lawyer_pricing.png');
  background-size: cover;
  background-position: right bottom;
  opacity: 0.05;
  pointer-events: none;
}

/* Pricing Switch */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-toggle-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-teal);
}

.pricing-toggle-label.inactive {
  color: var(--text-muted);
}

.pricing-switch-wrapper {
  position: relative;
  width: 60px;
  height: 32px;
}

.pricing-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-light);
  border: 1px solid var(--border-light);
  transition: .4s;
  border-radius: 34px;
}

.pricing-switch-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: var(--primary-teal);
  transition: .4s;
  border-radius: 50%;
}

.pricing-switch-input:checked+.pricing-switch-slider {
  background-color: var(--accent-gold);
}

.pricing-switch-input:checked+.pricing-switch-slider:before {
  transform: translateX(28px);
  background-color: var(--white);
}

.save-badge {
  background-color: rgba(197, 155, 39, 0.1);
  color: var(--accent-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-heading);
}

/* Pricing Cards */
.pricing-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-card-title,
.pricing-card.featured .pricing-card-description,
.pricing-card.featured .price-amount,
.pricing-card.featured .price-period {
  color: var(--white);
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-card-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-card.featured .pricing-card-description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-rate-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}

.price-currency {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 6px;
}

.price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--primary-teal);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-feature-item i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.pricing-card.featured .pricing-feature-item i {
  color: var(--accent-gold-light);
}

.pricing-card.featured .btn-outline-dark-teal {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white) !important;
}

.pricing-card.featured .btn-outline-dark-teal:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
}

.pricing-terms-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: var(--white);
  color: var(--primary-teal);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-title {
  color: var(--accent-gold);
}

.blog-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-teal);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.blog-link-arrow:hover {
  color: var(--accent-gold);
}

.blog-link-arrow i {
  transition: var(--transition-smooth);
}

.blog-link-arrow:hover i {
  transform: translateX(4px);
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.6rem;
  margin: 0 auto 24px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 36px auto;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-accordion .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
}

.faq-accordion .accordion-button {
  background-color: transparent;
  color: var(--primary-teal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 0;
  box-shadow: none;
  border: none;
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-gold);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23083232'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(0deg);
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c59b27'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  padding: 0 0 24px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(8, 50, 50, 0.08);
  height: 450px;
  position: relative;
}

.faq-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer-section {
  background-color: var(--primary-teal-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 2px;
}

.footer-brand .logo-subtitle {
  color: var(--accent-gold);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social-links {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-column-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  box-shadow: none;
  color: var(--white);
}

.newsletter-form .input-group {
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form .btn-newsletter {
  background-color: var(--accent-gold);
  border: none;
  color: var(--white);
  padding: 0 18px;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.newsletter-form .btn-newsletter:hover {
  background-color: var(--accent-gold-dark);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive Overrides */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 20px 0;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .hero-section {
    padding: 100px 0 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-laptop-container {
    margin-top: 50px;
  }

  .metrics-section {
    margin-top: 0;
    padding-top: 40px;
  }

  .metrics-container {
    padding: 20px;
  }

  .pricing-section .pricing-bg-decor-left,
  .pricing-section .pricing-bg-decor-right {
    display: none;
  }

  .testimonial-card {
    padding: 30px;
  }

  .slider-nav-btn.prev {
    left: -12px;
  }

  .slider-nav-btn.next {
    right: -12px;
  }

  .faq-img-card {
    margin-top: 40px;
    height: 350px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}