:root {
  --color-bg: #f6fbff;
  --color-primary: #82cfe2;
  --color-primary-dark: #4aa0ba;
  --color-accent: #181819;
  --color-surface: #ffffff;
  --color-muted: #6f7a87;
  --color-border: #d9e6ef;
  --shadow-lg: 0 40px 80px -40px rgba(24, 24, 25, 0.4);
  --shadow-md: 0 20px 45px -25px rgba(24, 24, 25, 0.35);
  --shadow-sm: 0 10px 20px -15px rgba(24, 24, 25, 0.35);
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --transition-speed: 0.3s;
}

/* Dark Mode Colors */
[data-theme="dark"] {
  --color-bg: #0a0e13;
  --color-surface: #1a2332;
  --color-accent: #ffffff;
  --color-muted: #c5d0de;
  --color-border: #4a5568;
  --shadow-lg: 0 40px 80px -40px rgba(130, 207, 226, 0.4);
  --shadow-md: 0 20px 45px -25px rgba(130, 207, 226, 0.35);
  --shadow-sm: 0 10px 20px -15px rgba(130, 207, 226, 0.3);
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .site-header {
  background: rgba(26, 31, 38, 0.95);
  border-bottom-color: rgba(130, 207, 226, 0.2);
}

[data-theme="dark"] .hero {
  background: var(--color-surface);
}

[data-theme="dark"] .hero::after {
  background: radial-gradient(circle, rgba(130, 207, 226, 0.15) 0%, rgba(130, 207, 226, 0) 70%);
}

[data-theme="dark"] .section--light {
  background: rgba(26, 31, 38, 0.6);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .process-list li,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .hero__card,
[data-theme="dark"] .hero__stats div {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

[data-theme="dark"] .service-card__badge {
  background: rgba(130, 207, 226, 0.9);
  box-shadow: 0 0 20px rgba(130, 207, 226, 0.4);
}

[data-theme="dark"] .button--ghost {
  background: rgba(26, 31, 38, 0.8);
  border-color: rgba(130, 207, 226, 0.3);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: rgba(26, 31, 38, 0.8);
  border-color: var(--color-border);
  color: var(--color-accent);
}

[data-theme="dark"] .site-footer {
  background: #0a0d11;
}

[data-theme="dark"] .hero__title,
[data-theme="dark"] .section__title,
[data-theme="dark"] h1, [data-theme="dark"] h2, 
[data-theme="dark"] h3, [data-theme="dark"] h4 {
  color: #ffffff !important;
}

[data-theme="dark"] .hero__subtitle,
[data-theme="dark"] .section__subtitle,
[data-theme="dark"] p {
  color: #c5d0de !important;
}

[data-theme="dark"] .service-card__desc,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .process-list li p {
  color: #b0b8c1 !important;
}

[data-theme="dark"] .hero__eyebrow,
[data-theme="dark"] .section__eyebrow {
  color: var(--color-primary) !important;
}

[data-theme="dark"] .floating-whatsapp {
  box-shadow: 0 8px 30px rgba(130, 207, 226, 0.5);
}

[data-theme="dark"] .cta-button {
  box-shadow: 0 4px 20px rgba(130, 207, 226, 0.4);
}

[data-theme="dark"] .request-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

[data-theme="dark"] label {
  color: #ffffff;
}

[data-theme="dark"] .form-footnote {
  color: #b0b8c1;
}

[data-theme="dark"] .site-footer h3 {
  color: var(--color-primary);
}

[data-theme="dark"] .site-footer p,
[data-theme="dark"] .site-footer a {
  color: #c5d0de;
}

[data-theme="dark"] .testimonial-card blockquote {
  color: #c5d0de !important;
}

/* RTL Support for Arabic */
[dir="rtl"] {
  font-family: "Cairo", "Tajawal", "Poppins", system-ui, sans-serif;
}

[dir="rtl"] .brand__text strong {
  letter-spacing: 0.05em;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-accent);
  font-size: 18px;
  line-height: 1.7;
  padding-top: 80px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  background: rgba(246, 251, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(130, 207, 226, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  width: clamp(120px, 15vw, 160px);
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(130, 207, 226, 0.4));
  display: block;
  content: url('../assets/logos/logo0.png');
}

.brand__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(130, 207, 226, 0.6));
}

[data-theme="dark"] .brand__logo {
  filter: drop-shadow(0 4px 12px rgba(130, 207, 226, 0.6));
  content: url('../assets/logos/logo.png');
}

[data-theme="dark"] .brand__logo:hover {
  filter: drop-shadow(0 6px 20px rgba(130, 207, 226, 0.8));
}

.brand__text strong {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand__text small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted);
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

/* القائمة الثانوية - تظهر فقط في الشاشات الكبيرة */
.site-nav .secondary-nav {
  display: none;
}

@media (min-width: 1200px) {
  .site-nav .secondary-nav {
    display: flex;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}


.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  margin-right: 1rem;
}

.header-control-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.theme-toggle,
.lang-toggle,
.audio-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.1), rgba(130, 207, 226, 0.05));
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(130, 207, 226, 0.15);
  position: relative;
  overflow: hidden;
}

.theme-toggle::before,
.lang-toggle::before,
.audio-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.theme-toggle:hover,
.lang-toggle:hover,
.audio-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(130, 207, 226, 0.3);
  border-color: var(--color-primary);
}

.theme-toggle:hover::before,
.lang-toggle:hover::before,
.audio-toggle:hover::before {
  opacity: 0.1;
}

.theme-toggle:active,
.lang-toggle:active,
.audio-toggle:active {
  transform: translateY(0);
}

.theme-toggle i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.audio-toggle i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.theme-toggle:hover i {
  transform: rotate(20deg);
}

.audio-toggle[aria-pressed="false"] i {
  transform: none;
}

.audio-toggle[aria-pressed="false"] {
  color: var(--color-muted);
}

.audio-toggle[aria-pressed="false"]::before {
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.05), rgba(130, 207, 226, 0.02));
}

.lang-flag {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.lang-text {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* Gmail Aliases Button in Theme Customizer - نصف الحجم */
.gmail-aliases-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 0.375rem 0.625rem;
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375rem;
}

.gmail-aliases-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.gmail-aliases-btn:hover::before {
  left: 100%;
}

.gmail-aliases-btn:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.gmail-icon {
  font-size: 0.7rem;
  animation: sparkle 2s infinite;
}

.gmail-text {
  font-size: 0.65rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.magic-sparkle {
  font-size: 0.7rem;
  animation: rotate 3s linear infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* تنسيق متجاوب لزر Gmail المصغر */
@media (max-width: 768px) {
  .gmail-aliases-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.6rem;
    margin-bottom: 0.25rem;
  }
  
  .gmail-text {
    display: none;
  }
  
  .gmail-icon,
  .magic-sparkle {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .gmail-aliases-btn {
    padding: 0.25rem 0.4rem;
  }
  
  .gmail-icon,
  .magic-sparkle {
    font-size: 0.55rem;
  }
}

/* Heart Animation in Gmail Modal Footer */
.heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
  color: #e74c3c;
  font-size: 1.2em;
  margin: 0 0.5rem;
}

/* تكبير حقل العدد لإظهار الأرقام الكبيرة */
.variations-input {
  width: 120px !important;
  min-width: 120px;
  font-size: 1.1rem !important;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 0.5rem !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: 8px;
  background: rgba(130, 207, 226, 0.05);
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.variations-input:focus {
  outline: none;
  border-color: var(--color-primary-dark) !important;
  box-shadow: 0 0 0 3px rgba(130, 207, 226, 0.2);
  background: rgba(130, 207, 226, 0.1);
}

/* تحسين container الحقل */
.gmail-range-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.variations-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

/* تنسيق متجاوب لحقل العدد */
@media (max-width: 768px) {
  .variations-input {
    width: 100px !important;
    min-width: 100px;
    font-size: 1rem !important;
    padding: 0.6rem 0.4rem !important;
  }
  
  .variations-controls {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .variations-input {
    width: 90px !important;
    min-width: 90px;
    font-size: 0.95rem !important;
    padding: 0.5rem 0.3rem !important;
  }
  
  .gmail-range-container {
    gap: 0.75rem;
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .lang-toggle,
[data-theme="dark"] .audio-toggle {
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.15), rgba(130, 207, 226, 0.08));
  box-shadow: 0 2px 8px rgba(130, 207, 226, 0.25);
}

[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .lang-toggle:hover,
[data-theme="dark"] .audio-toggle:hover {
  box-shadow: 0 4px 16px rgba(130, 207, 226, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-surface);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 6rem);
  padding: clamp(1rem, 3vw, 3rem);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: clamp(18rem, 35vw, 30rem);
  height: clamp(18rem, 35vw, 30rem);
  background: radial-gradient(circle, rgba(130, 207, 226, 0.25) 0%, rgba(130, 207, 226, 0) 70%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.hero__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.1;
}

.hero__subtitle {
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.1rem, 1.65vw, 1.3rem);
  color: var(--color-muted);
  max-width: 46ch;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(24, 24, 25, 0.15);
  background: rgba(255, 255, 255, 0.6);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero__highlights {
  display: grid;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hero__highlights span.nowrap {
  white-space: nowrap;
}

.hero__media {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero__orb--primary {
  width: clamp(12rem, 18vw, 16rem);
  height: clamp(12rem, 18vw, 16rem);
  top: -8%;
  right: 8%;
  background: linear-gradient(145deg, rgba(130, 207, 226, 0.65), rgba(130, 207, 226, 0.15));
}

.hero__orb--accent {
  width: clamp(8rem, 14vw, 12rem);
  height: clamp(8rem, 14vw, 12rem);
  bottom: -12%;
  left: 25%;
  background: linear-gradient(145deg, rgba(24, 24, 25, 0.35), rgba(24, 24, 25, 0.05));
}

.hero__card {
  background: var(--color-surface);
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: clamp(0.88rem, 2.3vw, 0.98rem);
  line-height: 1.45;
}

.hero__card span {
  display: block;
  margin-top: clamp(0.45rem, 1.8vw, 0.65rem);
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  color: var(--color-muted);
}

.hero__stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero__stats div {
  background: var(--color-surface);
  padding: clamp(0.9rem, 2.4vw, 1.15rem) clamp(1rem, 3vw, 1.35rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero__stats strong {
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  display: block;
}

.hero__stats span {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.section--light {
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.section--cta {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.95), rgba(130, 207, 226, 0.4));
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--color-accent);
}

.section__header {
  display: grid;
  gap: 0.75rem;
  max-width: 56ch;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.section__title {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  letter-spacing: -0.01em;
}

.section__subtitle {
  color: rgba(111, 122, 135, 0.95);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.78;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card__body {
  padding: 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.service-card__body h3 {
  font-size: 1.3rem;
}

.service-card__body ul li {
  color: var(--color-muted);
  font-size: 1.02rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(130, 207, 226, 0.2);
  display: grid;
  gap: 0.75rem;
}

.feature-card h3 {
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.process-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-list li {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.75rem;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(130, 207, 226, 0.25);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.process-list li h3 {
  font-size: 1.28rem;
}

.process-list li p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.3rem;
}

.testimonial-card blockquote {
  color: var(--color-muted);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.82;
}

.section--cta .button--light {
  background: var(--color-accent);
  color: var(--color-surface);
  padding-inline: 2rem;
}

.request-form {
  display: grid;
  gap: 1.25rem;
  background: var(--color-surface);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  gap: 0.5rem;
  position: relative;
  z-index: 50;
}

.form-row--split {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
  z-index: 50;
}

label {
  font-weight: 600;
  font-size: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  color: var(--color-accent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary-dark);
  box-shadow: 0 0 0 3px rgba(130, 207, 226, 0.2);
  position: relative;
  z-index: 10000;
}

select {
  position: relative;
  z-index: 1;
}

textarea {
  resize: vertical;
}

.form-footnote {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.site-footer {
  margin-top: clamp(3rem, 5vw, 5rem);
  background: var(--color-accent);
  color: var(--color-surface);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.site-footer__brand img {
  width: 80px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.site-footer ul li + li {
  margin-top: 0.35rem;
}

.social-links {
  display: grid;
  gap: 0.6rem;
}

.site-footer__meta {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

/* زر الواتساب الثابت - الموضع الأصلي للكمبيوتر */
.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem); /* الموضع الأصلي للكمبيوتر */
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-surface);
  font-weight: 600;
  font-size: 1.02rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.floating-whatsapp__icon {
  font-size: 1.25rem;
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 7rem 2rem 3rem;
    display: grid;
    align-content: start;
    background: rgba(246, 251, 255, 0.98);
    backdrop-filter: blur(12px);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .site-nav ul li {
    width: 100%;
  }

  .site-nav ul a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.95rem;
    min-height: 70px;
  }

  .site-nav ul a i {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
  }

  .nav-creative-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    justify-content: center;
    margin: 0.75rem 0 0;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(130, 207, 226, 0.15);
  }

  .nav-creative-link i {
    font-size: 0.8rem;
  }

  .site-nav .secondary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
  }

  .site-nav .secondary-nav li {
    width: 100%;
  }

  .site-nav .secondary-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.95rem;
    min-height: 70px;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .site-nav .secondary-nav li a i {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
  }

  .site-nav .secondary-nav .nav-creative-link {
    grid-column: auto;
    flex-direction: column;
    min-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header .cta-button {
    display: none;
  }

  .site-nav[aria-expanded="true"] {
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .header-controls {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    align-items: stretch;
  }

}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(130, 207, 226, 0.2);
  z-index: 51;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Reduce modal size on desktop to avoid header overlap */
@media (min-width: 769px) {
  .service-modal {
    max-width: 700px;
    max-height: calc(100vh - 120px);
  }
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

[data-theme="dark"] .service-modal {
  background: #1a1f26;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(130, 207, 226, 0.3);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(130, 207, 226, 0.1);
  border: none;
  color: var(--color-accent);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 2px solid rgba(130, 207, 226, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.05) 0%, transparent 100%);
}

.modal-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  filter: drop-shadow(0 2px 8px rgba(130, 207, 226, 0.3));
}

.modal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: var(--color-surface);
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(130, 207, 226, 0.1);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark);
}

.modal-section {
  margin-bottom: 2.5rem;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  font-weight: 600;
}

.modal-subsection {
  margin-bottom: 1.5rem;
}

.modal-subsection h4 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.modal-subsection p,
.modal-subsection ul {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 1rem;
}

[data-theme="dark"] .modal-header {
  border-bottom: 2px solid rgba(130, 207, 226, 0.3);
}

[data-theme="dark"] .modal-header h2 {
  color: #ffffff;
}

[data-theme="dark"] .modal-subsection h4 {
  color: #e0e0e0;
}

[data-theme="dark"] .modal-subsection p,
[data-theme="dark"] .modal-subsection ul {
  color: #b0b0b0;
}

.modal-subsection ul {
  list-style: none;
  padding: 0;
}

.modal-subsection ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.modal-subsection ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.modal-note,
.modal-availability {
  background: rgba(130, 207, 226, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.modal-note i,
.modal-availability i {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.modal-note p,
.modal-availability p {
  margin: 0;
  color: var(--color-accent);
  line-height: 1.6;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
}

.modal-footer .button {
  min-width: 250px;
}

[data-theme="dark"] .modal-note,
[data-theme="dark"] .modal-availability {
  background: rgba(130, 207, 226, 0.15);
}

@media (max-width: 768px) {
  .service-modal {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 2rem 1.5rem 1rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-footer {
    padding: 1rem 1.5rem;
  }

  .modal-footer .button {
    min-width: 100%;
  }
}

/* Service Details Expandable */
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.03) 0%, transparent 100%);
}

.service-details.active {
  max-height: 2000px;
  border-top: 2px solid rgba(130, 207, 226, 0.2);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.service-details h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.service-details h4:first-child {
  margin-top: 0;
}

.service-details p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem;
}

.service-details ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.service-details-note {
  background: rgba(130, 207, 226, 0.1);
  border-left: 3px solid var(--color-primary);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.service-details-note i {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.service-details-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.button--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
}

.button--ghost:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.button--ghost i {
  transition: transform 0.3s ease;
}

.service-card.expanded .button--ghost i {
  transform: rotate(90deg);
}

[data-theme="dark"] .service-details {
  background: linear-gradient(135deg, rgba(130, 207, 226, 0.05) 0%, transparent 100%);
}

[data-theme="dark"] .service-details.active {
  border-top-color: rgba(130, 207, 226, 0.3);
}

[data-theme="dark"] .service-details h4 {
  color: var(--color-primary);
}

[data-theme="dark"] .service-details p,
[data-theme="dark"] .service-details ul li {
  color: #b0b0b0;
}

[data-theme="dark"] .service-details-note {
  background: rgba(130, 207, 226, 0.15);
}

/* Required Mark */
.required-mark {
  color: var(--color-primary);
  font-weight: bold;
  margin-left: 0.25rem;
}

[dir="rtl"] .required-mark {
  margin-left: 0;
  margin-right: 0.25rem;
}

/* ===================================
   E-COMMERCE SHOP STYLES
   =================================== */

/* Shop Page Container */
.shop-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-background);
  z-index: 800;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.shop-page.active {
  display: flex;
}

/* Hide floating WhatsApp button when shop is active */
.shop-page.active ~ .floating-whatsapp {
  display: none !important;
}

/* Shop Header */
.shop-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.shop-header__content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.shop-close {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-close:hover {
  background: var(--color-primary);
  color: white;
}

.shop-header__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.shop-header__title i {
  font-size: 2rem;
  color: var(--color-primary);
}

.shop-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shop-title-wrapper h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  color: var(--color-accent);
}

.shop-instructions {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .shop-instructions {
    font-size: 0.75rem;
  }
}

.cart-toggle {
  position: relative;
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-toggle:hover {
  background: var(--color-dark);
  transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.shop-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary) !important;
  font-weight: 600;
}

.shop-link i {
  font-size: 1.1rem;
}

/* Service Card Enhancements */
.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card__image img {
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(130, 207, 226, 0.95);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

[dir="rtl"] .service-card__badge {
  right: auto;
  left: 1rem;
}

.service-card__desc {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  margin-top: 0.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  background: transparent;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card__btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.service-card__btn i {
  transition: transform 0.3s ease;
}

.service-card__btn:hover i {
  transform: translateY(2px);
}

/* Service Modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
  overflow-y: auto;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.service-modal__content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.service-modal.active .service-modal__content {
  transform: translateY(0);
}

.service-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-accent);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

[dir="rtl"] .service-modal__close {
  right: auto;
  left: 1.5rem;
}

.service-modal__close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.service-modal h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.service-detail {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(130, 207, 226, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

[dir="rtl"] .service-detail {
  border-left: none;
  border-right: 4px solid var(--color-primary);
}

.service-detail h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.service-detail h3 i {
  font-size: 1.2rem;
}

.service-category {
  margin-bottom: 1.25rem;
}

.service-category h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.service-category ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.5rem;
}

[dir="rtl"] .service-category ul {
  padding-left: 0;
  padding-right: 1.5rem;
}

.service-category ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-muted);
  line-height: 1.6;
}

[dir="rtl"] .service-category ul li {
  padding-left: 0;
  padding-right: 1.5rem;
}

.service-category ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

[dir="rtl"] .service-category ul li::before {
  left: auto;
  right: 0;
}

.service-note,
.service-remote {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(130, 207, 226, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.service-remote {
  background: rgba(255, 193, 7, 0.1);
  color: var(--color-accent);
  font-weight: 500;
}

/* Hero highlights with icons */
.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__highlights li i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Smooth transitions for all elements */
* {
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

@media (max-width: 960px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .theme-toggle,
  .lang-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .service-modal__content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 0.65rem 0.75rem;
  }
  
  .hero__subtitle {
    font-size: 0.95rem;
  }

  .section--light,
  .hero,
  main {
    padding-inline: clamp(1rem, 4vw, 1.5rem);
  }

  .section--cta {
    text-align: center;
  }

  .header-controls {
    gap: 0.5rem;
  }

  .theme-toggle,
  .lang-toggle {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }

  .lang-text {
    display: none;
  }

  .service-modal__content {
    padding: 1.5rem 1rem;
  }

  .service-modal h2 {
    font-size: 1.5rem;
  }
}
