/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --hero-bg-dark: #072647;
  --hero-bg-gradient: linear-gradient(135deg, #06203d 0%, #093766 50%, #0c4a85 100%);
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #0284c7;
  --accent-hover: #0369a1;
  --accent-light: #e0f2fe;
  --gold: #f59e0b;
  --whatsapp: #22c55e;
  --whatsapp-hover: #16a34a;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 16px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 30px -10px rgba(15,23,42,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text-main);
  background-color: var(--bg-light);
  overflow-x: hidden !important;
  width: 100%;
}

body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Main Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Utility Header Bar */
.top-bar {
  background: #061d36;
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar-item i {
  color: #38bdf8;
  font-size: 0.95rem;
}

.top-bar-item a {
  color: #38bdf8;
  font-weight: 700;
  transition: var(--transition);
}

.top-bar-item a:hover {
  color: #ffffff;
}

/* Header Navigation (Floating Circular Pill Layout) */
.header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  background: transparent;
  padding: 0 16px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  background: #ffffff;
  border-radius: 50px; /* Circular rounded pill edges */
  padding: 0 28px;
  box-shadow: 0 10px 30px rgba(6, 29, 54, 0.12);
  border: 1.5px solid rgba(2, 132, 199, 0.18);
  transition: var(--transition);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-brand-logo-img {
  height: 56px;
  width: 56px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(2, 132, 199, 0.25));
}

.brand-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0284c7, #072647);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.brand-text h1 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #072647;
}

.brand-text span {
  font-size: 0.72rem;
  color: #0284c7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  color: #1e293b;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0284c7;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0284c7;
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid #0284c7;
  border-radius: 50px;
  color: #0284c7;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lang:hover {
  background: #e0f2fe;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* =========================================================
   HERO SECTION (Matching Reference Image Exact Layout)
========================================================= */
.hero-hassan {
  background: var(--hero-bg-gradient);
  position: relative;
  padding: 42px 0 50px 0;
  overflow: hidden;
  color: white;
}

/* Background Building Overlay Pattern */
.hero-hassan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

/* 3D Emblem Logo Background Watermark */
.hero-hassan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-image: url('images/logo-watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

.watermark-section-bg {
  position: relative;
}

.watermark-section-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background-image: url('images/logo-watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-grid-hassan {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-hassan {
  padding-right: 20px;
}

.sub-tagline {
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.hero-content-hassan h1 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-content-hassan p {
  color: #cbd5e1;
  font-size: 1.12rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

/* Button Group Matching Screenshot */
.btn-group-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.btn-call-hero {
  background: #0284c7;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-call-hero:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

.btn-whatsapp-hero {
  background: #22c55e;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp-hero:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.btn-explore-hero {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(6px);
}

.btn-explore-hero:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Right Card Container with Embedded Image & Floating Badge */
.hero-card-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.hero-card-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Bottom Badge Overlay on Right Image */
.hero-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 32, 61, 0.92);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-shield-icon {
  width: 44px;
  height: 44px;
  background: #0284c7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.badge-text-area h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.badge-text-area p {
  color: #7dd3fc;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

/* Floating Corner WhatsApp Button */
.floating-whatsapp-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.5);
  z-index: 9999;
  transition: transform 0.3s ease, background 0.3s ease;
}

.floating-whatsapp-fixed:hover {
  transform: scale(1.1);
  background: #16a34a;
}

/* =========================================================
   GENERAL SECTIONS
========================================================= */
.section {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(2, 132, 199, 0.14);
  border-color: #0284c7;
}

.service-card-img {
  height: 135px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  margin-bottom: 14px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li i {
  color: #10b981;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.service-card-footer .btn {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--primary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Feature Grid / Why Choose Us */
.features-section {
  background: var(--primary);
  color: white;
  padding: 45px 0;
}

.features-section .section-header {
  margin-bottom: 30px;
}

.features-section .section-header h2,
.features-section .section-header p {
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--primary-light);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Google Reviews Section & Marquee Slider */
.reviews-section {
  background: #f1f5f9;
  overflow: hidden;
  padding: 70px 0;
}

.google-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.google-title-text {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Continuous Marquee Container Moving Left to Right */
.reviews-marquee-container,
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0 25px 0;
  direction: ltr !important;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track,
.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  direction: ltr !important;
  animation: marqueeLeftToRight 30s linear infinite;
}

.marquee-track:hover,
.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.review-card {
  width: 360px;
  flex-shrink: 0;
  background: white;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html[dir="rtl"] .review-card {
  direction: rtl !important;
  text-align: right !important;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0f2fe;
}

.google-card-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.reviewer-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

/* FAQs Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  user-select: none;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* Page Hero */
.page-hero {
  background: var(--hero-bg-gradient);
  color: white;
  padding: 60px 0;
}

.page-hero h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
}

/* Service Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.detail-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.detail-card img {
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-light);
  padding: 14px;
  border-radius: var(--radius-sm);
}

.bullet-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 2px;
}

.bullet-item h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.bullet-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sidebar-wrapper {
  position: relative;
  height: 100%;
}

/* Sidebar Card (Smooth Sticky Scrolling with Page) */
.sidebar-card {
  background: white;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 105px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 90;
}

.sidebar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
}

.sidebar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
}

.info-item h6 {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}

.info-item p {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
}

/* Quick Form */
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.sidebar-card .btn {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  border-top: 1px solid var(--border);
}

.mobile-sticky-bar .bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #94a3b8;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Sub-Service Cards Grid (Matching User Reference Image Design) */
.subservice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.subservice-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  position: relative;
}

.subservice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.12);
  border-color: #0284c7;
}

.subservice-card-img {
  width: 100%;
  height: 125px !important;
  max-height: 125px !important;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.4s ease;
}

.subservice-card:hover .subservice-card-img {
  transform: scale(1.03);
}

.subservice-card-body {
  padding: 0 6px 6px 6px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: transparent;
  position: relative;
}

.subservice-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -24px;
  margin-bottom: 12px;
}

.subservice-card-header i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.subservice-card:hover .subservice-card-header i {
  background: #0284c7;
  transform: scale(1.08) rotate(5deg);
}

.subservice-card-header h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
  text-align: left;
  width: 100%;
}

.subservice-card-body p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
  text-align: left;
}

.subservice-btn {
  margin-top: auto;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.22);
  text-decoration: none;
  border: none;
}

.subservice-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.38);
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid-hassan,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content-hassan {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-hassan {
    padding: 28px 0 36px 0;
  }

  .hero-content-hassan {
    text-align: center;
    padding: 0 10px;
  }

  .sub-tagline {
    font-size: 0.78rem;
    padding: 5px 14px;
    margin: 0 auto 12px auto;
    display: inline-block;
    letter-spacing: 0.5px;
    border-radius: 50px;
  }

  .hero-content-hassan h1 {
    font-size: 1.78rem;
    line-height: 1.25;
    margin-bottom: 12px;
    text-align: center;
  }

  .hero-content-hassan p {
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0 auto 18px auto;
    text-align: center;
    max-width: 95%;
  }

  .section-header h2,
  .section-title h2 {
    font-size: 1.58rem;
    line-height: 1.3;
    text-align: center;
  }

  .section-header p,
  .section-title p {
    font-size: 0.94rem;
    line-height: 1.55;
    text-align: center;
  }

  .header {
    top: 8px;
    padding: 0 10px;
  }

  .navbar {
    height: 62px;
    padding: 0 14px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(6, 29, 54, 0.12);
    display: flex !important;
    direction: ltr !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
  }

  /* Hamburger Toggle on Visual LEFT Side */
  .mobile-toggle {
    display: block !important;
    font-size: 1.4rem !important;
    color: #072647 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px 6px !important;
    order: 1 !important;
  }

  /* Language Button in Visual CENTER */
  .header-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .btn-lang {
    display: inline-flex !important;
    padding: 5px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    background: #ffffff !important;
    border: 1.5px solid #0284c7 !important;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12) !important;
  }

  /* Brand Logo on Visual RIGHT Side */
  .brand-logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    order: 3 !important;
    margin-left: auto !important;
  }

  .site-brand-logo-img {
    width: 40px !important;
    height: 40px !important;
  }

  .brand-text h1 {
    font-size: 1.05rem !important;
    line-height: 1.1 !important;
  }

  .brand-text span {
    font-size: 0.65rem !important;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    width: auto;
    margin: 0;
    border-radius: 20px;
    height: auto;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 14px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-group-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .btn-call-hero,
  .btn-whatsapp-hero {
    flex: 1;
    min-width: 140px;
    padding: 11px 16px;
    font-size: 0.88rem;
    border-radius: 50px;
    justify-content: center;
    text-align: center;
  }

  .btn-explore-hero {
    margin: 10px auto 0 auto;
    display: inline-flex;
    padding: 9px 18px;
    font-size: 0.86rem;
    border-radius: 50px;
  }

  .detail-card {
    padding: 16px 12px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .subservice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .subservice-card {
    padding: 10px;
    border-radius: 16px;
    width: 100%;
  }

  .problems-detail-card,
  .brands-detail-card {
    padding: 16px 12px;
    margin-top: 16px;
    border-radius: 16px;
  }

  .hero-card-frame {
    margin-top: 20px;
    border-radius: 18px;
  }

  .hero-card-image {
    height: 200px;
    border-radius: 18px;
  }

  .subservice-card-img {
    height: 135px !important;
  }

  .subservice-card-header h4 {
    font-size: 1.12rem;
  }

  .subservice-card-body p {
    font-size: 0.90rem;
    line-height: 1.5;
  }

  .subservice-btn {
    padding: 9px 16px;
    font-size: 0.88rem;
  }

  body {
    padding-bottom: 20px;
  }

  .bullet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .navbar {
    padding: 0 10px;
  }

  .brand-text span {
    display: none;
  }

  .brand-text h1 {
    font-size: 0.98rem;
  }

  .btn-lang {
    padding: 4px 9px;
    font-size: 0.72rem;
  }

  .detail-card {
    padding: 14px 10px;
  }

  .subservice-card {
    padding: 8px;
  }

  .hero-content-hassan h1 {
    font-size: 1.68rem;
  }

  .btn-group-row {
    flex-direction: column;
  }

  .btn-call-hero,
  .btn-whatsapp-hero {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================================
   PROFESSIONAL SERVICED BRANDS CARD
========================================================= */
.brands-detail-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  padding: 28px 30px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.brands-detail-card:hover {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.brands-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #2563eb 50%, #0284c7 100%);
}

.brands-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.brands-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.18);
}

.brands-header-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.brands-header-text p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e293b;
  transition: all 0.25s ease;
}

.brand-item i {
  color: #0284c7;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand-item:hover {
  background: #ffffff;
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-card-header {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-detail-card {
    padding: 20px 18px;
  }
}

/* =========================================================
   PROFESSIONAL PROBLEMS / FAULTS CARD DESIGN
========================================================= */
.problems-detail-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  padding: 24px 28px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.problems-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 50%, #0284c7 100%);
}

.problems-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.problems-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15);
}

.problems-header-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.problems-header-text p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.problems-header-text p a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 700;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.problem-item:hover {
  background: #ffffff;
  border-color: #fca5a5;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.08);
}

.problem-badge {
  color: #ef4444;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.problem-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.problem-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .problems-card-header {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================================
   EXPERIENCE & COMPLETED PROJECTS STATS SECTION
========================================================= */
.experience-stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 42px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: #0284c7;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.25);
}

.stat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-box {
    padding: 16px 10px;
    border-radius: 14px;
  }
  .stat-icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-radius: 10px;
  }
  .stat-number {
    font-size: 1.55rem;
  }
  .stat-title {
    font-size: 0.84rem;
    margin-bottom: 4px;
  }
  .stat-desc {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

/* =========================================================
   ARABIC (RTL) STYLING & FONTS
========================================================= */
html[dir="rtl"] body {
  font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .brand-logo {
  flex-direction: row;
}

html[dir="rtl"] .brand-text {
  text-align: right;
}

html[dir="rtl"] .nav-links {
  direction: rtl;
}

html[dir="rtl"] .nav-links a.active::after {
  right: 0;
  left: auto;
}

html[dir="rtl"] .hero-content-hassan {
  padding-right: 0;
  padding-left: 20px;
}

html[dir="rtl"] .hero-badge-pill i,
html[dir="rtl"] .btn-call-hero i,
html[dir="rtl"] .btn-whatsapp-hero i,
html[dir="rtl"] .btn-explore-hero i {
  margin-left: 8px;
  margin-right: 0;
}

html[dir="rtl"] .trust-item i {
  margin-left: 6px;
  margin-right: 0;
}

html[dir="rtl"] .service-card-body,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .problems-detail-card,
html[dir="rtl"] .brands-detail-card,
html[dir="rtl"] .detail-card,
html[dir="rtl"] .sidebar-card,
html[dir="rtl"] .stat-box,
html[dir="rtl"] .subservice-card-body,
html[dir="rtl"] .faq-item {
  text-align: right;
}

html[dir="rtl"] .service-list li i {
  margin-left: 8px;
  margin-right: 0;
}

html[dir="rtl"] .problem-badge {
  margin-left: 14px;
  margin-right: 0;
}

html[dir="rtl"] .problems-icon-wrap,
html[dir="rtl"] .brands-icon-wrap {
  margin-left: 16px;
  margin-right: 0;
}

html[dir="rtl"] .info-item i {
  margin-left: 14px;
  margin-right: 0;
}

html[dir="rtl"] .brand-item i {
  margin-left: 8px;
  margin-right: 0;
}

html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .faq-question {
  direction: rtl;
}

html[dir="rtl"] .faq-question i {
  margin-right: auto;
  margin-left: 0;
}

/* Fixed Circular Floating Action Buttons (Call Left, WhatsApp Right) */
.call-float-btn,
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.55rem;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.call-float-btn {
  left: 24px;
  right: auto !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  animation: pulseCall 2.5s infinite;
}

.whatsapp-float-btn {
  right: 24px;
  left: auto !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  animation: pulseWhatsapp 2.5s infinite;
}

.call-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
  color: #ffffff !important;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff !important;
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

html[dir="rtl"] .footer-col {
  text-align: right;
}

html[dir="rtl"] .footer-col p i {
  margin-left: 8px;
  margin-right: 0;
}

@media (max-width: 768px) {
  .call-float-btn,
  .whatsapp-float-btn {
    bottom: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }
  .call-float-btn {
    left: 16px;
    right: auto !important;
  }
  .whatsapp-float-btn {
    right: 16px;
    left: auto !important;
  }
}




