:root {
  --background: #f8fbff;
  --foreground: #1a2332;
  --primary: #0a3d62;
  --primary-foreground: #ffffff;
  --secondary: #ebf4fa;
  --secondary-foreground: #0a3d62;
  --accent: #1392ab;
  --accent-foreground: #ffffff;
  --muted: #ebf4fa;
  --muted-foreground: #6b7a8d;
  --card: #ffffff;
  --card-foreground: #1a2332;
  --border: #d1e7f7;
  --input: #d6e8f5;
  --ring: #17a8c4;
  --radius: 0.75rem;
  --font-sans: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  --primary: #0a3d62;
  --accent: #1392ab;
  --white: #ffffff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --font: "Cairo", "IBM Plex Sans Arabic", sans-serif;
}

 * {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

 .text-gradient-primary {
  background: linear-gradient(135deg, #ffffff 0%, #b8e4f0 50%, #17a8c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-dark {
  background: linear-gradient(135deg, #0a3d62 0%, #17a8c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(214, 232, 245, 0.8);
}

.glass-dark {
  background: rgba(10, 61, 98, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(23, 168, 196, 0.2);
}

.hero-bg {
  background: linear-gradient(
    145deg,
    #0a3d62 0%,
    #0d5280 40%,
    #0e6b8a 70%,
    #17a8c4 100%
  );
}

.section-bg-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #ebf4fa 100%);
}

.cta-bg {
  background: linear-gradient(
    135deg,
    #062840 0%,
    #0a3d62 40%,
    #0d5280 70%,
    #0e6b8a 100%
  );
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(23, 168, 196, 0.15);
  animation: floatBubble var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: floatParticle var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
}

.service-card-hover {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.service-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(10, 61, 98, 0.15);
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border-radius: var(--radius);
}

.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

 @keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 1;
  }
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }

  33% {
    transform: translateY(-20px) translateX(10px) rotate(120deg);
    opacity: 0.7;
  }

  66% {
    transform: translateY(10px) translateX(-8px) rotate(240deg);
    opacity: 0.4;
  }
}

@keyframes slideInBlur {
  0% {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes scaleInBlur {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) blur(0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes wave {
  0%,
  100% {
    d: path(
      "M0,40 C150,80 350,0 500,40 C650,80 850,0 1000,40 L1000,100 L0,100 Z"
    );
  }

  50% {
    d: path(
      "M0,60 C150,20 350,80 500,60 C650,20 850,80 1000,60 L1000,100 L0,100 Z"
    );
  }
}

@keyframes counter-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

 @media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

 .header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition:
    background-color 0.5s ease,
    backdrop-filter 0.5s ease,
    box-shadow 0.5s ease,
    padding 0.5s ease;
}

.header.scrolled {
  padding: 8px 0;
  background: rgba(10, 61, 98, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.2);
}

 .header-container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

 .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  font-size: 22px;
  font-weight: 800;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 16px;
  font-weight: 800;
}

.logo-text span {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.75;
  direction: ltr;
}

 .desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-link {
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

 .desktop-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.whatsapp-btn,
.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.whatsapp-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

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

.phone-btn:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(23, 168, 196, 0.25);
}

.whatsapp-btn svg,
.phone-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

 .menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1100;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

 .mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
     background: rgba(10, 61, 98, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  padding: 10px;
 
}

.mobile-menu-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
   background: rgba(10, 61, 98, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
   background: rgba(10, 61, 98, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

 .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
   background: rgba(10, 61, 98, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
     background: rgba(10, 61, 98, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.chevron {
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mobile-nav-link:hover .chevron {
  transform: translateX(-5px);
}

 .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 24px;;
   background: rgba(10, 61, 98, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-whatsapp,
.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  transition: background-color 0.2s ease;
}

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

.mobile-whatsapp:hover {
  background: var(--green-dark);
}

.mobile-phone {
  color: var(--primary);
  background: var(--white);
}

.mobile-phone:hover {
  color: var(--white);
  background: var(--accent);
}

.mobile-whatsapp svg,
.mobile-phone svg {
  width: 22px;
  height: 22px;
}

 @media (max-width: 1100px) {
  .desktop-nav {
    gap: 0;
  }

  .nav-link {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 13px;
  }

  .desktop-ctas {
    gap: 7px;
  }

  .whatsapp-btn,
  .phone-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

 @media (max-width: 991px) {
  .desktop-nav,
  .desktop-ctas {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

 @media (max-width: 480px) {
  .header-container {
    width: calc(100% - 28px);
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text strong {
    font-size: 14px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .mobile-menu-content {
    padding-left: 18px;
    padding-right: 18px;
  }
}

 @media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

 .hero-section {
  min-height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(
    145deg,
    #0a3d62 0%,
    #0d5280 40%,
    #0e6b8a 70%,
    #17a8c4 100%
  );
  isolation: isolate;
}

 .hero-background {
  z-index: 0;
  overflow: hidden;
}

.hero-background-image {
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.9);
}

.hero-gradient {
  background: linear-gradient(
    to left,
    rgba(10, 61, 98, 0.8),
    rgba(10, 61, 98, 0.6),
    rgba(10, 61, 98, 0.9)
  );
}

 .hero-canvas {
  z-index: 1;
  pointer-events: none;
}

 .hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: heroPulse 4s ease-in-out infinite;
}

.hero-circle-1 {
  width: 256px;
  height: 256px;
  top: 80px;
  left: 40px;
  border: 1px solid rgba(129, 57, 57, 0.1);
}

.hero-circle-2 {
  width: 160px;
  height: 160px;
  top: 128px;
  left: 80px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation-delay: 1s;
}

.hero-circle-3 {
  width: 192px;
  height: 192px;
  right: 40px;
  bottom: 80px;
  border: 1px solid rgba(136, 188, 88, 0.2);
  animation-delay: 2s;
}

 .hero-content-row {
  min-height: 720px;
}

.hero-text-content {
  position: relative;
  z-index: 5;
}

 .hero-badge {
  color: var(--accent);
  background: rgba(23, 168, 196, 0.1);
  border: 1px solid rgba(23, 168, 196, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 600;
  animation: slideInBlur 0.8s ease-out 0.2s both;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}

 .hero-heading-wrapper {
  margin-top: 32px;
  animation: slideInBlur 0.9s ease-out 0.4s both;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #ffffff 0%, #b8e4f0 50%, #17a8c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.8;
}

 .hero-description {
  max-width: 600px;
  margin-top: 32px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 2;
  opacity: 0.7;
  animation: slideInBlur 0.9s ease-out 0.6s both;
}

 .hero-buttons {
  margin-top: 32px;
  animation: slideInBlur 0.9s ease-out 0.8s both;
}

.hero-btn {
  min-height: 60px;
  padding: 14px 28px;
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-btn-primary {
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(23, 168, 196, 0.3);
}

.hero-btn-primary:hover {
  color: #fff;
  background: #1399b2;
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(23, 168, 196, 0.5);
}

.hero-btn-whatsapp {
  background: var(--green);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
}

.hero-btn-whatsapp:hover {
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(34, 197, 94, 0.5);
}

.hero-btn i {
  font-size: 20px;
}

.hero-btn-arrow {
  font-size: 16px !important;
  transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn-arrow {
  transform: translateX(-5px);
}

 .hero-trust-indicators {
  margin-top: 28px;
  animation: slideInBlur 0.9s ease-out 1s both;
}

.trust-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.trust-item i {
  color: var(--accent);
  font-size: 16px;
}

 .hero-visual-wrapper {
  animation: scaleInBlur 1.2s ease-out 0.6s both;
}

.hero-image-card {
  min-height: 500px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(10, 61, 98, 0.5);
}

.hero-main-image {
  height: 500px;
  display: block;
  object-fit: cover;
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 61, 97, 0.6),
    transparent 55%,
    transparent
  );
}

 .hero-service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(23, 168, 196, 0.3);
}

.hero-service-badge i {
  font-size: 11px;
}

 .hero-stats-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(10, 61, 98, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-stat-value {
  color: var(--accent);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stat-label {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

 .hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-bottom {
  width: 96px;
  height: 96px;
  left: -24px;
  bottom: -24px;
  background: rgba(23, 168, 196, 0.2);
  filter: blur(25px);
}

.hero-glow-top {
  width: 128px;
  height: 128px;
  top: -24px;
  right: -24px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(25px);
}

 .hero-wave {
  z-index: 10;
  height: 80px;
  pointer-events: none;
}

.hero-wave svg {
  height: 80px;
}

 @keyframes slideInBlur {
  0% {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes scaleInBlur {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

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

  .hero-description {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-content-row {
    min-height: auto;
  }

  .hero-text-content {
    text-align: center !important;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.6rem;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 16px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-trust-indicators {
    gap: 16px !important;
  }

  .trust-item {
    font-size: 12px;
  }

  .hero-circle-1 {
    width: 180px;
    height: 180px;
    left: -50px;
  }

  .hero-circle-2 {
    width: 110px;
    height: 110px;
    left: 15px;
  }

  .hero-circle-3 {
    width: 140px;
    height: 140px;
    right: -40px;
  }
}

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

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-trust-indicators {
    flex-direction: column;
    align-items: center;
  }
}

 @media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

 

.features-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--background);
}

 

.features-heading {
  margin-bottom: 28px;
}

.section-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--accent);

  font-size: 15px;
  font-weight: 700;
}

.section-title {
  margin: 0;

  color: var(--foreground);

  font-size: clamp(2rem, 4vw, 2.8rem);

  font-weight: 800;

  line-height: 1.35;
}

 

.features-list {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

 

.feature-item {
  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding: 20px;

  background: #fff;

  border: 1px solid rgba(17, 95, 111, 0.34);

  border-radius: 16px;


  transition: all 0.5s ease-in-out;
  box-shadow: 0 10px 25px rgba(10, 61, 98, 0.08) !important;
}

 

.feature-icon {
  width: 48px;
  height: 48px;

  min-width: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  color: var(--accent);

  background: rgba(23, 168, 196, 0.1);

  font-size: 21px;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  color: #fff;

  background: var(--accent);

  transform: translateY(-2px);
}

 

.feature-content {
  flex: 1;
}

.feature-content h3 {
  margin: 0 0 5px;

  color: var(--foreground);

  font-size: 17px;

  font-weight: 800;

  line-height: 1.5;
}

.feature-content p {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 14px;

  line-height: 1.8;
}

 

.features-visual {
  display: flex;

  flex-direction: column;

  gap: 24px;
}

.features-image-wrapper {
  position: relative;

  width: 100%;

  height: 380px;

  overflow: hidden;

  border-radius: 24px;

  box-shadow: 0 20px 45px rgba(10, 61, 98, 0.15);
  border: 3px solid #062840;
}

.features-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.features-image-wrapper:hover .features-image {
  transform: scale(1.04);
}

.features-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(10, 61, 98, 0.567), transparent);

  pointer-events: none;
}

 
.stats-grid {
  margin: 0;
}

.stat-card {
  height: 100%;

  padding: 20px;

  text-align: center;

  background: #fff;

  border: 1px solid rgba(23, 168, 196, 0.3);

  border-radius: 16px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.stat-card:hover {
  border-color: #139ab2a2;

  box-shadow: 0 10px 25px rgba(10, 61, 98, 0.08);

  transform: translateY(-3px);
}

 

.stat-value {
  margin-bottom: 4px;

  color: var(--primary);

  font-size: 32px;

  font-weight: 800;

  line-height: 1.2;
}

 

.stat-label {
  color: var(--muted-foreground);

  font-size: 14px;

  font-weight: 500;

  line-height: 1.5;
}

 

@media (max-width: 991.98px) {
 
  .features-heading {
    text-align: center;
  }
}

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

  .features-image-wrapper {
    height: 300px;

    border-radius: 20px;
  }

  .feature-item {
    padding: 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;

    font-size: 18px;
  }

  .feature-content h3 {
    font-size: 15px;
  }

  .feature-content p {
    font-size: 13px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: 27px;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;

    font-size: 16px;
  }

  .stat-value {
    font-size: 24px;
  }
}
 

@media (prefers-reduced-motion: reduce) {
  .feature-item,
  .stat-card,
  .features-image {
    transition: none !important;
  }
}
 

.trust-strip {
  position: relative;

  width: 100%;

  padding: 40px 10px;
}

 

.trust-row {
  overflow: hidden;
  border: 1px solid #139ab275;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(10, 61, 98, 0.12);
}
 

.trust-item {
  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 32px 24px;

  cursor: default;

  border-left: 1px solid #1399b2 !important;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background-color 0.3s ease;
}

 

.trust-item:hover {
  background: rgba(10, 61, 98, 0.05);
}
 

.trust-icon {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 14px;

  color: #1392ab;

  background: rgba(23, 167, 196, 0.299);

  border-radius: 50%;

  font-size: 20px;

  transition: all 0.4s ease-in-out;
}

.trust-item:hover .trust-icon {
  background: var(--primary);
  transform: translateY(-3px);
}
.trust-item:hover .trust-icon i {
  color: #ffffff !important;
}

 

.trust-title {
  margin: 0 0 6px;

  color: var(--foreground);

  font-size: 17px;

  font-weight: 800;

  line-height: 1.5;
}

 

.trust-desc {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 14px;

  line-height: 1.7;
}

 

@media (min-width: 992px) {
  .trust-item:last-child {
    border-left: 0;
  }
}

 

@media (max-width: 991.98px) {
  .trust-row {
    border-left: 0;

    border-right: 0;
  }

  .trust-item {
    border-left: 0;

    border-bottom: 1px solid var(--border);

    padding: 28px 20px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

 

@media (max-width: 575.98px) {
  .trust-item {
    padding: 24px 18px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;

    margin-bottom: 10px;

    font-size: 18px;
  }

  .trust-title {
    font-size: 16px;
  }

  .trust-desc {
    font-size: 13px;
  }
}

 

@media (prefers-reduced-motion: reduce) {
  .trust-item,
  .trust-icon {
    transition: none !important;
  }
}
 

.about-section {
  position: relative;

  padding: 100px 0;

  background: var(--background);

  overflow: hidden;
}

 

.about-image-area {
  position: relative;

  padding: 20px 20px 40px 0;
}

 

.about-image-wrapper {
  position: relative;

  width: 100%;

  height: 500px;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 25px 55px rgba(10, 61, 98, 0.15);
  z-index: 1;
}

.about-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
  z-index: 1;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.04);
}

 

.about-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(10, 61, 98, 0.4), transparent);

  pointer-events: none;
}

 

.about-floating-badge {
  position: absolute;

  right: -15px;

  bottom: 5px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 20px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 16px;

  box-shadow: 0 20px 40px rgba(10, 61, 98, 0.15);

  z-index: 3;
}
 

.floating-icon {
  width: 48px;
  height: 48px;

  min-width: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(23, 168, 196, 0.1);

  color: var(--accent);

  border-radius: 12px;

  font-size: 21px;
}

 

.floating-title {
  margin-bottom: 2px;

  color: var(--foreground);

  font-size: 14px;

  font-weight: 800;
}

.floating-description {
  color: var(--muted-foreground);

  font-size: 12px;
}

 
.about-decoration {
  position: absolute;

  top: 0;

  left: 0;

  width: 80px;
  height: 80px;

  background: rgba(23, 167, 196, 0.81);

  border-radius: 50%;

  filter: blur(15px);

  pointer-events: none;
  z-index: 0;
}

 

.about-content {
  display: flex;

  flex-direction: column;

  gap: 24px;
}

 

.about-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  width: fit-content;

  margin-bottom: 16px;

  padding: 8px 16px;

  color: var(--accent);

  background: rgba(23, 168, 196, 0.1);

  border: 1px solid rgba(23, 168, 196, 0.2);

  border-radius: 999px;

  font-size: 14px;

  font-weight: 700;
}

.about-label i {
  font-size: 14px;
}

 

.about-title {
  margin: 0;

  color: var(--foreground);

  font-size: clamp(2rem, 4vw, 2.8rem);

  font-weight: 800;

  line-height: 1.4;
}

 

.text-gradient-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;
}

 

.about-description {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.about-description p {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 17px;

  line-height: 2;
}

 
.value-point {
  display: flex;

  align-items: center;

  gap: 12px;

  min-height: 52px;

  padding: 12px;

  color: var(--foreground);

  background: var(--secondary);

  border-radius: 12px;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-point:hover {
  background: #fff;

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(10, 61, 98, 0.08);
}

.value-point i {
  flex-shrink: 0;

  color: var(--accent);

  font-size: 18px;
}

.value-point span {
  font-size: 14px;

  font-weight: 700;
}

 

.about-button {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  width: fit-content;

  padding: 16px 32px;

  color: #fff;

  background: var(--primary);

  border-radius: 16px;

  font-size: 16px;

  font-weight: 800;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-button:hover {
  color: #fff;

  background: #083653;

  transform: translateY(-2px);

  box-shadow: 0 15px 30px rgba(10, 61, 98, 0.25);
}

.about-button i {
  font-size: 16px;

  transition: transform 0.3s ease;
}

.about-button:hover i {
  transform: translateX(-4px);
}

 

@media (max-width: 991.98px) {
  .about-section {
    padding: 80px 0;
  }

  .about-image-area {
    padding: 10px 10px 35px 0;
  }

  .about-image-wrapper {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 65px 0;
  }

  .about-image-wrapper {
    height: 350px;

    border-radius: 22px;
  }

  .about-floating-badge {
    right: 0;

    bottom: 0;

    padding: 14px;

    gap: 10px;
  }

  .floating-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    font-size: 18px;
  }

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

  .about-description p {
    font-size: 15px;

    line-height: 1.9;
  }

  .value-point {
    padding: 10px;

    gap: 8px;
  }

  .value-point span {
    font-size: 12px;
  }

  .about-button {
    width: 100%;

    justify-content: center;
  }
}

@media (max-width: 400px) {
  .about-image-wrapper {
    height: 300px;
  }

  .about-floating-badge {
    right: -5px;
  }

  .floating-title {
    font-size: 12px;
  }

  .floating-description {
    font-size: 10px;
  }
}

 

.service-areas-section {
  padding: 100px 0;

  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--secondary) 100%
  );
}

 

.areas-header {
  max-width: 760px;

  margin: 0 auto 50px;
}

 

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 8px 16px;

  margin-bottom: 16px;

  color: var(--accent);

  background: rgba(23, 168, 196, 0.1);

  border: 1px solid rgba(23, 168, 196, 0.2);

  border-radius: 999px;

  font-size: 14px;

  font-weight: 700;
}

.section-label i {
  font-size: 14px;
}

 

.section-title {
  margin: 0 0 14px;

  color: var(--foreground);

  font-size: clamp(2rem, 4vw, 2.8rem);

  font-weight: 800;

  line-height: 1.4;
}

 

.section-description {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 17px;

  line-height: 1.9;
}

 

.area-card {
  position: relative;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 230px;

  padding: 26px;

  border: 1px solid;

  border-radius: 24px;

  overflow: hidden;

  cursor: default;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

 
.area-card-primary {
  background: linear-gradient(
    135deg,
    rgba(10, 61, 98, 0.1),
    rgba(23, 168, 196, 0.1)
  );

  border-color: rgba(10, 61, 98, 0.2);
}
 

.area-card-accent {
  background: linear-gradient(
    135deg,
    rgba(23, 168, 196, 0.1),
    rgba(10, 61, 98, 0.1)
  );

  border-color: rgba(23, 168, 196, 0.2);
}

 

.area-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(10, 61, 98, 0.12);
}

 

.area-content {
  display: flex;

  align-items: flex-start;

  gap: 16px;

  margin-bottom: 24px;
}

 

.area-icon {
  width: 52px;
  height: 52px;

  min-width: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--accent);

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 4px 12px rgba(10, 61, 98, 0.06);

  font-size: 21px;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.area-card:hover .area-icon {
  transform: scale(1.08);

  color: #fff;

  background: var(--primary);
}

 

.area-info h3 {
  margin: 0 0 6px;

  color: var(--foreground);

  font-size: 21px;

  font-weight: 800;

  line-height: 1.5;
}

.area-info p {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 14px;

  line-height: 1.8;
}

 
.area-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  width: fit-content;

  padding: 9px 16px;

  color: var(--primary);

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 12px;

  box-shadow: 0 3px 8px rgba(10, 61, 98, 0.05);

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.area-button:hover {
  color: #fff;

  background: var(--primary);

  border-color: var(--primary);

  box-shadow: 0 8px 20px rgba(10, 61, 98, 0.18);

  transform: translateY(-2px);
}

.area-button i {
  font-size: 13px;
}

 

.areas-cta {
  position: relative;

  overflow: hidden;

  padding: 45px 30px;

  color: #fff;

  background: var(--primary);

  border-radius: 24px;

  text-align: center;
}

 

.areas-cta-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    var(--primary),
    rgba(10, 61, 98, 0.9),
    rgba(23, 168, 196, 0.4)
  );

  pointer-events: none;
}

 

.areas-cta-content {
  position: relative;

  z-index: 2;

  max-width: 650px;

  margin: auto;
}

.areas-cta h3 {
  margin: 0 0 8px;

  color: #fff;

  font-size: clamp(1.3rem, 3vw, 1.7rem);

  font-weight: 800;
}

.areas-cta p {
  margin: 0 0 24px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;

  line-height: 1.8;
}

 

.cta-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 15px 30px;

  color: var(--primary);

  background: #fff;

  border-radius: 16px;

  font-size: 16px;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.cta-button:hover {
  color: #fff;

  background: var(--accent);

  box-shadow: 0 12px 30px rgba(23, 168, 196, 0.3);

  transform: translateY(-3px);
}

.cta-button i {
  font-size: 18px;
}

 

@media (max-width: 991.98px) {
  .service-areas-section {
    padding: 80px 0;
  }

  .area-card {
    min-height: 220px;
  }
}
 

@media (max-width: 767.98px) {
  .service-areas-section {
    padding: 65px 0;
  }

  .areas-header {
    margin-bottom: 35px;
  }

  .section-description {
    font-size: 15px;
  }

  .area-card {
    min-height: auto;

    padding: 22px;

    border-radius: 20px;
  }

  .area-content {
    gap: 12px;
  }

  .area-icon {
    width: 46px;

    height: 46px;

    min-width: 46px;

    border-radius: 13px;

    font-size: 18px;
  }

  .area-info h3 {
    font-size: 18px;
  }

  .area-info p {
    font-size: 13px;
  }

  .area-button {
    width: 100%;
  }

  .areas-cta {
    padding: 35px 20px;

    border-radius: 20px;
  }

  .cta-button {
    width: 100%;
  }
}

 
@media (max-width: 400px) {
  .area-content {
    flex-direction: column;
  }

  .area-icon {
    margin-bottom: 2px;
  }
}

 
.services-section {
  background: var(--background);
  padding: 90px 0;
}

 
.section-header {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;

  background: rgba(23, 168, 196, 0.1);
  border: 1px solid rgba(23, 168, 196, 0.2);

  border-radius: 999px;

  color: var(--accent);

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 16px;
}

.section-badge i {
  font-size: 14px;
}

.section-title {
  color: var(--foreground);

  font-size: 40px;
  font-weight: 800;

  line-height: 1.4;

  margin-bottom: 12px;
}

.section-description {
  color: var(--muted-foreground);

  font-size: 17px;
  line-height: 1.9;

  margin: 0;
}
 

.service-card {
  height: 100%;

  background: var(--card);

  border: 3px solid var(--border);

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.04);

  cursor: default;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

 
.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(10, 61, 98, 0.52);

  box-shadow: 0 25px 50px rgba(10, 61, 98, 0.12);
}

 

.service-image {
  position: relative;

  height: 192px;

  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

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

 
.service-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(10, 61, 98, 0.5), transparent);

  pointer-events: none;
}

 

.service-icon {
  position: absolute;

  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.95);

  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(10, 61, 98, 0.12);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.service-icon i {
  color: var(--accent);

  font-size: 20px;

  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}
 

.service-content {
  padding: 24px;
}

.service-content h3 {
  color: var(--foreground);

  font-size: 18px;
  font-weight: 800;

  margin-bottom: 8px;

  line-height: 1.6;

  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--primary);
}

.service-content p {
  color: var(--muted-foreground);

  font-size: 14px;

  line-height: 1.9;

  margin-bottom: 16px;
}

 

.service-btn {
  display: inline-flex;

  align-items: center;
  gap: 8px;

  padding: 10px 20px;

  background: rgba(23, 168, 196, 0.1);

  color: var(--accent);

  border-radius: 12px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-btn i {
  font-size: 14px;
}

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

  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(23, 168, 196, 0.25);
}

 

@media (max-width: 991.98px) {
  .services-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 15px;
  }

  .service-image {
    height: 210px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 27px;
  }

  .service-content {
    padding: 20px;
  }
}
 

.goals-section {
  background: var(--background);
  direction: rtl;
}

 
.section-header {
  max-width: 750px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;
  margin-bottom: 15px;

  background: rgba(23, 168, 196, 0.08);
  border: 1px solid rgba(23, 168, 196, 0.2);
  border-radius: 50px;

  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.section-badge i {
  font-size: 14px;
}

.section-title {
  margin: 0 0 15px;

  color: var(--foreground);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
}

.section-description {
  margin: 0;

  color: var(--muted-foreground);
  font-size: 17px;
  line-height: 1.9;
}
 

.goal-card {
  height: 100%;

  padding: 28px;

  border: 1px solid;
  border-radius: 34px 34px 5px 5px;

  text-align: center;

  cursor: default;

  transition:
    transform 0.5s ease,
    box-shadow 0.3s ease,
    opacity 0.6s ease;
  border: 1px solid #062840;
}

.goal-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(10, 61, 98, 0.12);
}

 

.goal-blue {
  background: #eff6ff;
  border-color: #6e9ad3;
}

.goal-cyan {
  background: rgba(23, 168, 196, 0.05);
  border-color: rgba(23, 167, 196, 0.856);
}

.goal-green {
  background: #f0fdf4;
  border-color: #6fb88a;
}

.goal-purple {
  background: #faf5ff;
  border-color: #af95cc;
}

 

.goal-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  font-size: 28px;

  transition: transform 0.3s ease;
}

.goal-card:hover .goal-icon {
  transform: scale(1.1);
}

 
.goal-icon-blue {
  background: #c3d5eb;
  color: var(--primary);
}

 
.goal-icon-cyan {
  background: rgba(23, 168, 196, 0.15);
  color: var(--accent);
}

 
.goal-icon-green {
  background: #caf1d8;
  color: #16a34a;
}

 
.goal-icon-purple {
  background: #e8daf7;
  color: #9333ea;
}

 

.goal-card h3 {
  margin: 0 0 12px;

  color: var(--foreground);

  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.goal-card p {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 14px;
  line-height: 1.9;
}

 

@media (max-width: 767.98px) {
  .goals-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .section-description {
    font-size: 15px;
  }

  .goal-card {
    padding: 24px;
  }
}
 
.why-section {
  background: var(--background);
  direction: rtl;
} 
 .section-header {
  max-width: 750px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 15px;
  background: rgba(23, 168, 196, 0.08);
  border: 1px solid rgba(23, 168, 196, 0.2);
  border-radius: 50px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}
.section-title {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
} 
 .before-after-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 25px 60px rgba(10, 61, 98, 0.2);
  touch-action: none;
} 
 .after-image,
.before-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.after-image img,
.before-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
 .before-image {
  width: 50%;
  z-index: 2;
}
.before-image img {
  position: absolute;
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  right: auto;
  left: 0;
} 
 .before-label,
.after-label {
  position: absolute;
  bottom: 16px;
  padding: 7px 14px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}
.before-label {
  right: 16px;
  background: #ef4444;
}
.after-label {
  left: 16px;
  background: var(--green);
} 
 .slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
 .slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 17px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  pointer-events: none;
} 
 .slider-help {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 14px;
} 
.why-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
} 
 .why-description {
  margin: 0;
  padding-right: 16px;
  border-right: 4px solid var(--accent);
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.9;
} 
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
} 
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: default;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.benefit-item:hover {
  border-color: rgba(23, 168, 196, 0.3);
  box-shadow: 0 10px 25px rgba(10, 61, 98, 0.1);
  transform: translateX(-4px);
} 
.benefit-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 168, 196, 0.1);
  border-radius: 12px;
  color: var(--accent);
  font-size: 16px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.benefit-item:hover .benefit-icon {
  background: var(--accent);
  color: #fff;
}
.benefit-item span {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 600;
} 
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--primary);
  border-radius: 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.why-cta:hover {
  background: #08334f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 61, 98, 0.3);
} 
.why-item {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

@media (max-width: 991.98px) {
  .before-after-slider {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .before-after-slider {
    height: 280px;
    border-radius: 18px;
  }
  .slider-button {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .before-label,
  .after-label {
    bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .before-label {
    right: 10px;
  }
  .after-label {
    left: 10px;
  }
  .why-description {
    font-size: 16px;
  }
}
 

.faq-section {
  background: var(--background);
  padding: 80px 0;
  font-family: var(--font);
}

 

.section-header {
  margin-bottom: 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;

  color: var(--accent);
  background: rgba(23, 168, 196, 0.08);

  border: 1px solid rgba(23, 168, 196, 0.2);
  border-radius: 50px;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 15px;
}

.section-badge i {
  font-size: 15px;
}

.section-title {
  margin: 0;

  color: var(--foreground);

  font-size: 36px;
  font-weight: 800;
  line-height: 1.4;
}

 

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Item */

.faq-item {
  background: var(--card);

  border: 1px solid var(--border);
  border-radius: 16px;

  overflow: hidden;

  margin-bottom: 12px;

  box-shadow: 0 2px 8px rgba(10, 61, 98, 0.04);

  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(23, 168, 196, 0.3);

  box-shadow: 0 10px 30px rgba(10, 61, 98, 0.08);
}

 

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 22px 24px;

  border: 0;
  outline: 0;

  background: transparent;

  color: var(--foreground);

  text-align: right;

  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(235, 244, 250, 0.5);
}

.faq-question > span:first-child {
  flex: 1;
}

 

.faq-icon {
  width: 34px;
  height: 34px;

  min-width: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(23, 168, 196, 0.1);

  border-radius: 50%;

  color: var(--accent);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.faq-icon i {
  font-size: 14px;

  transition: transform 0.3s ease;
}

 
.faq-item.active .faq-icon {
  background: var(--accent);
  color: var(--white);

  transform: rotate(180deg);
}

 

.faq-answer {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.faq-answer p {
  margin: 0;

  padding: 18px 24px 24px;

  border-top: 1px solid var(--border);

  color: var(--muted-foreground);

  font-size: 15px;
  line-height: 1.9;
}

/* Open */

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

 
@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 16px 18px 20px;
    font-size: 14px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
 
.cta-break {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 20px;
  color: var(--white); /* Image + elegant gradient overlay */
  background-image:
    linear-gradient(
      135deg,
      rgba(10, 61, 98, 0.96) 0%,
      rgba(10, 61, 98, 0.82) 35%,
      rgba(19, 146, 171, 0.72) 70%,
      rgba(10, 61, 98, 0.88) 100%
    ),
    url("/images/bg-break.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  border-radius: 30px;
} /* Soft luxury glow */
.cta-break::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(19, 146, 171, 0.25),
      transparent 35%
    );
  pointer-events: none;
} /* Subtle dark layer for readability */
.cta-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(4, 28, 47, 0.12);
  pointer-events: none;
}
 

.cta-content {
  position: relative;
  z-index: 10;

  max-width: 900px;

  margin: 0 auto;
}

 
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 18px;

  margin-bottom: 20px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  color: var(--white);

  font-size: 14px;
  font-weight: 700;

  backdrop-filter: blur(10px);
}

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

 

.cta-title {
  margin: 0 0 20px;

  color: var(--white);

  font-family: var(--font);

  font-size: clamp(32px, 5vw, 56px);

  font-weight: 800;

  line-height: 1.3;
}

 

.cta-description {
  max-width: 650px;

  margin: 0 auto 40px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 20px;

  line-height: 1.9;
}

 

.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 16px;
}

.cta-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 220px;

  padding: 16px 30px;

  border-radius: 16px;

  font-family: var(--font);

  font-size: 17px;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

 
.cta-phone {
  background: var(--white);

  color: var(--primary);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cta-phone:hover {
  background: var(--accent);

  color: var(--white);

  box-shadow: 0 15px 35px rgba(23, 168, 196, 0.35);
}

 
.cta-whatsapp {
  background: var(--green);

  color: var(--white);

  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.cta-whatsapp:hover {
  background: var(--green-dark);

  color: var(--white);

  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.35);
}

.cta-whatsapp i {
  font-size: 21px;
}

 

.cta-trust {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 28px;

  margin-top: 40px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 14px;
}

.cta-trust span {
  display: inline-flex;

  align-items: center;

  gap: 8px;
}

.cta-trust i {
  color: rgba(23, 168, 196, 0.8);

  font-size: 16px;
}
 

.cta-bubble {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.05);

  pointer-events: none;

  z-index: 1;

  animation-name: floatBubble;

  animation-timing-function: ease-in-out;

  animation-iteration-count: infinite;
}

 
.bubble-1 {
  width: 80px;
  height: 80px;

  top: 10%;
  left: 5%;

  animation-duration: 7s;
}

 
.bubble-2 {
  width: 50px;
  height: 50px;

  top: 70%;
  left: 10%;

  animation-duration: 5s;
  animation-delay: 2s;
}

 
.bubble-3 {
  width: 120px;
  height: 120px;

  top: 20%;
  left: 85%;

  animation-duration: 8s;
  animation-delay: 1s;
}

 
.bubble-4 {
  width: 40px;
  height: 40px;

  top: 80%;
  left: 80%;

  animation-duration: 6s;
  animation-delay: 3s;
}

 
.bubble-5 {
  width: 60px;
  height: 60px;

  top: 50%;
  left: 50%;

  animation-duration: 7s;
  animation-delay: 1.5s;
}

 
.bubble-6 {
  width: 30px;
  height: 30px;

  top: 30%;
  left: 30%;

  animation-duration: 5.5s;
  animation-delay: 0.5s;
}

 
.bubble-7 {
  width: 90px;
  height: 90px;

  top: 60%;
  left: 70%;

  animation-duration: 9s;
  animation-delay: 2.5s;
}

 

@keyframes floatBubble {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -25px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
 

@media (max-width: 767px) {
  .cta-break {
    padding: 70px 20px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;

    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .cta-btn {
    width: 100%;

    min-width: 0;

    padding: 15px 20px;
  }

  .cta-trust {
    flex-direction: column;

    align-items: center;

    gap: 14px;
  }

  .bubble-3,
  .bubble-5,
  .bubble-7 {
    opacity: 0.5;
  }
}
 

.blog-section {
  background: var(--background);
  direction: rtl;
  font-family: var(--font);
}

 

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(23, 168, 196, 0.1);
  border: 1px solid rgba(23, 168, 196, 0.2);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.section-title {
  color: var(--foreground);
  font-size: 36px;
  font-weight: 800;
}

.section-description {
  color: var(--muted-foreground);
  font-size: 17px;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
}
 

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.05);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(10, 61, 98, 0.12);

  border-color: rgba(23, 168, 196, 0.25);
}
 

.blog-image-wrapper {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  text-decoration: none;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.06);
}

.blog-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(10, 61, 98, 0.35), transparent);
}
 

.blog-category {
  position: absolute;
  top: 16px;
  right: 16px;

  display: inline-flex;
  align-items: center;

  background: var(--accent);
  color: #fff;

  padding: 6px 12px;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;

  z-index: 2;
}
 

.blog-content {
  padding: 24px;
}
 
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;

  color: var(--muted-foreground);

  font-size: 12px;
  margin-bottom: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--accent);
}
 

.blog-title {
  color: var(--foreground);

  font-size: 18px;
  font-weight: 800;

  line-height: 1.6;

  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  transition: color 0.3s ease;
}

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

 

.blog-excerpt {
  color: var(--muted-foreground);

  font-size: 14px;
  line-height: 1.8;

  margin-bottom: 18px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

 

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--accent);

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: var(--primary);
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(-4px);
}

 

.blog-detail {
  direction: rtl;
  font-family: var(--font);
  background: var(--background);
}

.blog-detail-title {
  color: var(--foreground);

  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;

  line-height: 1.5;

  max-width: 900px;
  margin: 0 auto;
}

.blog-detail-image {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;

  overflow: hidden;
  border-radius: 28px;

  box-shadow: 0 20px 50px rgba(10, 61, 98, 0.12);
}

.blog-detail-image img {
  display: block;
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.blog-detail-content {
  max-width: 850px;
  margin: 0 auto;

  color: var(--foreground);

  font-size: 17px;
  line-height: 2;
}

.blog-detail-content h2 {
  color: var(--primary);

  font-size: 28px;
  font-weight: 800;

  margin-top: 45px;
  margin-bottom: 18px;
}

.blog-detail-content h3 {
  color: var(--foreground);

  font-size: 21px;
  font-weight: 700;

  margin-top: 30px;
  margin-bottom: 12px;
}

.blog-detail-content p {
  color: var(--muted-foreground);
  margin-bottom: 18px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  color: var(--muted-foreground);

  padding-right: 25px;
  margin-bottom: 25px;
}

.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-detail-content strong {
  color: var(--primary);
}
 

.blog-detail-cta {
  max-width: 850px;

  margin-left: auto;
  margin-right: auto;

  padding: 35px;

  background: var(--primary);
  color: #fff;

  border-radius: 24px;

  text-align: center;
}

.blog-detail-cta h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-detail-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}

 

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 15px;
  }

  .blog-image-wrapper {
    height: 210px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-detail-content {
    font-size: 16px;
  }

  .blog-detail-content h2 {
    font-size: 24px;
  }

  .blog-detail-cta {
    padding: 25px 20px;
  }
}

 

.contact-section {
  background: var(--background);
  color: var(--foreground);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
  color: var(--primary);

  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.section-title {
  color: var(--foreground);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-description {
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.8;
}

 

.contact-info-card {
  background: var(--card);
  border: 1px solid #062840 !important;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(10, 61, 98, 0.05);
}

.contact-form-card {
  position: relative;
  overflow: hidden;

  border: 1px solid var(--border) !important;
  border-radius: 24px;

  background-image:
    linear-gradient(135deg, rgba(10, 61, 98, 0.94), rgba(19, 146, 171, 0.88)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=80");

  background-size: cover;
  background-position: center;

  box-shadow: 0 15px 45px rgba(10, 61, 98, 0.15);

  color: var(--white);
}

/* محتوى الفورم فوق الصورة */
.contact-form-card > * {
  position: relative;
  z-index: 2;
}

.contact-form-card h3,
.contact-form-card label {
  color: var(--white);
}

 

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);

  font-size: 21px;

  transition: all 0.3s ease;
}

.contact-info-card .d-flex:hover .contact-icon {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.phone-number {
  color: var(--foreground);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.phone-number:hover {
  color: var(--accent);
}

 

.whatsapp-button {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  width: 100%;

  padding: 22px 24px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background: linear-gradient(135deg, var(--green), var(--green-dark));

  color: var(--white);
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.2);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Glow effect */
.whatsapp-button::before {
  content: "";

  position: absolute;
  width: 180px;
  height: 180px;

  top: -90px;
  left: -50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  transition: transform 0.5s ease;
}

.whatsapp-button:hover::before {
  transform: scale(1.5);
}

.whatsapp-button:hover {
  color: var(--white);
  transform: translateY(-5px);

  background: linear-gradient(135deg, var(--green-dark), var(--green));

  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.3);
}

.whatsapp-icon {
  position: relative;
  z-index: 2;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);

  font-size: 26px;

  backdrop-filter: blur(5px);

  transition: transform 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
  transform: scale(1.08) rotate(-5deg);
}

.whatsapp-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whatsapp-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.whatsapp-subtitle {
  margin-top: 3px;

  font-size: 13px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.75);
}

 

.custom-input {
  width: 100%;

  min-height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.1);

  border-radius: 14px;

  padding: 12px 16px;

  color: var(--white);

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.custom-input:focus {
  outline: none;

  background: rgba(255, 255, 255, 0.16);

  border-color: rgba(255, 255, 255, 0.65);

  color: var(--white);

  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.custom-input option {
  color: var(--foreground);
  background: var(--white);
}

textarea.custom-input {
  min-height: 120px;
  resize: none;
}
 

.contact-form-card label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

 

.submit-button {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--white);
  color: var(--primary);

  border: none;
  border-radius: 14px;

  padding: 14px 20px;

  font-size: 17px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.submit-button:hover {
  background: var(--accent);
  color: var(--white);

  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
 

.success-icon {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 24px;

  border-radius: 50%;

  background: rgba(34, 197, 94, 0.15);
  color: var(--green);

  font-size: 40px;

  border: 1px solid rgba(34, 197, 94, 0.2);
}
 
.contact-info-card h3 {
  color: var(--foreground);
}

.contact-info-card .text-muted {
  color: var(--muted-foreground) !important;
}

.contact-info-card .fw-bold,
.contact-info-card .fw-semibold {
  color: var(--foreground);
}

 

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .section-description {
    font-size: 16px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 25px !important;
    border-radius: 20px;
  }

  .whatsapp-button {
    padding: 18px;
    border-radius: 20px;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .whatsapp-title {
    font-size: 16px;
  }

  .whatsapp-subtitle {
    font-size: 12px;
  }
}

 

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 9999;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: var(--primary);
  color: var(--white);

  font-size: 18px;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(10, 61, 98, 0.3);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(32px) scale(0.9);

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--accent);

  box-shadow: 0 12px 30px rgba(19, 146, 171, 0.35);

  transform: translateY(-3px) scale(1.08);
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

/* Mobile */
@media (max-width: 768px) {
  .back-to-top {
    width: 44px;
    height: 44px;

    bottom: 18px;
    right: 14px;

    font-size: 16px;
  }
}

  
.floating-buttons {
  position: fixed;

  bottom: 24px;
  left: 16px;

  z-index: 9999;

  display: flex;
  flex-direction: column;

  gap: 12px;

  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.5s ease;
}

 

.floating-item {
  position: relative;
}
 

.floating-button {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--white);

  text-decoration: none;

  font-size: 24px;

  box-shadow: 0 10px 25px rgba(10, 61, 98, 0.25);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
 

.whatsapp-floating {
  background: var(--green);

  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}

.whatsapp-floating:hover {
  background: var(--green-dark);

  color: var(--white);

  transform: scale(1.1);

  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.45);
}

 
.phone-floating {
  background: var(--accent);

  box-shadow: 0 10px 25px rgba(19, 146, 171, 0.35);
}

.phone-floating:hover {
  background: var(--primary);

  color: var(--white);

  transform: scale(1.1);

  box-shadow: 0 14px 32px rgba(10, 61, 98, 0.4);
}

 

.floating-tooltip {
  position: absolute;

  left: 68px;
  top: 50%;

  transform: translateY(-50%) translateX(-5px);

  background: var(--foreground);
  color: var(--white);

  font-size: 12px;
  font-weight: 600;

  padding: 8px 12px;

  border-radius: 8px;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.floating-item:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;

  transform: translateY(-50%) translateX(0);
}

 

.floating-tooltip::before {
  content: "";

  position: absolute;

  right: 100%;
  top: 50%;

  transform: translateY(-50%);

  border-width: 5px;
  border-style: solid;

  border-color: transparent var(--foreground) transparent transparent;
}

 

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 18px;
    left: 14px;

    gap: 10px;
  }

  .floating-button {
    width: 48px;
    height: 48px;

    font-size: 20px;
  }

  .floating-tooltip {
    display: none;
  }
}
 .site-footer {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: 90px 0 25px;
  overflow: hidden;
} 
 .footer-wave {
  position: absolute;
  top: -46px;
  left: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
  line-height: 0;
}
.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-wave path {
  fill: var(--background);
} 
 .footer-brand {
  max-width: 360px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-logo:hover {
  color: var(--white);
}
.footer-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--accent);
  font-size: 23px;
  transition: all 0.3s ease;
}
.footer-logo:hover .footer-logo-icon {
  
  transform: rotate(-5deg) scale(1.05);
}
.footer-brand-name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
.footer-brand-en {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-top: 2px;
  direction: ltr;
  text-align: right;
}
.footer-description {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
} 
 .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.footer-social-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(19, 146, 171, 0.25);
}
.footer-social-btn.whatsapp:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
} 
 .footer-heading {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} 
 .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s ease;
}
.footer-links a i {
  font-size: 10px;
  color: rgba(19, 146, 171, 0.55);
  transition: all 0.25s ease;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(-3px);
}
.footer-links a:hover i {
  color: var(--accent);
} 
 .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.7;
  transition: color 0.25s ease;
}
a.footer-contact-item:hover {
  color: var(--white);
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(19, 146, 171, 0.15);
  color: var(--accent);
  font-size: 13px;
}
 .service-area-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.service-areas span {
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  transition: all 0.25s ease;
}
.service-areas span:hover {
  background: rgba(19, 146, 171, 0.2);
  border-color: rgba(19, 146, 171, 0.4);
  color: var(--white);
}  
.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}
.footer-bottom p {
  margin: 0;
}  
@media (max-width: 767px) {
  .site-footer {
    padding-top: 80px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
  .footer-heading {
    margin-top: 10px;
  }
}
.cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;

   background:
    linear-gradient(
      135deg,
      rgba(10, 61, 98, 0.96) 0%,
      rgba(10, 61, 98, 0.88) 45%,
      rgba(19, 146, 171, 0.82) 100%
    ),
    url("../images/bg-break.png") center / cover no-repeat;

  color: var(--white);
  padding: 100px 20px;
}

 .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(19, 146, 171, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    );
  pointer-events: none;
  z-index: -1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.designed-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designed-by span {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.designer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 6px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.3s ease;
}

.designer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    border-radius: 10px;

}

.designer-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

 @media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .designed-by {
    justify-content: center;
  }
}