/*
Theme Name: Asas Al Azl
Theme URI: https://asasalazl.com
Description: Custom WordPress theme for Asas Al Azl services and local SEO pages.
Version: 1.1.0
Author: HOOOM Solutions
Text Domain: asas-alazl
Requires at least: 6.0
Tested up to: 6.5
*/

:root {
  --color-primary: #0A3D7A;
  --color-primary-light: #1F6FB2;
  --color-accent: #3FA9F5;
  --color-secondary: #D4A11E;
  --color-secondary-light: #E4BE4F;
  --color-bg: #F5F7FA;
  --color-text: #1E293B;
  --color-white: #FFFFFF;
  --border: #e2e8f0;
  --primary-color: #0d47a1;
  --secondary-color: #0084ff;
  --dark-bg: #0d1b2a;
  --light-bg: #f8f9fa;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 24px -4px rgba(13, 71, 161, 0.12);
}

* {
  box-sizing: border-box;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.header-search {
  flex-grow: 1;
  max-width: 320px;
}

.search-form {
  display: flex;
  position: relative;
}

.search-field {
  width: 100%;
  padding: 8px 35px 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  outline: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.search-field:focus {
  border-color: #3a86ff;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(58, 134, 255, 0.2);
}

.search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
}

.header-social {
  display: flex;
  gap: 10px;
}

.header-social .social-icon {
  color: #1b263b;
  font-size: 1.1rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f2f5;
  transition: all 0.3s ease;
}

.header-social .social-icon:hover {
  background: #3a86ff;
  color: #fff;
}
/* ==========================================================================
   Header Layout Adjustments - أساس العزل
   ========================================================================== */

/* 1. تحديد حجم الشعار */
.site-header .site-logo, 
.site-header .logo,
.site-header .custom-logo-link {
    max-width: 180px;
    flex: 0 0 auto !important;
}

.site-header .site-logo img, 
.site-header .logo img,
.site-header img.custom-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* 2. تنظيم الهيدر في سطر واحد افقي */
.site-header .header-container, 
.site-header .header-inner,
.site-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 1.5rem;
}

/* 3. وضع القائمة في المنتصف وفي سطر واحد */
.site-header .main-navigation, 
.site-header .nav-menu-container,
.site-header nav {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
}

.site-header .main-navigation ul, 
.site-header nav > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 4. إجبار السيرش والسوشيال ميديا على البقاء أقصى اليسار في RTL */
.site-header .header-widgets, 
.site-header .header-right-tools,
.site-header .search-social-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 1rem;
    flex: 0 0 auto !important;
    margin-right: auto !important; /* يدفع العناصر لليسار */
    margin-left: 0 !important;
}
.primary-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.primary-navigation a {
  text-decoration: none;
  color: #1b263b;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.primary-navigation a:hover {
  color: #3a86ff;
}

.mobile-nav-toggle, .mobile-nav-close, .mobile-only {
  display: none;
}

.landing-page {
  background-color: #ffffff;
  color: var(--text-dark);
  font-family: system-ui, -apple-system, sans-serif;
}

.section-header {
  margin-bottom: 40px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.link-more {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.link-more:hover {
  opacity: 0.8;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #083378;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #25d366;
  border: 1px solid #25d366;
}

.btn-outline:hover {
  background: #25d366;
  color: #fff;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: #f0f0f0;
}

.hero-section {
  background: linear-gradient(135deg, #f0f4f9 0%, #ffffff 100%);
  padding: 70px 0;
}

.hero-section .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(13, 71, 161, 0.08);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-section .hero-title {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.hero-section .hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.hero-section .hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-section .badge {
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.hero-section .badge i {
  color: var(--secondary-color);
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  height: 380px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card, .post-card, .review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card:hover, .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.card-image, .post-thumb {
  height: 200px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .img-cover {
  transform: scale(1.05);
}

.card-body, .post-content {
  padding: 22px;
}

.card-body h3, .post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card-body h3 a, .post-content h3 a {
  text-decoration: none;
  color: var(--dark-bg);
}

.why-us-card {
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-check i {
  color: #25d366;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), #003380);
  color: #fff;
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.review-card {
  padding: 30px;
}

.stars {
  color: #ffb703;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-info strong {
  display: block;
  color: var(--dark-bg);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .flex-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .why-us-card {
    padding: 20px;
  }

  .section {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-brand {
    order: 1;
    flex: 0 0 auto;
  }

  .header-search {
    order: 2;
    flex-grow: 1;
    margin: 0 10px;
    max-width: 100%;
  }

  .search-field {
    padding: 6px 30px 6px 10px;
    font-size: 0.85rem;
  }

  .mobile-nav-toggle {
    display: flex;
    order: 3;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1b263b;
    cursor: pointer;
  }

  .primary-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0d1b2a;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
  }

  .primary-navigation.is-active {
    right: 0;
  }

  .mobile-nav-close {
    display: block;
    position: absolute;
    top: 25px;
    left: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }

  .primary-navigation ul {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .primary-navigation a {
    color: #ffffff;
    font-size: 1.3rem;
  }

  .mobile-social-menu {
    margin-top: 40px;
    text-align: center;
    color: #a3b18a;
  }

  .social-icons-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
  }

  .mobile-social-menu .social-icon {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
}

body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, var(--color-bg) 100%);
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-light);
}

input, textarea, button {
  font-family: 'Cairo', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.site-brand img {
  max-height: 48px;
}

.hero-image, .service-card-image, .city-card-image, .blog-card-image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.hero-image img, .service-card-image img, .city-card-image img, .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.25rem;
  align-items: center;
}

@media (max-width: 980px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 600;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
}

.mobile-nav-toggle .mobile-nav-icon {
  font-size: 1.1rem;
}

.primary-navigation {
  display: block;
}

.primary-navigation ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-navigation.is-open {
  display: block;
}

@media (max-width: 768px) {
  .site-nav {
    flex-wrap: wrap;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-navigation {
    display: none;
    width: 100%;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .primary-navigation li {
    width: 100%;
  }

  .primary-navigation a {
    display: block;
    padding: 0.8rem 1rem;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 0.85rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(10,61,122,0.2);
}

.btn:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
}

.hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.hero .hero-content {
  max-width: 760px;
}

.hero .pill {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
  background: linear-gradient(135deg, #0b3f7e 0%, #1f6fb2 100%);
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.page-hero p {
  margin: 0;
  color: rgba(255,255,255,0.92);
}

.card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 14px 40px rgba(15,23,42,0.07);
  border: 1px solid rgba(226,232,240,0.95);
}

.card:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
  padding: 2rem 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.section-intro {
  margin-bottom: 1rem;
  color: #475569;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-strip .card {
  text-align: center;
}

.list-check {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-check li {
  padding: 0.35rem 0;
  display: flex;
  gap: 0.5rem;
}

.list-check li:before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: 700;
}

.cta-box {
  background: linear-gradient(135deg, #eaf6ff 0%, #f7fbff 100%);
  border: 1px solid #d7ebff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: #475569;
}

footer {
  padding: 2rem 0 3rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  font-size: 1rem;
}

.site-logo-img {
  height: 56px;
  object-fit: contain;
  display: block;
}

.site-header {
  padding: 0.6rem 0;
}

.site-nav .site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

:root {
  --site-header-height: 64px;
}

.site-main {
  padding-top: calc(var(--site-header-height) + 0.75rem);
}

.section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  scroll-margin-top: calc(var(--site-header-height) + 0.75rem);
}

.btn {
  min-height: 48px;
  min-width: 48px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
}

.floating-actions {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  bottom: 12px;
  display: flex;
  gap: 0.6rem;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  animation: fab-enter 420ms cubic-bezier(.2,.9,.2,1) forwards 300ms;
}

.floating-actions .fab-button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 30px rgba(10,61,122,0.18);
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
  font-weight: 700;
}

.floating-actions .fab-button .fab-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.floating-actions .fab-whatsapp {
  background: #25D366;
  box-shadow: 0 12px 30px rgba(37,211,102,0.14);
}

.floating-actions .fab-call {
  background: var(--color-secondary);
  color: #fff;
}

@keyframes fab-enter {
  from {
    transform: translateX(-50%) translateY(28px);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media (min-width: 981px) {
  .floating-actions {
    display: none !important;
  }
}

.cta-box {
  color: #0b2540;
}

.btn {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:active {
  transform: translateY(1px) scale(0.998);
}

.btn:focus {
  box-shadow: 0 8px 28px rgba(10,61,122,0.18);
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn, .floating-actions, .hero, .card {
    transition: none !important;
    animation: none !important;
  }
}

h1, h2, h3 {
  line-height: 1.25;
}

p {
  color: #374151;
}

.img-skel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(90deg,#f0f4f8,#eef6ff,#f0f4f8);
}

.img-skel::before {
  content: '';
  display: block;
  padding-top: 56%;
}

.img-skel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 320ms ease, transform 420ms ease;
}

.img-skel.is-loaded::before {
  display: none;
}

.img-skel.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.img-skel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  animation: shimmer 1.2s linear infinite;
  mix-blend-mode: overlay;
}

.img-skel.is-loaded::after {
  display: none;
  animation: none;
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

.fab-button:focus {
  outline: 3px solid rgba(66,153,225,0.25);
  outline-offset: 3px;
}

.about-page {
  line-height: 1.7;
  color: #333;
}

.about-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 60px 0;
}

.about-page .hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #ffd166;
}

.about-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.about-page .hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.about-page .hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-page .hero-visual {
  position: relative;
}

.about-page .image-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-page .floating-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #0077b6;
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.about-page .floating-experience-badge .years {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-page .floating-experience-badge .label {
  font-size: 0.8rem;
}

.stats-bar {
  background: #0077b6;
  color: #fff;
  padding: 25px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  gap: 20px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

.story-advantages .card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.sub-heading {
  color: #0077b6;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.styled-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.styled-list .list-icon {
  background: #e0f2fe;
  color: #0077b6;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.2rem;
}

.bg-light {
  background-color: #f8fafc;
}

.pillar-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-card.highlight-card {
  border-top: 4px solid #0077b6;
}

.pillar-card .icon-box {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.cta-banner {
  background: #0077b6;
  color: #fff;
  padding: 50px 0;
  border-radius: 16px;
  margin: 40px auto;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: #fff;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .about-page .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .about-page .floating-experience-badge {
    right: 10px;
    bottom: 10px;
  }

  .cta-inner {
    text-align: center;
    justify-content: center;
  }
}

.contact-page {
  line-height: 1.7;
  color: #2b2b2b;
}

.contact-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 60px 0 40px;
}

.contact-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #ffd166;
}

.contact-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-page .hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-section {
  padding: 50px 0;
}

.contact-page .card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sub-heading {
  color: #0077b6;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-details-list .icon-box {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details-list .whatsapp-bg {
  background: #25d366;
  color: #fff;
}

.contact-details-list .details {
  display: flex;
  flex-direction: column;
}

.contact-details-list .label {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 2px;
}

.contact-details-list a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details-list a:hover {
  color: #0077b6;
}

.phone-link {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.whatsapp-link {
  color: #25d366 !important;
}

.custom-form .form-group {
  margin-bottom: 20px;
}

.custom-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.custom-form .required {
  color: #e63946;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.form-control {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

textarea.form-control {
  padding: 12px 15px;
}

.form-control:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #bbf7d0;
}

.bg-accent {
  background: #0077b6;
  color: #fff;
  padding: 50px 0;
  border-radius: 16px;
  margin: 30px auto 50px;
}

.bg-accent h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.bg-accent p {
  max-width: 800px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.faq-page {
  line-height: 1.7;
  color: #2b2b2b;
  background-color: #f8fafc;
}

.faq-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 60px 0 40px;
}

.faq-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #ffd166;
}

.faq-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.faq-page .hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.faq-section {
  padding: 50px 0;
}

.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
  border-color: #0077b6;
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.1);
}

.faq-question {
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question .icon {
  color: #0077b6;
  margin-left: 10px;
}

.faq-question .chevron {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question .chevron {
  transform: rotate(180deg);
  color: #0077b6;
}

.faq-answer {
  padding: 0 25px 20px 25px;
  color: #475569;
  font-size: 1rem;
  border-top: 1px solid #f1f5f9;
  margin-top: 5px;
  padding-top: 15px;
}

.faq-answer ul {
  margin-top: 10px;
  padding-right: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.support-cta {
  padding-bottom: 60px;
}

.cta-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.cta-icon {
  width: 65px;
  height: 65px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 15px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px 15px 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

.privacy-page {
  line-height: 1.8;
  color: #334155;
  background-color: #f8fafc;
}

.privacy-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 60px 0 40px;
}

.privacy-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #ffd166;
}

.privacy-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.privacy-page .hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.privacy-section {
  padding: 50px 0;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.privacy-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
}

.card-header-icon i {
  font-size: 1.5rem;
  color: #0077b6;
  background: #e0f2fe;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.styled-list-privacy {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.styled-list-privacy li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #475569;
}

.styled-list-privacy i {
  color: #0077b6;
}

.privacy-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-nav a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-right 0.2s;
}

.privacy-nav a:hover {
  color: #0077b6;
  padding-right: 5px;
}

@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    order: -1;
  }

  .sticky-sidebar {
    position: static;
  }
}

.terms-page {
  line-height: 1.8;
  color: #334155;
  background-color: #f8fafc;
}

.terms-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 60px 0 40px;
}

.terms-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #ffd166;
}

.terms-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.terms-page .hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.terms-section {
  padding: 50px 0;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.terms-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
}

.card-header-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.card-header-icon i {
  font-size: 1.4rem;
  color: #0077b6;
  background: #e0f2fe;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header-icon h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.styled-list-terms {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.styled-list-terms li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #475569;
}

.styled-list-terms i {
  color: #0077b6;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-nav a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-right 0.2s;
}

.terms-nav a:hover {
  color: #0077b6;
  padding-right: 5px;
}

.divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 20px 0;
}

.support-box {
  text-align: center;
  background: #f8fafc;
  padding: 15px;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
}

.support-box .icon {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 8px;
}

.support-box h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.support-box p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 12px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  width: 100%;
}

@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .terms-sidebar {
    order: -1;
  }

  .sticky-sidebar {
    position: static;
  }
}

.single-city-page {
  line-height: 1.8;
  color: #334155;
  background-color: #f8fafc;
}

.single-city-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 50px 0 40px;
}

.single-city-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin: 15px 0 10px;
  color: #ffd166;
}

.single-city-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.single-city-page .hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.city-content-section {
  padding: 40px 0;
}

.city-main-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
}

.city-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.service-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  border-color: #0077b6;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 15px;
}

.service-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.service-box p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.icon-header {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

.features-list {
  text-align: right;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }
}

.single-post-page {
  line-height: 1.8;
  color: #334155;
  background-color: #f8fafc;
}

.single-post-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 50px 0 40px;
}

.single-post-page .hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.post-meta a {
  color: #ffd166;
  text-decoration: none;
}

.post-meta i {
  margin-left: 5px;
}

.post-content-section {
  padding: 40px 0;
}

.post-main-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.entry-content h2, .entry-content h3 {
  color: #0f172a;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 700;
}

.post-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.post-tags a {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.post-tags a:hover {
  background: #0077b6;
  color: #ffffff;
}

.article-cta h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.sidebar-features .f-item {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 8px;
}

.sidebar-features .f-item i {
  color: #0077b6;
  margin-left: 5px;
}

@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

.single-service-page {
  line-height: 1.8;
  color: #334155;
  background-color: #f8fafc;
}

.single-service-page .bg-gradient {
  background: linear-gradient(135deg, #0d3b66 0%, #001f3f 100%);
  color: #fff;
  padding: 50px 0 40px;
}

.breadcrumb-nav {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a {
  color: #ffd166;
  text-decoration: none;
}

.breadcrumb-nav .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumb-nav .current {
  color: #ffffff;
}

.single-service-page .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin: 15px 0 10px;
  color: #ffd166;
}

.single-service-page .hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.single-service-page .hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.service-content-section {
  padding: 40px 0;
}

.grid-3-1 {
  display: grid;
  grid-template-columns: 2.8fr 1.2fr;
}

.service-main-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
}

.service-featured-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.entry-content {
  font-size: 1.05rem;
  color: #334155;
}

.sub-heading {
  display: block;
  color: #0077b6;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.importance-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.importance-card:hover {
  transform: translateY(-5px);
  border-color: #0077b6;
}

.imp-icon {
  width: 48px;
  height: 48px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.importance-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.importance-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0077b6;
  background: #e0f2fe;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f172a;
}

.step-info p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.article-cta {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 25px;
}

.article-cta .cta-icon {
  width: 50px;
  height: 50px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff !important;
}

.sticky-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
}

.icon-header {
  width: 55px;
  height: 55px;
  background: #e0f2fe;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 15px;
}

.btn-block {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.f-item {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 8px;
}

.f-item i {
  color: #0077b6;
  margin-left: 5px;
}

@media (max-width: 900px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .sticky-sidebar {
    position: static;
  }

  .step-card {
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

.error-404-page {
  background-color: #f8fafc;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.error-card {
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
}

.code-number {
  font-size: 4rem;
  font-weight: 900;
  color: #0d3b66;
  line-height: 1;
  display: block;
  opacity: 0.15;
}

.icon-warning {
  font-size: 2.5rem;
  color: #e63946;
}

.error-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

.quick-buttons-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
}

.btn-whatsapp:hover {
  background-color: #1eb956;
}

@media (max-width: 600px) {
  .code-number {
    font-size: 3rem;
  }

  .error-title {
    font-size: 1.35rem;
  }

  .cta-buttons-wrapper .btn {
    width: 100%;
  }
}

.city-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.city-card-image {
  height: 180px;
  overflow: hidden;
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover .city-card-image img {
  transform: scale(1.05);
}

.icon-red {
  color: #e63946;
}

.service-archive-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-archive-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-icon-placeholder {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-wrapper .page-numbers {
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0d3b66;
  text-decoration: none;
}

.pagination-wrapper .page-numbers.current {
  background: #0d3b66;
  color: #ffffff;
  border-color: #0d3b66;
}

.blog-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
  height: 190px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-placeholder {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-meta a {
  color: #64748b;
  text-decoration: none;
}

.blog-meta a:hover {
  color: #0077b6;
}

.blog-title {
  line-height: 1.4;
  font-size: 1.15rem;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.generic-archive-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.generic-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.archive-card-image {
  height: 180px;
  overflow: hidden;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.generic-archive-card:hover .archive-card-image img {
  transform: scale(1.05);
}

.archive-card-placeholder {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-card-title {
  line-height: 1.4;
  font-size: 1.1rem;
}

.hover-blue:hover {
  color: #0077b6 !important;
}

.cta-buttons-flex {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons-flex .btn {
    width: 100%;
  }
}

.site-footer {
  background-color: #0d1b2a;
  color: #e0e1dd;
  padding: 50px 0 20px 0;
  border-top: 4px solid #1b263b;
}

.site-footer a {
  color: #e0e1dd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #3a86ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #3a86ff;
}

.footer-desc, .social-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a3b18a;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #3a86ff;
  color: #fff !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #8d99ae;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-subtitle::after {
    right: 50%;
    transform: translateX(50%);
  }

  .social-links {
    justify-content: center;
  }
}
/* ==========================================================================
   تنسيق الهيدر المتناسق (يمين - منتصف - شمال)
   ========================================================================== */

/* ضبط الحاوية الرئيسية للشاشات الكبيرة */
@media (min-width: 992px) {
    .site-header .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 1.5rem;
    }

    /* 1. اللوجو يمين */
    .site-header .site-brand {
        flex: 0 0 auto;
    }

    /* 2. القائمة في المنتصف وسطر واحد */
    .site-header .primary-navigation {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .site-header .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        gap: 1.25rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* 3. أدوات اليسار (البحث + السوشيال) */
    .site-header .header-left-tools {
        display: flex !important;
        align-items: center !important;
        gap: 1rem;
        flex: 0 0 auto;
    }
}