/* منع قفزة التمرير وانزياح الجذر CLS */
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family:
    "Cairo",
    system-ui,
    -apple-system,
    sans-serif;
  font-display: swap;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

.fixed-contact-bar {
  contain: layout paint;
}

/* تحسين استجابة عناصر الجداول لمنع تمدد الـ DOM */
.table-responsive {
  contain: layout;
}
.brand-link-pill,
.btn-call,
.btn-whatsapp,
.contact-btn,
.nav-links a,
.phone-box a,
.seo-anchor-link,
.seo-tags-cloud a,
.service-link,
a[href^="tel:"] {
  text-decoration: none;
}
.logo-box,
.nav-links,
.phone-box,
body {
  display: flex;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@font-face {
  font-family: "اسم الخط الخاص بك";
  src: url("https://fonts.gstatic.com/...") format("woff2");
  font-display: swap;
}
body {
  background-color: #f8fafc;
  color: #1e293b;
  margin: 0;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 31px;
}
.banner,
table {
  text-align: right;
}
.section-title h2 {
  color: #0f172a;
  margin: 10px 0;
}
.section-title p {
  color: #64748b;
  font-size: 15px;
}
.top-bar {
  background-color: #1e293b;
  color: #fff;
  padding: 10px 0;
  font-size: 19px;
}
.phone-box,
.phone-box a {
  color: #fbbf24;
}
.nav-flex,
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-box {
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.banner,
.logo-box {
  align-items: center;
}
.lang-btn {
  background-color: #334155;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  transition: background-color 0.2s;
}
.lang-btn:hover {
  background-color: #475569;
}
.navbar {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-box {
  gap: 12px;
}
.logo-box h2 {
  font-size: 16px;
  margin: 0;
  color: #1e293b;
}
.logo-box p {
  font-size: 11px;
  margin: 0;
  color: #64748b;
}
.logo-icon {
  background-color: #2563eb;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
}
.nav-links {
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #475569;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s;
}
.gov-v-card:hover .gov-v-header h3,
.highlight-dark,
.nav-links a.active,
.nav-links a:hover {
  color: #2563eb;
}
.hamburger {
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  z-index: 100;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background: linear-gradient(to bottom, #2563eb, #01175f);
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}
.hamburger.open span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.main-content {
  flex-grow: 1;
  padding: 30px 0;
}
.hamburger {
  flex-direction: column;
  gap: 5px;
  background: 0 0;
  border: none;
  cursor: pointer;
  display: none;
}
.banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  min-height: 480px;
  display: flex;
  padding: 40px;
  background-image: url("banner.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 50px;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(3, 7, 18, 0.9),
    rgba(15, 23, 42, 0.7),
    transparent
  );
}
.banner-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  color: #fff;
}
.badge {
  align-items: center;
  gap: 8px;
}
.banner-content h1 {
  font-weight: 700;
  margin-bottom: 16px;
}
.highlight {
  color: #60a5fa;
}
.banner-content p {
  font-size: 15px;
  color: #e2e8f0;
  margin-bottom: 30px;
  line-height: 1.6;
}
.buttons-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn-call,
.btn-whatsapp {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    background-color 0.2s;
}
.about-card,
.experience-badge {
  color: #fff;
  align-items: center;
}
.btn-whatsapp {
  background-color: #059669;
  color: #fff;
}
.btn-whatsapp:hover {
  background-color: #047857;
  transform: translateY(-2px);
}
.btn-call {
  background-color: #d97706;
  color: #fff;
}
.btn-call:hover {
  background-color: #b45309;
  transform: translateY(-2px);
}
.about-section,
.booking-section,
.faq-section,
.services-section {
  margin-bottom: 50px;
  scroll-margin-top: 90px;
}
.about-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}
.about-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.about-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  object-fit: cover;
}
.about-image-box:hover .about-img {
  transform: scale(1.03);
}
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.badge span {
  color: #fff !important;
}
html[dir="ltr"] .experience-badge {
  right: auto;
  left: 20px;
}
.experience-badge strong {
  font-size: 28px;
  color: #fbbf24;
  line-height: 1;
}
.experience-badge span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #e2e8f0;
}
.about-content h2 {
  color: #0f172a;
  margin: 12px 0 16px;
}
.about-content p {
  color: #475569;
  margin-bottom: 24px;
}
.feature-item h3,
th {
  color: #1e293b;
  font-weight: 700;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f8fafc;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}
.feat-icon {
  font-size: 24px;
}
.feature-item h3 {
  margin: 0;
  font-size: 14px;
}
.feature-item small {
  color: #64748b;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.12);
}
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  color: #0f172a;
  margin: 0 0 10px;
}
.service-card p {
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-link {
  color: #2563eb;
  transition: color 0.2s;
}
.blog-card:hover .btn-read-more,
.service-link:hover {
  color: #1d4ed8;
}
.brand-services-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  direction: rtl;
  font-family: Cairo, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.brand-services-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f5;
}
.brand-services-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eef5ff;
  color: #0d6efd;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.main-seo-title {
  color: #1a202c;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.brand-intro {
  color: #2c3e50;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.brand-backlinks-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #e2e8f0;
}
.brand-link-pill {
  display: inline-block;
  background-color: #fff;
  color: #2c3e50;
  border: 1px solid #cbd5e0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.25s;
}
.brand-link-pill:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.brand-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: 0.3s;
  scroll-margin-top: 80px;
}
.brand-box:hover {
  border-color: #3182ce;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.brand-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #edf2f7;
}
.seo-anchor-link {
  color: #2b6cb0;
  transition: color 0.2s;
}
.seo-anchor-link:hover {
  color: #c53030;
}
.brand-desc {
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.footer-links ul,
.keyword-list,
.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.keyword-list li {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 10px;
  line-height: 1.5;
  padding-right: 15px;
  position: relative;
}
.keyword-list li::before {
  content: "•";
  color: #3182ce;
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: -2px;
}
.keyword-list li strong {
  color: #1a202c;
}
.seo-tags-wrapper {
  background-color: #f7fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #edf2f7;
}
.seo-tags-wrapper h4 {
  font-size: 1.05rem;
  color: #2d3748;
  margin-bottom: 15px;
}
.seo-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-tags-cloud a {
  background-color: #fff;
  color: #4a5568;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: 0.2s;
}
.seo-tags-cloud a:hover {
  background-color: #2b6cb0;
  color: #fff;
  border-color: #2b6cb0;
}
.table-container {
  max-width: 1200px;
  min-height: 400px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.table-header {
  background-color: #1e293b;
  color: #fff;
  padding: 20px;
}
.table-header h2 {
  margin: 0 0 15px;
  font-size: 22px;
  color: #38bdf8;
}
.filter-box {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge,
.btn-submit span,
.code-badge,
a[href^="tel:"] {
  display: inline-block;
}
.filter-box input,
.filter-box select {
  padding: 12px 16px;
  border: 1px solid #475569;
  border-radius: 6px;
  background-color: #0f172a;
  color: #fff;
  font-size: 15px;
  outline: 0;
}
.filter-box input {
  flex: 3;
  min-width: 200px;
}
.filter-box select {
  flex: 1;
  min-width: 150px;
  cursor: pointer;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
}
td,
th {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  line-height: 1.6;
}
th {
  background-color: #f1f5f9;
}
tr:hover {
  background-color: #f8fafc;
}
.code-badge {
  background-color: #e9ecef !important;
  color: #000 !important;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 15px;
  font-weight: 600;
  direction: ltr;
}
.btn-submit,
.faq-question {
  font-family: Cairo, sans-serif;
}
.badge {
  font-size: 12px;
  font-weight: 600;
  background-color: #01030d !important;
  color: #f7f5f5 !important;
}
.priority-high {
  background-color: #fee2e2;
  color: #dc2626;
}
.priority-med {
  background-color: #fef3c7;
  color: #d97706;
}
.priority-low {
  background-color: #e0e7ff;
  color: #4338ca;
}
.no-results {
  text-align: center;
  padding: 30px;
  color: #64748b;
  font-size: 16px;
}
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
}
.pagination-container button {
  padding: 8px 16px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}
.pagination-container button:disabled {
  background-color: #cbd5e1;
  cursor: not-allowed;
}
.pagination-container button:hover:not(:disabled) {
  background-color: #1d4ed8;
}
#pageIndicator {
  font-weight: 600;
  color: #334155;
}
@media screen and (max-width: 768px) {
  .table-header h2 {
    font-size: 18px;
    text-align: center;
  }
  .filter-box input,
  .filter-box select {
    width: 100%;
    flex: 1 1 100%;
  }
  table,
  tbody,
  td,
  th,
  thead,
  tr {
    display: block;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 10px;
  }
  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 5px;
    text-align: left;
  }
  td:last-child {
    border-bottom: none;
  }
  td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #475569;
    margin-left: 10px;
    text-align: right;
  }
}
.blog-modal-overlay {
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-modal-content {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
}
.blog-modal-overlay.active .blog-modal-content {
  transform: translateY(0);
  transform: scale(1);
}
.close-modal-btn {
  position: absolute;
  top: 18px;
  left: 20px;
  background: #f1f5f9;
  border: none;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.close-modal-btn:hover {
  background: #ef4444;
  color: #fff;
}
.article-full-title {
  font-weight: 800;
}
.article-section-title {
  font-weight: 700;
}
.blog-card-img-wrapper {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
  background: #f1f5f9;
}
.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}
.blog-section {
  padding: 70px 0;
  background-color: #f8fafc;
}
.blog-header,
.gov-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.top-blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eff6ff;
  border: 1.5px solid #2563eb;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  margin-bottom: 20px;
}
.top-blog-badge .badge-icon {
  font-size: 1.1rem;
}
.top-blog-badge span {
  color: #1e40af;
  font-weight: 800;
  font-size: 0.95rem;
}
.main-blog-title {
  font-size: 2.1rem;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 800;
}
.blog-subtitle {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.12);
  border-color: #3b82f6;
}
.blog-card-tag {
  align-self: flex-start;
  background-color: #f1f5f9;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #cbd5e1;
}
.blog-card-title {
  font-size: 1.15rem;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 700;
}
.blog-card-excerpt {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-read-more,
.btn-submit {
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.btn-read-more {
  background: 0 0;
  border: none;
  color: #2563eb;
  font-size: 0.95rem;
  display: inline-flex;
  gap: 8px;
  padding: 0;
  transition: color 0.3s;
}
.btn-read-more .arrow-icon {
  font-style: normal;
  transition: transform 0.3s;
  display: inline-block;
}
.blog-card:hover .btn-read-more .arrow-icon {
  transform: translateX(-6px);
}
.blog-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  padding: 20px;
}
.blog-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.blog-modal-content {
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.92);
  transition: transform 0.3s;
}
.contact-btn,
.faq-answer,
.faq-item,
.gov-v-card {
  overflow: hidden;
}
.blog-modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f1f5f9;
  border: none;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: #475569;
}
.article-full-title {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 20px;
  border-bottom: 2px solid #eff6ff;
  padding-bottom: 12px;
}
.article-section-title {
  font-size: 1.15rem;
  color: #2563eb;
  margin: 18px 0 8px;
}
.article-body-p {
  color: #334155;
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.article-list {
  padding-right: 20px;
  margin-bottom: 15px;
}
.article-list li {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 6px;
}
[dir="ltr"] .blog-modal-close {
  left: auto;
  right: 20px;
}
[dir="ltr"] .blog-card:hover .btn-read-more .arrow-icon {
  transform: translateX(6px);
}
.booking-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}
.booking-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}
.booking-header h2 {
  color: #1e293b;
  margin: 12px 0 8px;
  font-weight: 700;
}
.booking-header p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  grid-column: span 3;
}
.form-group label {
  color: #334155;
}
html[dir="ltr"] .input-wrapper .field-icon {
  right: auto;
  left: 14px;
}
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  padding: 12px 42px 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14px;
  font-family: Cairo, sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  transition: 0.25s;
  outline: 0;
}
html[dir="ltr"] .input-wrapper input,
html[dir="ltr"] .input-wrapper select,
html[dir="ltr"] .input-wrapper textarea {
  padding: 12px 16px 12px 42px;
}
.input-wrapper textarea {
  resize: vertical;
}
html[dir="ltr"] .input-wrapper textarea {
  padding-left: 16px;
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: #2563eb;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: 0.3s;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}
.gov-vertical-section {
  padding: 80px 0;
  background-color: #f8fafc;
}
.top-gov-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #000;
  border: 1px solid #000;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 15px;
}
.top-gov-badge span {
  color: #eeeef0;
  font-weight: 700;
  font-size: 0.9rem;
}
.main-gov-title {
  font-size: 2.1rem;
  color: #0f172a;
  margin-bottom: 14px;
  font-weight: 800;
}
.gov-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
}
.gov-vertical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.gov-v-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  position: relative;
}
.gov-v-card:hover {
  transform: translateY(-7px);
  border-color: #2563eb;
  box-shadow:
    0 20px 25px -5px rgba(37, 99, 235, 0.1),
    0 10px 10px -5px rgba(37, 99, 235, 0.04);
}
.gov-v-card:hover .gov-v-divider {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  width: 100%;
}
.gov-v-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.gov-icon,
.policy-card h3 {
  display: flex;
  align-items: center;
}
.gov-icon {
  font-size: 1.5rem;
  background: #f1f5f9;
  width: 44px;
  height: 44px;
  justify-content: center;
  border-radius: 12px;
  transition: background 0.3s;
}
.gov-v-card:hover .gov-icon {
  background: #eff6ff;
}
.gov-v-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  transition: color 0.3s;
}
.faq-answer p,
.gov-v-body p {
  margin: 0;
  color: #475569;
}
.gov-v-divider {
  height: 3px;
  width: 40px;
  background: #cbd5e1;
  border-radius: 2px;
  margin-bottom: 16px;
  transition: 0.4s;
}
.gov-v-body p {
  font-size: 0.95rem;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .gov-vertical-grid {
    grid-template-columns: 1fr;
  }
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s;
}
.faq-question {
  width: 100%;
  text-align: right;
  background: 0 0;
  border: none;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.policy-card,
.policy-footer-note {
  border-radius: var(--radius, 12px);
}
html[dir="ltr"] .contact-btn .text-info,
html[dir="ltr"] .faq-question {
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  color: #2563eb;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  transition:
    max-height 0.3s,
    padding 0.3s;
  background-color: #f8fafc;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}
.policy-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.policy-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.policy-header {
  text-align: center;
  margin-bottom: 20px;
}
.policy-header h2 {
  font-size: 28px;
  color: var(--secondary-color, #2b2d42);
  font-weight: 800;
  margin-bottom: 8px;
}
.policy-header p {
  font-size: 15px;
  color: var(--text-light, #6c757d);
}
.policy-card {
  background-color: var(--white, #fff);
  padding: 30px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.08));
  border-right: 5px solid var(--primary-color, #284995);
}
.disclaimer-card {
  border-right-color: #d90429;
}
.policy-card h3 {
  font-size: 20px;
  color: var(--secondary-color, #2b2d42);
  margin-bottom: 15px;
  font-weight: 700;
  gap: 10px;
}
.disclaimer-card h3,
.disclaimer-card ul li::before {
  color: #d90429;
}
.policy-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 15px;
}
.policy-card ul li {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-right: 20px;
}
.policy-card ul li::before {
  content: "•";
  color: var(--primary-color, #284995);
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  right: 0;
  top: -2px;
}
.policy-card ul li strong {
  color: #111827;
}
.policy-footer-note {
  background-color: #f0f4f9;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dark, #1d3557);
  font-weight: 600;
}
.site-footer {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 50px 0 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about h3 {
  color: #fff;
  margin-top: 0;
}
.footer-about p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact h4,
.footer-links h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-contact a,
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}
.footer-contact a {
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  margin-bottom: 5px;
  display: block;
}
.footer-contact a:hover,
.footer-links a:hover {
  color: #eff1f3;
}
.footer-bottom {
  text-align: center;
  border-top: 2px solid #1e293b;
  padding-bottom: 10px;
  font-size: 15px;
  color: #b6babe;
}
.fixed-contact-bar {
  position: fixed;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 12px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-btn {
  display: flex !important;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px !important;
  min-width: auto !important;
  min-height: auto !important;
  height: auto !important;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}
.contact-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: rotate(30deg);
  transition: 0.5s;
  opacity: 0;
}
.contact-btn:hover::after {
  opacity: 1;
  left: 100%;
}
.contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.contact-btn .icon {
  font-size: 18px;
}
.contact-btn .text-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: right;
}
.contact-btn small {
  font-size: 10px;
  opacity: 0.9;
  font-weight: 500;
}
.contact-btn strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.btn-hotline-primary {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.btn-hotline-secondary {
  background: linear-gradient(135deg, #1e293b, #334155);
}
.btn-hotline-tertiary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}
.btn-whatsapp-fixed {
  background: linear-gradient(135deg, #059669, #10b981);
}
.btn-whatsapp-fixed .whatsapp-icon {
  animation: 2s infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@media (max-width: 992px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-group.full-width {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-links.active {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
  }
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 400px;
    border-top: 1px solid #f1f5f9;
  }
  .brand-services-card {
    padding: 20px 15px;
  }
  .main-seo-title {
    font-size: 1.4rem;
  }
  .brands-grid,
  .form-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .brand-link-pill {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  .policy-card {
    padding: 20px;
  }
  .policy-header h2 {
    font-size: 22px;
  }
  .policy-card h3 {
    font-size: 18px;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #f8fafc;
  }
  .banner {
    min-height: auto;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
  }
  .banner-overlay {
    background: rgba(3, 7, 18, 0.85);
  }
  .banner-content h1 {
    font-size: 24px;
  }
  .buttons-box {
    flex-direction: column;
    width: 100%;
  }
  .btn-call,
  .btn-whatsapp {
    width: 100%;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .fixed-contact-bar {
    bottom: 10px;
    width: 95%;
    padding: 8px 10px;
    gap: 6px;
    border-radius: 20px;
    justify-content: space-around;
  }
  .contact-btn {
    padding: 8px 10px;
    flex: 1;
    justify-content: center;
  }
  .contact-btn .text-info small {
    display: none;
  }
  .contact-btn strong {
    font-size: 12px;
  }
}
.container {
  max-width: 1350px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
.about-content h2,
.banner-content h1,
.booking-header h2,
.section-title h2 {
  font-size: 2.2rem;
  line-height: 1.4;
}
.service-card {
  padding: 35px 25px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 1.125rem;
  line-height: 1.7;
}
.form-group label,
.service-link {
  font-size: 1.1rem;
  font-weight: 700;
}
.about-content p {
  font-size: 1.15rem;
  line-height: 1.8;
}
.btn-submit,
.faq-question,
.feature-item h4 {
  font-size: 1.25rem;
}
.feature-item small {
  font-size: 1rem;
}
.booking-card {
  padding: 40px 30px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 1.05rem;
  padding: 14px 16px;
}
.btn-submit {
  padding: 16px 24px;
}
.faq-question {
  padding: 18px 20px;
}
.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  .about-content h2,
  .banner-content h1,
  .section-title h2 {
    font-size: 1.75rem;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .service-card p {
    font-size: 1rem;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(13, 110, 253, 0.25);
  border-radius: 50px;
  margin-bottom: 15px;
}
.badge span:first-child {
  font-size: 1.3rem;
  background: 0 0;
}
.badge span:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d6efd;
  background: 0 0;
  padding: 0;
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrapper .field-icon {
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  z-index: 2;
  pointer-events: none;
}
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding-right: 48px;
  padding-left: 15px;
  box-sizing: border-box;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
