:root {
  --primary: #0d6efd;
  --dark: #0c1733;
  --text: #2c2c2c;
  --muted: #6f7787;
  --light: #f6f8fc;
  --white: #ffffff;
  --border: #e6eaf2;
  --shadow: 0 10px 30px rgba(10, 30, 60, 0.08);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1150px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #0f9d8a;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.topbar-links {
  display: flex;
  gap: 20px;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  color: var(--dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(8, 18, 44, 0.65), rgba(8, 18, 44, 0.65)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-kicker {
  color: #8cc0ff;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-text {
  font-size: 19px;
  max-width: 650px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

.section {
  padding: 90px 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-tag.light {
  color: #8cc0ff;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--dark);
}

.section-title.light {
  color: #fff;
}

.section-text {
  color: var(--muted);
  font-size: 18px;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: start;
}

.about-card {
  display: grid;
  gap: 18px;
}

.about-box,
.service-card,
.stat-box,
.feature-card,
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-box {
  padding: 24px;
}

.about-box h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.service-card {
  padding: 28px;
}

.service-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-box {
  box-shadow: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  padding: 42px 20px;
}

.stat-box:last-child {
  border-left: none;
}

.stat-number {
  font-size: 54px;
  font-weight: 800;
  color: var(--dark);
}

.stat-number::before {
  content: "+";
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.feature-card {
  padding: 28px;
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.contact-card {
  padding: 28px;
}

.contact-card p {
  margin-bottom: 10px;
}

.footer {
  background: #081022;
  color: #fff;
  padding: 22px 0;
}

.footer-inner {
  text-align: center;
}

.floating-btn {
  position: fixed;
  left: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  z-index: 999;
}

.floating-btn.whatsapp {
  background: #25d366;
  bottom: 90px;
}

.floating-btn.call {
  background: #0b5ed7;
  bottom: 20px;
}

@media (max-width: 991px) {
  .about-grid,
  .contact-grid,
  .services-grid,
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .topbar-inner,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-grid,
  .contact-grid,
  .services-grid,
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-text,
  .section-text {
    font-size: 16px;
  }
}
.blog-hero {
  padding: 90px 0 50px;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-content {
  padding: 34px;
}

.post-meta {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.featured-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 16px;
}

.featured-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.blog-section-title {
  font-size: 34px;
  color: var(--dark);
  margin-bottom: 26px;
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body h3 {
  color: var(--dark);
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-card-body p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--primary);
  font-weight: 700;
}

.blog-link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .featured-post,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-image {
    grid-column: span 2;
  }

  .featured-content {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .featured-post,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-image,
  .featured-content {
    grid-column: auto;
  }

  .featured-image img {
    min-height: 260px;
  }

  .featured-content {
    padding: 24px;
  }

  .blog-section-title {
    font-size: 28px;
  }
}
.services-hero {
  padding: 90px 0 50px;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-detail-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-detail-icon {
  font-size: 38px;
}

.service-detail-card h2 {
  color: var(--dark);
  font-size: 26px;
  line-height: 1.5;
}

.service-detail-card p {
  color: var(--muted);
  font-size: 17px;
  flex-grow: 1;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.benefit-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

.benefit-box h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 24px;
}

.benefit-box p {
  color: var(--muted);
}

.services-cta {
  background: var(--dark);
}

.services-cta-text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .services-page-grid,
  .service-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .services-page-grid,
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card,
  .benefit-box {
    padding: 22px;
  }

  .service-detail-card h2 {
    font-size: 22px;
  }
}
.projects-hero {
  padding: 90px 0 50px;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card-body {
  padding: 24px;
}

.project-category {
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card h2 {
  color: var(--dark);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 220px;
  }

  .project-card h2 {
    font-size: 21px;
  }
}
.navbar {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-menu a {
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(7, 19, 45, 0.72), rgba(7, 19, 45, 0.72)),
    url("../images/services.jpg") center/cover no-repeat;
  color: #fff;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: center;
}

.home-hero-content h1 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.25;
  margin: 16px 0;
  font-weight: 800;
}

.home-hero-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.hero-mini-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-mini-stats div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 140px;
}

.hero-mini-stats strong {
  display: block;
  font-size: 26px;
  color: #fff;
  margin-bottom: 4px;
}

.hero-mini-stats span {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.hero-feature-card {
  background: rgba(255,255,255,0.96);
  color: var(--dark);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-feature-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.hero-feature-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-feature-card ul li {
  color: var(--muted);
  position: relative;
  padding-right: 18px;
}

.hero-feature-card ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  right: 0;
  top: 0;
}

.hero-card-link {
  color: var(--primary);
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.intro-cards {
  display: grid;
  gap: 18px;
}

.intro-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.intro-card h3 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 24px;
}

.intro-card p {
  color: var(--muted);
}

.intro-actions {
  margin-top: 20px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.home-service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.service-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.service-emoji {
  font-size: 28px;
}

.home-service-card h3 {
  color: var(--dark);
  font-size: 22px;
}

.home-service-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.home-service-card a {
  color: var(--primary);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.why-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}

.why-box h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 22px;
}

.why-box p {
  color: var(--muted);
}

.home-stats-grid .stat-box {
  background: rgba(255,255,255,0.98);
}

.section-head-between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-link {
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-project-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mini-project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mini-project-body {
  padding: 22px;
}

.mini-project-body span {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mini-project-body h3 {
  color: var(--dark);
  font-size: 22px;
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.testimonial-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.testimonial-card h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 18px;
}

.testimonial-card span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.home-cta {
  background: var(--dark);
}

.home-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1733 0%, #12224b 100%);
  border-radius: 28px;
  padding: 36px;
  color: #fff;
}

.home-cta-box h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.home-cta-box p {
  color: rgba(255,255,255,0.85);
  max-width: 680px;
}

.home-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-advanced {
  background: #081022;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 26px;
  padding-bottom: 26px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255,255,255,0.8);
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
}

@media (max-width: 991px) {
  .home-hero-grid,
  .intro-grid,
  .home-services-grid,
  .why-grid,
  .featured-projects-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-feature-card,
  .home-cta-box {
    grid-column: span 2;
  }

  .home-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head-between {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .home-hero-grid,
  .intro-grid,
  .home-services-grid,
  .why-grid,
  .featured-projects-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-card {
    grid-column: auto;
  }

  .home-hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .home-hero-content p,
  .home-cta-box p {
    font-size: 16px;
  }

  .hero-mini-stats {
    flex-direction: column;
  }

  .home-cta-box {
    padding: 26px;
  }

  .home-cta-box h2 {
    font-size: 28px;
  }
}
/* ===== Visual Polish Upgrade ===== */

:root {
  --primary: #0b63f6;
  --primary-dark: #084fc7;
  --accent: #11b59a;
  --dark: #0b1736;
  --dark-2: #12224b;
  --text: #2d3648;
  --muted: #6d7688;
  --light: #f7f9fd;
  --white: #ffffff;
  --border: #e8edf5;
  --shadow-sm: 0 8px 24px rgba(12, 23, 54, 0.06);
  --shadow-md: 0 14px 34px rgba(12, 23, 54, 0.09);
  --shadow-lg: 0 18px 40px rgba(12, 23, 54, 0.14);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

/* تحسين عام */
body {
  color: var(--text);
  background: #fff;
}

.section {
  padding: 100px 0;
}

.section-title {
  letter-spacing: -0.5px;
}

.section-text {
  max-width: 850px;
}

.section-tag {
  display: inline-block;
  background: rgba(11, 99, 246, 0.08);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 800;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  color: #d8e8ff;
}

/* الهيدر */
.topbar {
  background: linear-gradient(90deg, #0f9d8a 0%, #0c8a8d 100%);
  font-weight: 600;
}

.navbar {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 23, 54, 0.06);
  box-shadow: 0 6px 20px rgba(10, 23, 54, 0.04);
}

.nav-inner {
  min-height: 74px;
}

.logo-image img {
  height: 44px;
}

.nav-menu a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* الأزرار */
.btn {
  border-radius: 12px;
  padding: 14px 26px;
  font-weight: 800;
  box-shadow: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2c7fff 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 99, 246, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(11, 99, 246, 0.28);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* الهيرو */
.home-hero {
  min-height: 95vh;
}

.home-hero-content h1 {
  max-width: 780px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.18);
}

.home-hero-content p {
  line-height: 1.95;
}

.hero-badge {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-mini-stats div {
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.hero-feature-card {
  border: 1px solid rgba(11, 23, 54, 0.06);
  box-shadow: var(--shadow-lg);
}

.hero-feature-card h3 {
  color: var(--dark);
}

/* كروت عامة */
.intro-card,
.home-service-card,
.why-box,
.mini-project-card,
.testimonial-card,
.service-card,
.service-detail-card,
.blog-card,
.project-card,
.value-card,
.benefit-box,
.about-box,
.feature-card,
.contact-card,
.contact-info-card,
.contact-form-card,
.sidebar-card,
.article-content {
  border: 1px solid rgba(11, 23, 54, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intro-card:hover,
.home-service-card:hover,
.why-box:hover,
.mini-project-card:hover,
.testimonial-card:hover,
.service-card:hover,
.service-detail-card:hover,
.blog-card:hover,
.project-card:hover,
.value-card:hover,
.benefit-box:hover,
.about-box:hover,
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 99, 246, 0.12);
}

/* intro */
.intro-card h3,
.home-service-card h3,
.why-box h3,
.mini-project-body h3,
.testimonial-card h4 {
  letter-spacing: -0.3px;
}

/* services */
.home-service-card {
  position: relative;
  overflow: hidden;
}

.home-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-emoji {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(11, 99, 246, 0.08);
  font-size: 24px;
}

/* why us */
.why-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

/* stats */
.home-stats-grid {
  border: none;
  gap: 20px;
  background: transparent;
}

.home-stats-grid .stat-box {
  border: none;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 50px;
  color: var(--primary);
}

.stat-box p {
  color: var(--dark);
  font-weight: 700;
}

/* projects */
.mini-project-card img,
.project-card img,
.blog-card img,
.featured-image img,
.article-cover,
.about-page-image img {
  transition: transform 0.45s ease;
}

.mini-project-card:hover img,
.project-card:hover img,
.blog-card:hover img {
  transform: scale(1.04);
}

.mini-project-card,
.project-card,
.blog-card {
  overflow: hidden;
}

/* testimonials */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 48px;
  color: rgba(11, 99, 246, 0.12);
  font-weight: 800;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  min-height: 120px;
}

/* faq */
.faq-item {
  box-shadow: none;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(11, 99, 246, 0.16);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  font-size: 18px;
}

/* cta */
.home-cta-box,
.services-cta,
.section-dark {
  position: relative;
  overflow: hidden;
}

.home-cta-box::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.home-cta-box::after {
  content: "";
  position: absolute;
  inset: 20px 20px auto auto;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.home-cta-box > * {
  position: relative;
  z-index: 1;
}

/* footer */
.footer-advanced {
  background: linear-gradient(180deg, #081022 0%, #0b1730 100%);
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
}

.footer-grid a:hover {
  color: #ffffff;
}

/* أزرار واتساب والاتصال */
.floating-btn {
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

/* ترويسات الأقسام */
.section-head-between {
  margin-bottom: 30px;
}

/* تحسينات المقال */
.article-content h2 {
  letter-spacing: -0.4px;
}

.article-content ul li {
  margin-bottom: 8px;
}

/* تحسين للفورم */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.08);
}

/* responsive polish */
@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-inner {
    min-height: 72px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }

  .logo-image img {
    height: 38px;
  }

  .home-hero-content h1 {
    font-size: 34px;
  }

  .hero-mini-stats strong {
    font-size: 22px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 30px;
  }

  .faq-item summary {
    font-size: 16px;
  }
}
/* ===== Gulf Luxury Arabic Theme ===== */

:root {
  --primary: #0f2247;
  --primary-dark: #0b1833;
  --gold: #c8a96b;
  --gold-dark: #b89352;
  --accent: #12305f;
  --dark: #081427;
  --dark-2: #102447;
  --text: #243044;
  --muted: #6d7788;
  --light: #f8f7f3;
  --white: #ffffff;
  --border: #ece7dc;
  --shadow-sm: 0 10px 24px rgba(8, 20, 39, 0.06);
  --shadow-md: 0 16px 36px rgba(8, 20, 39, 0.10);
  --shadow-lg: 0 22px 48px rgba(8, 20, 39, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

body {
  background: #fff;
  color: var(--text);
}

.section {
  padding: 110px 0;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  min-height: 42px;
}

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 34, 71, 0.07);
  box-shadow: 0 8px 24px rgba(8, 20, 39, 0.04);
}

.nav-inner {
  min-height: 82px;
}

.logo-image img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-menu {
  gap: 22px;
}

.nav-menu a {
  position: relative;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold-dark);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* General headings */
.section-tag {
  display: inline-block;
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-tag.light {
  background: rgba(200, 169, 107, 0.16);
  color: #f3ddaf;
}

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.35;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title.light {
  color: #fff;
}

.section-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 800;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(200, 169, 107, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(200, 169, 107, 0.30);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 169, 107, 0.16);
  border: 1px solid rgba(200, 169, 107, 0.22);
  color: #f6e6bf;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.home-hero-content h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.22;
  margin: 18px 0;
  font-weight: 800;
  text-shadow: 0 6px 24px rgba(0,0,0,0.20);
}

.home-hero-content p {
  font-size: 19px;
  line-height: 2;
  color: rgba(255,255,255,0.88);
  max-width: 760px;
}

.hero-mini-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-mini-stats div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 145px;
  backdrop-filter: blur(10px);
}

.hero-mini-stats strong {
  display: block;
  font-size: 26px;
  color: #fff;
  margin-bottom: 4px;
}

.hero-mini-stats span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.hero-feature-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(15, 34, 71, 0.06);
  color: var(--text);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-feature-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 16px;
}

.hero-feature-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-feature-card ul li {
  color: var(--muted);
  position: relative;
  padding-right: 18px;
}

.hero-feature-card ul li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 18px;
}

.hero-card-link {
  color: var(--gold-dark);
  font-weight: 800;
}

/* Cards */
.intro-card,
.home-service-card,
.why-box,
.mini-project-card,
.testimonial-card,
.service-card,
.service-detail-card,
.blog-card,
.project-card,
.value-card,
.benefit-box,
.about-box,
.feature-card,
.contact-card,
.contact-info-card,
.contact-form-card,
.sidebar-card,
.article-content,
.sidebar-card,
.about-page-image img {
  border: 1px solid rgba(15, 34, 71, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intro-card:hover,
.home-service-card:hover,
.why-box:hover,
.mini-project-card:hover,
.testimonial-card:hover,
.service-card:hover,
.service-detail-card:hover,
.blog-card:hover,
.project-card:hover,
.value-card:hover,
.benefit-box:hover,
.about-box:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 107, 0.18);
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.intro-cards {
  display: grid;
  gap: 18px;
}

.intro-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 24px;
  padding: 26px;
}

.intro-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 24px;
}

.intro-card p {
  color: var(--muted);
}

/* Services */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.home-service-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.home-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.service-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-emoji {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(200, 169, 107, 0.12);
  font-size: 24px;
}

.home-service-card h3 {
  color: var(--primary);
  font-size: 22px;
}

.home-service-card p {
  color: var(--muted);
  margin-bottom: 15px;
}

.home-service-card a {
  color: var(--gold-dark);
  font-weight: 800;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.why-box {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 22px;
  padding: 28px;
}

.why-box h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 22px;
}

.why-box p {
  color: var(--muted);
}

/* Stats */
.section-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.home-stats-grid {
  border: none;
  gap: 20px;
  background: transparent;
}

.home-stats-grid .stat-box {
  background: rgba(255,255,255,0.98);
  border: none;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 50px;
  font-weight: 800;
  color: var(--gold-dark);
}

.stat-box p {
  color: var(--primary);
  font-weight: 700;
}

/* Section header split */
.section-head-between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-link {
  color: var(--gold-dark);
  font-weight: 800;
  white-space: nowrap;
}

/* Projects */
.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-project-card,
.project-card,
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.mini-project-card img,
.project-card img,
.blog-card img,
.featured-image img,
.article-cover,
.about-page-image img {
  transition: transform 0.45s ease;
}

.mini-project-card:hover img,
.project-card:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

.mini-project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mini-project-body {
  padding: 22px;
}

.mini-project-body span,
.project-category,
.post-meta {
  color: var(--gold-dark);
  font-weight: 800;
}

.mini-project-body h3,
.project-card h2,
.blog-card-body h3,
.featured-content h2,
.article-content h2,
.about-page-content h2,
.contact-info-card h2,
.contact-form-card h2 {
  color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 22px;
  padding: 24px;
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 52px;
  color: rgba(200, 169, 107, 0.16);
  font-weight: 800;
  line-height: 1;
}

.testimonial-card p {
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 118px;
  position: relative;
  z-index: 1;
}

.testimonial-card h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(200, 169, 107, 0.24);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}

.faq-item p {
  color: var(--muted);
}

/* CTA */
.home-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.home-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.home-cta-box::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.08);
}

.home-cta-box::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.home-cta-box > * {
  position: relative;
  z-index: 1;
}

.home-cta-box h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.home-cta-box p {
  color: rgba(255,255,255,0.84);
  max-width: 680px;
}

.home-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.footer-advanced {
  background: linear-gradient(180deg, #07101f 0%, #0c1730 100%);
  color: #fff;
  padding: 64px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  padding-bottom: 26px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255,255,255,0.8);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
}

/* Floating buttons */
.floating-btn {
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

/* Forms */
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200, 169, 107, 0.6);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.10);
}

/* Responsive */
@media (max-width: 991px) {
  .section {
    padding: 85px 0;
  }

  .home-hero-grid,
  .intro-grid,
  .home-services-grid,
  .why-grid,
  .featured-projects-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-feature-card,
  .home-cta-box {
    grid-column: span 2;
  }

  .home-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head-between {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 72px 0;
  }

  .logo-image img {
    height: 38px;
  }

  .home-hero,
  .hero {
    min-height: auto;
    padding: 88px 0 72px;
  }

  .home-hero-grid,
  .intro-grid,
  .home-services-grid,
  .why-grid,
  .featured-projects-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-card {
    grid-column: auto;
  }

  .home-hero-content h1 {
    font-size: 34px;
  }

  .hero-mini-stats {
    flex-direction: column;
  }

  .section-title {
    font-size: 30px;
  }

  .home-cta-box {
    padding: 28px;
  }

  .home-cta-box h2 {
    font-size: 30px;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 6px 0;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #c8a96b;
}
/* ===== About Gulf Luxury Page ===== */

.about-gulf-hero {
  position: relative;
  padding: 110px 0 70px;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/about.jpg") center/cover no-repeat;
  color: #fff;
}

.about-gulf-overlay {
  position: absolute;
  inset: 0;
}

.about-gulf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.about-gulf-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 18px 0;
  font-weight: 800;
}

.about-gulf-hero-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  max-width: 760px;
}

.about-gulf-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-contact-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 30px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 34, 71, 0.06);
}

.about-contact-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
}

.about-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 34, 71, 0.08);
}

.about-contact-item:last-child {
  border-bottom: none;
}

.about-contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.about-contact-item span {
  display: block;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}

.about-contact-item a,
.about-contact-item div {
  color: var(--muted);
  line-height: 1.8;
}

.about-gulf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-gulf-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 30px;
}

.about-gulf-card h2 {
  color: var(--primary);
  font-size: 34px;
  margin: 14px 0 18px;
  font-weight: 800;
}

.about-gulf-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 14px;
}

.about-mini-tag {
  display: inline-block;
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.english-card,
.english-block {
  text-align: left;
}

.english-block p,
.english-card p {
  line-height: 2;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 30px;
}

.vm-card h3 {
  color: var(--primary);
  font-size: 30px;
  margin: 14px 0 16px;
}

.vm-card p {
  color: var(--muted);
  line-height: 2;
  margin-bottom: 14px;
}

.english-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
}

.philosophy-wrap {
  max-width: 1180px;
}

.philosophy-card {
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  color: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.08);
}

.philosophy-card h2 {
  color: #fff;
  font-size: 40px;
  margin: 16px 0 24px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.philosophy-card p {
  color: rgba(255,255,255,0.88);
  line-height: 2;
  font-size: 17px;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-cta-box h2 {
  font-size: 38px;
  margin: 12px 0;
}

.about-cta-box p {
  color: rgba(255,255,255,0.84);
  max-width: 720px;
  line-height: 2;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .about-gulf-hero-grid,
  .about-gulf-grid,
  .vision-mission-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .about-gulf-hero {
    padding: 88px 0 60px;
  }

  .about-gulf-hero-content h1 {
    font-size: 34px;
  }

  .about-gulf-hero-content p,
  .about-gulf-card p,
  .vm-card p,
  .philosophy-card p {
    font-size: 16px;
  }

  .about-contact-card,
  .about-gulf-card,
  .vm-card,
  .philosophy-card,
  .about-cta-box {
    padding: 24px;
  }

  .philosophy-card h2,
  .about-cta-box h2 {
    font-size: 28px;
  }
}
/* ===== About Gulf Luxury Page ===== */

.about-gulf-hero {
  position: relative;
  padding: 110px 0 70px;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/about.jpg") center/cover no-repeat;
  color: #fff;
}

.about-gulf-overlay {
  position: absolute;
  inset: 0;
}

.about-gulf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.about-gulf-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 18px 0;
  font-weight: 800;
}

.about-gulf-hero-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  max-width: 760px;
}

.about-gulf-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-contact-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 30px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 34, 71, 0.06);
}

.about-contact-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
}

.about-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 34, 71, 0.08);
}

.about-contact-item:last-child {
  border-bottom: none;
}

.about-contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.about-contact-item span {
  display: block;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}

.about-contact-item a,
.about-contact-item div {
  color: var(--muted);
  line-height: 1.8;
}

.about-contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.about-dark-outline {
  border: 1px solid rgba(15, 34, 71, 0.16);
  color: var(--primary);
  background: transparent;
}

.about-dark-outline:hover {
  background: rgba(200, 169, 107, 0.08);
}

.about-gulf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-gulf-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 30px;
}

.about-gulf-card h2 {
  color: var(--primary);
  font-size: 34px;
  margin: 14px 0 18px;
  font-weight: 800;
}

.about-gulf-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 14px;
}

.about-mini-tag {
  display: inline-block;
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.english-card,
.english-block {
  text-align: left;
}

.english-block p,
.english-card p {
  line-height: 2;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 30px;
}

.vm-card h3 {
  color: var(--primary);
  font-size: 30px;
  margin: 14px 0 16px;
}

.vm-card p {
  color: var(--muted);
  line-height: 2;
  margin-bottom: 14px;
}

.english-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
}

.philosophy-wrap {
  max-width: 1180px;
}

.philosophy-card {
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  color: #fff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.08);
}

.philosophy-card h2 {
  color: #fff;
  font-size: 40px;
  margin: 16px 0 24px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.philosophy-card p {
  color: rgba(255,255,255,0.88);
  line-height: 2;
  font-size: 17px;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-cta-box h2 {
  font-size: 38px;
  margin: 12px 0;
}

.about-cta-box p {
  color: rgba(255,255,255,0.84);
  max-width: 720px;
  line-height: 2;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating WhatsApp & Call Buttons */
.floating-contact {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 27px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: #1565ff;
}

@media (max-width: 991px) {
  .about-gulf-hero-grid,
  .about-gulf-grid,
  .vision-mission-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .about-gulf-hero {
    padding: 88px 0 60px;
  }

  .about-gulf-hero-content h1 {
    font-size: 34px;
  }

  .about-gulf-hero-content p,
  .about-gulf-card p,
  .vm-card p,
  .philosophy-card p {
    font-size: 16px;
  }

  .about-contact-card,
  .about-gulf-card,
  .vm-card,
  .philosophy-card,
  .about-cta-box {
    padding: 24px;
  }

  .philosophy-card h2,
  .about-cta-box h2 {
    font-size: 28px;
  }

  .floating-contact {
    left: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
/* ===== Services Gulf Luxury Page ===== */

.services-gulf-hero {
  position: relative;
  padding: 110px 0 70px;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/services.jpg") center/cover no-repeat;
  color: #fff;
}

.services-gulf-overlay {
  position: absolute;
  inset: 0;
}

.services-gulf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.services-gulf-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 18px 0;
  font-weight: 800;
}

.services-gulf-hero-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  max-width: 760px;
}

.services-gulf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.services-side-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 30px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 34, 71, 0.06);
}

.services-side-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
}

.services-side-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.services-side-card li {
  color: var(--muted);
  position: relative;
  padding-right: 18px;
}

.services-side-card li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 18px;
}

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 24px;
  align-items: start;
}

.service-main-card,
.service-contact-box,
.service-detail-lux-card,
.facade-highlight-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
}

.service-main-card {
  padding: 30px;
}

.service-main-card h2 {
  color: var(--primary);
  font-size: 34px;
  margin: 14px 0 18px;
  font-weight: 800;
}

.service-main-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 14px;
}

.service-contact-box {
  padding: 28px;
}

.service-contact-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 26px;
}

.service-contact-box p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.9;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.service-detail-lux-card {
  padding: 28px;
}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold-dark);
  font-size: 22px;
  flex-shrink: 0;
}

.service-detail-head h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 4px;
}

.service-detail-head span {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 14px;
}

.arabic-list,
.english-list {
  line-height: 2;
}

.arabic-list {
  padding-right: 18px;
  color: var(--muted);
  margin-bottom: 16px;
}

.english-list {
  padding-left: 20px;
  color: var(--muted);
}

.facade-highlight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.facade-text h2 {
  color: var(--primary);
  font-size: 38px;
  margin: 14px 0 18px;
}

.facade-text p {
  color: var(--muted);
  line-height: 2;
  font-size: 17px;
  margin-bottom: 14px;
}

.facade-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services-dark-outline {
  border: 1px solid rgba(15, 34, 71, 0.16);
  color: var(--primary);
  background: transparent;
}

.services-dark-outline:hover {
  background: rgba(200, 169, 107, 0.08);
}

.services-cta-gulf {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.services-cta-gulf-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.services-cta-gulf-box h2 {
  font-size: 38px;
  margin: 12px 0;
}

.services-cta-gulf-box p {
  color: rgba(255,255,255,0.84);
  max-width: 720px;
  line-height: 2;
}

.services-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .services-gulf-hero-grid,
  .service-section-grid,
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .facade-highlight-card,
  .services-cta-gulf-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .services-gulf-hero {
    padding: 88px 0 60px;
  }

  .services-gulf-hero-content h1 {
    font-size: 34px;
  }

  .services-gulf-hero-content p,
  .service-main-card p,
  .service-contact-box p,
  .facade-text p {
    font-size: 16px;
  }

  .services-side-card,
  .service-main-card,
  .service-contact-box,
  .service-detail-lux-card,
  .facade-highlight-card,
  .services-cta-gulf-box {
    padding: 24px;
  }

  .facade-text h2,
  .services-cta-gulf-box h2 {
    font-size: 28px;
  }
}
/* ===== Contact Gulf Luxury Page ===== */

.contact-gulf-hero {
  position: relative;
  padding: 110px 0 70px;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/contact.jpg") center/cover no-repeat;
  color: #fff;
}

.contact-gulf-overlay {
  position: absolute;
  inset: 0;
}

.contact-gulf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.contact-gulf-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 18px 0;
  font-weight: 800;
}

.contact-gulf-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  max-width: 760px;
}

.contact-gulf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-fast-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 30px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 34, 71, 0.06);
}

.contact-fast-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
}

.contact-fast-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 34, 71, 0.08);
}

.contact-fast-item:last-child {
  border-bottom: none;
}

.contact-fast-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-fast-item span {
  display: block;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-fast-item a,
.contact-fast-item div {
  color: var(--muted);
  line-height: 1.8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info-main-card,
.contact-why-card,
.contact-map-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
}

.contact-info-main-card,
.contact-why-card {
  padding: 30px;
}

.contact-info-main-card h2,
.contact-why-card h2,
.contact-map-text h2 {
  color: var(--primary);
  font-size: 34px;
  margin: 14px 0 18px;
  font-weight: 800;
}

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.service-areas-list span {
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.contact-mini-space {
  margin-top: 8px;
}

.working-hours-box {
  display: grid;
  gap: 12px;
}

.working-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 34, 71, 0.05);
}

.working-row strong {
  color: var(--primary);
}

.working-row span {
  color: var(--muted);
}

.emergency-row {
  background: rgba(21, 101, 255, 0.05);
  border-color: rgba(21, 101, 255, 0.10);
}

.why-contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.why-contact-list li {
  position: relative;
  padding-right: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.why-contact-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 18px;
}

.contact-map-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.contact-map-text {
  padding: 32px;
}

.contact-map-text p {
  color: var(--muted);
  line-height: 2;
  margin-bottom: 18px;
}

.contact-map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.google-map-frame {
  min-height: 420px;
}

.contact-final-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.contact-final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-final-cta-box h2 {
  font-size: 38px;
  margin: 12px 0;
}

.contact-final-cta-box p {
  color: rgba(255,255,255,0.84);
  max-width: 720px;
  line-height: 2;
}

.contact-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .contact-gulf-hero-grid,
  .contact-info-grid,
  .contact-map-card {
    grid-template-columns: 1fr;
  }

  .contact-final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .contact-gulf-hero {
    padding: 88px 0 60px;
  }

  .contact-gulf-content h1 {
    font-size: 34px;
  }

  .contact-gulf-content p,
  .contact-map-text p {
    font-size: 16px;
  }

  .contact-fast-card,
  .contact-info-main-card,
  .contact-why-card,
  .contact-map-text,
  .contact-final-cta-box {
    padding: 24px;
  }

  .contact-info-main-card h2,
  .contact-why-card h2,
  .contact-map-text h2,
  .contact-final-cta-box h2 {
    font-size: 28px;
  }

  .working-row {
    flex-direction: column;
  }

  .google-map-frame {
    min-height: 300px;
  }
}
/* ===== Blog Magazine Luxury Page ===== */

.blog-mag-hero {
  position: relative;
  padding: 110px 0 80px;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/featured-blog.jpg") center/cover no-repeat;
  color: #fff;
}

.blog-mag-overlay {
  position: absolute;
  inset: 0;
}

.blog-mag-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}

.blog-mag-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 18px auto;
  font-weight: 800;
}

.blog-mag-hero-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  max-width: 820px;
  margin: 0 auto;
}

.blog-mag-main-section {
  background: linear-gradient(180deg, #f8f7f3 0%, #ffffff 100%);
}

.blog-mag-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.42fr;
  gap: 28px;
  align-items: start;
}

.blog-featured-card,
.blog-side-card,
.blog-mag-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
}

.blog-featured-card {
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-featured-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-featured-content {
  padding: 30px;
}

.blog-cat {
  display: inline-block;
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.blog-featured-content h2 {
  color: var(--primary);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.45;
  margin-bottom: 14px;
}

.blog-featured-content p {
  color: var(--muted);
  line-height: 2;
  font-size: 17px;
  margin-bottom: 18px;
}

.blog-featured-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.blog-featured-meta i {
  color: var(--gold-dark);
  margin-left: 6px;
}

.blog-cats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.blog-cat-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 34, 71, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.blog-cat-pill.active {
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-dark);
  border-color: rgba(200, 169, 107, 0.22);
}

.blog-mag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-mag-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-mag-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-mag-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-mag-card:hover img {
  transform: scale(1.05);
}

.blog-mag-card-body {
  padding: 22px;
}

.blog-mag-card-body h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.55;
  margin: 12px 0;
}

.blog-mag-card-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.blog-card-meta a {
  color: var(--gold-dark);
  font-weight: 800;
}

.blog-mag-sidebar {
  display: grid;
  gap: 20px;
}

.blog-side-card {
  padding: 24px;
}

.blog-side-card h3 {
  color: var(--primary);
  font-size: 26px;
  margin: 14px 0 12px;
}

.blog-side-card p {
  color: var(--muted);
  line-height: 2;
}

.sidebar-full-btn {
  width: 100%;
  text-align: center;
  margin-top: 14px;
}

.blog-side-links {
  list-style: none;
  display: grid;
  gap: 14px;
}

.blog-side-links a {
  color: var(--muted);
  line-height: 1.9;
  font-weight: 600;
}

.blog-side-links a:hover {
  color: var(--gold-dark);
}

@media (max-width: 991px) {
  .blog-mag-layout,
  .blog-mag-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-mag-hero {
    padding: 88px 0 60px;
  }

  .blog-mag-hero-content h1 {
    font-size: 34px;
  }

  .blog-mag-hero-content p,
  .blog-featured-content p,
  .blog-mag-card-body p,
  .blog-side-card p {
    font-size: 16px;
  }

  .blog-featured-image img {
    height: 260px;
  }

  .blog-featured-content,
  .blog-side-card,
  .blog-mag-card-body {
    padding: 22px;
  }

  .blog-featured-content h2,
  .blog-mag-card-body h3,
  .blog-side-card h3 {
    font-size: 24px;
  }
}
/* ===== Projects Luxury Portfolio Page ===== */

.projects-lux-hero {
  position: relative;
  padding: 110px 0 70px;
  background:
    linear-gradient(rgba(7, 16, 33, 0.78), rgba(7, 16, 33, 0.76)),
    url("../images/projects-cover.jpg") center/cover no-repeat;
  color: #fff;
}

.projects-lux-overlay {
  position: absolute;
  inset: 0;
}

.projects-lux-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.projects-lux-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 18px 0;
  font-weight: 800;
}

.projects-lux-content p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  max-width: 760px;
}

.projects-lux-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.projects-lux-side-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 30px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 34, 71, 0.06);
}

.projects-lux-side-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
}

.projects-lux-side-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.projects-lux-side-card li {
  color: var(--muted);
  position: relative;
  padding-right: 18px;
}

.projects-lux-side-card li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 18px;
}

.projects-lux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-lux-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-lux-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.project-lux-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-lux-card:hover img {
  transform: scale(1.05);
}

.project-lux-body {
  padding: 24px;
}

.project-lux-body h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.5;
  margin: 10px 0 12px;
}

.project-lux-body p {
  color: var(--muted);
  line-height: 1.9;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  margin-top: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border: 1px solid rgba(15, 34, 71, 0.05);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: 24px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoSlide 26s linear infinite;
  gap: 26px;
  align-items: center;
}

.logo-item {
  width: 180px;
  height: 120px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 34, 71, 0.05);
  box-shadow: 0 8px 18px rgba(8, 20, 39, 0.04);
  flex-shrink: 0;
  padding: 18px;
}

.logo-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

@keyframes logoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.process-card,
.quality-lux-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 34px;
}

.process-head h2,
.quality-lux-card h2 {
  color: var(--primary);
  font-size: 38px;
  margin: 14px 0 12px;
}

.process-head p,
.quality-grid p {
  color: var(--muted);
  line-height: 2;
}

.process-grid,
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.process-list-ar,
.english-list {
  line-height: 2;
}

.process-list-ar {
  padding-right: 18px;
  color: var(--muted);
}

.projects-final-message-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
}

.projects-final-message-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.projects-final-message-box h2 {
  font-size: 40px;
  margin: 12px 0;
}

.projects-final-message-box p {
  color: rgba(255,255,255,0.86);
  line-height: 2;
  max-width: 760px;
}

.light-english p {
  color: rgba(255,255,255,0.82);
}

.projects-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .projects-lux-hero-grid,
  .projects-lux-grid,
  .process-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .projects-final-message-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-lux-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .projects-lux-hero {
    padding: 88px 0 60px;
  }

  .projects-lux-content h1 {
    font-size: 34px;
  }

  .projects-lux-content p,
  .project-lux-body p,
  .process-head p,
  .quality-grid p,
  .projects-final-message-box p {
    font-size: 16px;
  }

  .projects-lux-side-card,
  .process-card,
  .quality-lux-card,
  .projects-final-message-box {
    padding: 24px;
  }

  .projects-lux-grid {
    grid-template-columns: 1fr;
  }

  .project-lux-body h3,
  .process-head h2,
  .quality-lux-card h2,
  .projects-final-message-box h2 {
    font-size: 28px;
  }

  .logo-item {
    width: 150px;
    height: 100px;
  }
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c8a96b;
  color: #ffffff;
  transform: translateY(-3px);
}
/* ===== Premium Article Layout ===== */

.article-hero {
  padding: 90px 0 40px;
  background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
}

.article-title {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.35;
  color: var(--primary);
  margin: 14px 0 16px;
  font-weight: 800;
  max-width: 980px;
}

.article-subtitle {
  font-size: 19px;
  color: var(--muted);
  max-width: 900px;
  line-height: 2;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.55fr;
  gap: 30px;
  align-items: start;
}

.article-content {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 34px;
}

.article-cover {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 26px;
}

.article-content p {
  font-size: 18px;
  color: var(--text);
  line-height: 2.05;
  margin-bottom: 18px;
}

.article-content h2 {
  font-size: 34px;
  color: var(--primary);
  margin: 34px 0 16px;
  line-height: 1.4;
  font-weight: 800;
}

.article-content h3 {
  font-size: 26px;
  color: var(--primary);
  margin: 28px 0 14px;
  line-height: 1.5;
  font-weight: 800;
}

.article-content ul,
.article-content ol {
  margin: 0 0 20px 0;
  padding-right: 24px;
}

.article-content li {
  font-size: 18px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 8px;
}

.article-highlight-box {
  background: rgba(200, 169, 107, 0.10);
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 20px;
  padding: 22px;
  margin: 26px 0;
}

.article-highlight-box h3 {
  margin-top: 0;
}

.article-cta-box {
  margin-top: 34px;
  background: linear-gradient(135deg, #0c1d3d 0%, #162d59 100%);
  border-radius: 24px;
  padding: 28px;
  color: #fff;
}

.article-cta-box h3 {
  color: #fff;
  margin-top: 0;
}

.article-cta-box p {
  color: rgba(255,255,255,0.86);
}

.article-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.article-sidebar {
  display: grid;
  gap: 20px;
}

.sidebar-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.05);
  padding: 24px;
}

.sidebar-card h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 14px;
}

.related-posts {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
}

.related-posts a {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.9;
}

.related-posts a:hover {
  color: var(--gold-dark);
}

.article-meta-list {
  display: grid;
  gap: 10px;
}

.article-meta-list div {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 34, 71, 0.05);
  color: var(--muted);
}

.article-meta-list strong {
  color: var(--primary);
}

@media (max-width: 991px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .article-content,
  .sidebar-card {
    padding: 22px;
  }

  .article-cover {
    height: 260px;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .article-content h2 {
    font-size: 28px;
  }

  .article-content h3 {
    font-size: 22px;
  }
}
/* Comparison Table Section */
.comparison-section {
  background: linear-gradient(180deg, #f8f7f3 0%, #ffffff 100%);
}

.section-head-center {
  text-align: center;
  margin-bottom: 28px;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.comparison-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 71, 0.06);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.comparison-table thead th {
  background: linear-gradient(90deg, #0f8f86 0%, #119f93 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  padding: 22px 18px;
  text-align: center;
}

.comparison-table thead th:first-child {
  width: 18%;
}

.comparison-table tbody td {
  padding: 22px 18px;
  text-align: center;
  border-bottom: 1px solid #e8ecef;
  color: var(--text);
  font-size: 20px;
  vertical-align: middle;
}

.comparison-table tbody tr:nth-child(odd):not(.advantages-row):not(.disadvantages-row) td {
  background: #ffffff;
}

.comparison-table tbody tr:nth-child(even):not(.advantages-row):not(.disadvantages-row) td {
  background: #f4f5f7;
}

.advantages-row td {
  background: #eaf6ef !important;
  vertical-align: top;
}

.disadvantages-row td {
  background: #fbeeee !important;
  vertical-align: top;
}

.comparison-table ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.comparison-table ul li {
  position: relative;
  padding-right: 22px;
  line-height: 1.8;
  font-size: 18px;
}

.advantages-row ul li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

.disadvantages-row ul li::before {
  content: "✕";
  position: absolute;
  right: 0;
  top: 0;
  color: #ef4444;
  font-weight: 800;
}

@media (max-width: 767px) {
  .comparison-table thead th {
    font-size: 18px;
    padding: 16px 12px;
  }

  .comparison-table tbody td {
    font-size: 16px;
    padding: 16px 12px;
  }

  .comparison-table ul li {
    font-size: 15px;
  }
/* إظهار شريط الحلقات والمواسم */
.cv-single-text {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.cvs-shahid-wrapper {
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    position: relative !important;
    z-index: 10 !important;
}

