/* ============================================================
   JDARA TECHNOLOGY — styles.css
   Color System:
     --white:  #FFFFFF
     --black:  #000000
     --teal:   #008080
     --teal-dark: #006666
     --teal-soft: #E0F4F4
   ============================================================ */

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

:root {
  --white: #ffffff;
  --black: #000000;
  --teal: #008080;
  --teal-dark: #006666;
  --teal-light: #00a0a0;
  --teal-soft: #E0F4F4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --dark-bg: #0a0a0a;
  --dark-surface: #111111;
  --dark-card: #161616;
  --dark-border: rgba(255,255,255,0.08);
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-teal: 0 8px 32px rgba(0,128,128,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- UTILITIES ---- */
.teal-text { color: var(--teal); }

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0,128,128,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ---- SCROLL REVEAL ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-teal);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,128,128,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,128,128,0.3);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,128,128,0.4);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(8, 8, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 15px;
  height: 90px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Text */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-img {
  height: 65px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 200, 200, 0.5));
  transition: transform 0.3s ease;
}
.logo:hover .header-logo-img {
  transform: scale(1.05);
}
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 15px rgba(0, 200, 200, 0.4));
}

.inline-logo {
  height: 2em;
  width: auto;
  vertical-align: middle;
  margin-top: -4px;
}

.inline-logo-footer {
  height: 1.5rem;
  width: auto;
  vertical-align: middle;
  margin-top: -3px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 10px;
  transition: var(--transition);
}
.site-header.scrolled .lang-switcher {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  padding: 3px 6px;
  border-radius: 100px;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--teal);
  color: var(--white);
}
.lang-btn:not(.active):hover {
  color: var(--white);
}
.site-header.scrolled .lang-btn { color: rgba(255,255,255,0.6); }
.site-header.scrolled .lang-btn.active { color: var(--white); }
.site-header.scrolled .lang-btn:not(.active):hover { color: var(--white); }
.lang-divider {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  user-select: none;
}
.site-header.scrolled .lang-divider { color: rgba(255,255,255,0.2); }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.nav-link.has-arrow::after {
  content: '▾';
  font-size: 0.9rem;
  margin-left: 4px;
  opacity: 0.5;
}
html[dir="rtl"] .nav-link.has-arrow::after {
  margin-left: 0;
  margin-right: 4px;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(8, 8, 12, 0.98);
  backdrop-filter: blur(20px);
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 1001;
}
.dropdown-menu.mega-menu {
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
html[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.site-header.scrolled .nav-link { color: rgba(255,255,255,0.8); }
.site-header.scrolled .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* Mobile dropdown adjustments */
.mobile-nav .nav-item {
  width: 100%;
}
.mobile-nav .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: transparent;
  padding: 0 0 10px 20px;
  display: none;
  border: none;
}
html[dir="rtl"] .mobile-nav .dropdown-menu {
  padding: 0 20px 10px 0;
}
.mobile-nav .has-dropdown.active .dropdown-menu {
  display: flex;
}
.mobile-nav .nav-link {
  justify-content: space-between;
}

/* Pricing Styles */
.pkg-pricing {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.price-main {
  font-weight: 700;
  color: var(--teal);
  font-size: 1.2rem;
}
.price-sub {
  font-size: 0.75rem;
  color: var(--gray-600);
  opacity: 0.8;
  margin-top: -2px;
}
.media-section .price-main { color: var(--teal-light); }
.media-section .price-sub { color: rgba(255,255,255,0.5); }

.discount-badge {
  display: inline-block;
  align-self: flex-start;
  background: #e11d48;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-main del {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-inline-end: 6px;
  font-weight: 500;
  text-decoration: line-through;
}
.media-section .price-main del {
  color: rgba(255, 255, 255, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.site-header.scrolled .hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--white); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(8, 8, 12, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .nav-link { color: rgba(255,255,255,0.75); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav .nav-link:hover { color: var(--white); background: transparent; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--dark-bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,128,128,0.1) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 860px;
  padding: 0 32px;
  z-index: 10;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-we-are {
  background: var(--white);
}
.who-we-are .section-title,
.who-we-are .section-desc {
  max-width: 700px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.who-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.who-card:hover::before { transform: scaleX(1); }

.who-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.who-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}
.who-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.who-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   CTA GRID
   ============================================================ */
.cta-grid-section {
  background: var(--gray-50);
  padding: 60px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cta-card {
  display: block;
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.cta-card--light {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--black);
}
.cta-card--dark {
  background: var(--teal);
  color: var(--white);
}
.cta-card--light:hover {
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(0,128,128,0.1);
  transform: translateY(-4px);
}
.cta-card--dark:hover {
  background: var(--teal-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,128,128,0.4);
}

.cta-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--teal-soft);
}
.cta-card--dark .cta-icon {
  background: rgba(255,255,255,0.15);
}
.cta-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}
.cta-card--dark .cta-icon svg { color: var(--white); }
.cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.cta-card p {
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.6;
  flex: 1;
}
.cta-card--light p { color: var(--gray-600); }
.cta-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 2rem;
  transition: transform 0.3s ease;
}
.cta-card:hover .cta-arrow { transform: translateX(8px); }

/* ============================================================
   SERVICE PACKAGES
   ============================================================ */
.service-packages {
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.package-card:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(0,128,128,0.1);
  transform: translateY(-4px);
}
.package-card--cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.package-card--cta:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0,128,128,0.4);
}

.pkg-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pkg-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pkg-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.pkg-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 2px;
}
.pkg-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.pkg-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pkg-features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}
.pkg-cta:hover { gap: 12px; }

/* CTA card inner */
.pkg-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  gap: 1rem;
}
.pkg-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-cta-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}
.package-card--cta h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.package-card--cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  flex: 1;
}
.package-card--cta .btn-primary {
  background: var(--white);
  color: var(--teal);
  box-shadow: none;
  margin-top: auto;
}
.package-card--cta .btn-primary:hover {
  background: var(--teal-soft);
  transform: translateY(-2px);
}

/* ============================================================
   CREATIVE MEDIA
   ============================================================ */
.media-section {
  background: var(--dark-bg);
}
.media-section .section-tag {
  border-color: rgba(0,128,128,0.4);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.media-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.media-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.media-card:hover {
  border-color: rgba(0,128,128,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.media-card:hover::before { opacity: 1; }

.media-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -1rem;
  user-select: none;
}
.media-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,128,128,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.media-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}
.media-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.media-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.media-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,128,128,0.12);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================================
   DIGITAL MARKETING
   ============================================================ */
.marketing-section {
  background: var(--gray-50);
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.marketing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.marketing-card:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(0,128,128,0.1);
  transform: translateY(-4px);
}

.mkt-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.mkt-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.mkt-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 5px 12px;
  border-radius: 100px;
}
.marketing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
.marketing-card > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.mkt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.mkt-list li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.mkt-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.8rem;
}
.mkt-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  margin-top: 0.5rem;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================================
   BOOKING / FORM
   ============================================================ */
.booking-section {
  background: var(--white);
  padding: 100px 0 120px;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.booking-info .section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); }
.booking-info .section-desc { margin-bottom: 2rem; }

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cp-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-icon svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}
.contact-point span {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Form */
.booking-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,128,128,0.1);
}
.form-group input.error { border-color: #ef4444; }
.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 16px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-teal);
  width: 100%;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,128,128,0.35);
}
.btn-submit:active { transform: translateY(0); }
.btn-icon { font-size: 1.1rem; transition: transform 0.3s ease; }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 14px 18px;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg {
  width: 22px;
  height: 22px;
  color: #16a34a;
  flex-shrink: 0;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--gray-50);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Address Info Side */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.location-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,128,128,0.08);
  transform: translateY(-2px);
}

.loc-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--teal-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.loc-details h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.loc-address {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-teal);
  align-self: flex-start;
  margin-top: 0.25rem;
}
.btn-directions:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,128,128,0.35);
}

/* Map Side */
.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-200);
  min-height: 400px;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
  max-width: 280px;
}
.footer-logo { margin-bottom: 0.25rem; }

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: rgba(0,128,128,0.2);
  border-color: rgba(0,128,128,0.4);
  color: var(--teal-light);
  transform: translateY(-2px);
}

.footer-nav-group h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav-group a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.25s ease;
}
.footer-nav-group a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--teal-light); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover {
  transform: translateY(-5px);
  background-color: #128C7E;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .marketing-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrapper { gap: 3rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Header --- */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; gap: 0.75rem; }
  .header-actions { gap: 0.5rem; }
  .header-actions .btn-cta { display: none; }
  .logo-img { height: 40px; }
  .lang-switcher { padding: 3px 8px; }
  .lang-btn { font-size: 0.72rem; padding: 2px 5px; }

  /* --- Sections --- */
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  /* --- Hero --- */
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.15; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.12em; }
  .hero-actions { gap: 0.75rem; flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .hero-scroll-hint { bottom: 24px; }

  /* --- Section typography --- */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-desc { font-size: 0.95rem; margin-bottom: 2rem; }

  /* --- Who We Are --- */
  .who-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .who-card { padding: 1.5rem; }

  /* --- Packages --- */
  .packages-grid { grid-template-columns: 1fr; gap: 1rem; }
  .package-card { padding: 1.5rem; }

  /* --- Media --- */
  .media-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .media-card { padding: 1.5rem; }
  .media-number { font-size: 2.5rem; }

  /* --- Marketing --- */
  .marketing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .marketing-card { padding: 1.75rem; }

  /* --- Booking/Form --- */
  .booking-section { padding: 60px 0 80px; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .booking-info .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .booking-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn-submit { padding: 14px 24px; font-size: 0.95rem; }

  /* --- Location --- */
  .location-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
  .location-map { min-height: 280px; }
  .location-map iframe { min-height: 280px; }
  .btn-directions { width: 100%; justify-content: center; }

  /* --- Footer --- */
  .site-footer { padding: 60px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; padding: 20px 0; }
  .footer-links { justify-content: center; }
  .footer-brand p { max-width: 100%; }
  .footer-logo-img { height: 40px; }

  /* --- Mobile Nav --- */
  .mobile-nav { padding: 16px 20px 24px; }
  .mobile-nav .nav-link { padding: 14px 0; font-size: 0.95rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; height: 64px; }
  .logo-img { height: 36px; }

  /* Hero */
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .hero-subtitle { font-size: 0.9rem; line-height: 1.65; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { max-width: 100%; }

  /* Sections */
  .section { padding: 50px 0; }
  .section-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .section-desc { font-size: 0.9rem; }
  .section-tag { font-size: 0.68rem; }

  /* Who We Are */
  .who-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .who-card { padding: 1.25rem; }
  .who-icon { width: 44px; height: 44px; margin-bottom: 1rem; }

  /* Packages */
  .package-card { padding: 1.25rem; gap: 0.75rem; }
  .pkg-icon { width: 42px; height: 42px; }
  .pkg-name { font-size: 1rem; }
  .pkg-desc { font-size: 0.83rem; }
  .pkg-features li { font-size: 0.82rem; }
  .package-card--cta { padding: 1.5rem; }

  /* Media */
  .media-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .media-card { padding: 1.25rem; }
  .media-number { font-size: 2rem; }

  /* Marketing */
  .marketing-card { padding: 1.25rem; }
  .mkt-top { gap: 0.75rem; }
  .mkt-icon { width: 40px; height: 40px; }
  .stat-num { font-size: 1.6rem; }

  /* Form */
  .booking-form-wrap { padding: 1.25rem; border-radius: 16px; }
  .form-group input,
  .form-group select { padding: 11px 14px; font-size: 0.875rem; }
  .form-group label { font-size: 0.75rem; }
  .btn-submit { padding: 13px 20px; }

  /* Contact points */
  .contact-point span { font-size: 0.85rem; }
  .cp-icon { width: 36px; height: 36px; }

  /* Footer */
  .footer-nav-group h4 { font-size: 0.75rem; margin-bottom: 1rem; }
  .footer-nav-group a { font-size: 0.83rem; margin-bottom: 0.5rem; }
  .social-links { gap: 0.5rem; }
  .social-link { width: 36px; height: 36px; }

  /* Buttons */
  .btn-primary,
  .btn-outline { padding: 12px 22px; font-size: 0.875rem; }
  .btn-cta { padding: 9px 18px; font-size: 0.83rem; }
}

/* ============================================================
   ARABIC / RTL MODE
   ============================================================ */
[lang="ar"] body,
html[lang="ar"] body {
  font-family: var(--font-arabic);
  direction: rtl;
}

html[lang="ar"] .header-inner,
html[lang="ar"] .footer-top,
html[lang="ar"] .footer-bottom,
html[lang="ar"] .who-grid,
html[lang="ar"] .packages-grid,
html[lang="ar"] .media-grid,
html[lang="ar"] .marketing-grid,
html[lang="ar"] .booking-wrapper,
html[lang="ar"] .hero-actions,
html[lang="ar"] .mkt-top,
html[lang="ar"] .pkg-header,
html[lang="ar"] .contact-points,
html[lang="ar"] .contact-point,
html[lang="ar"] .footer-nav-group {
  direction: rtl;
}

html[lang="ar"] .main-nav,
html[lang="ar"] .mobile-nav {
  direction: rtl;
}

html[lang="ar"] .section-title,
html[lang="ar"] .section-desc,
html[lang="ar"] .hero-title,
html[lang="ar"] .hero-subtitle,
html[lang="ar"] .hero-eyebrow,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] p,
html[lang="ar"] li,
html[lang="ar"] a,
html[lang="ar"] span,
html[lang="ar"] label,
html[lang="ar"] button:not(.lang-btn) {
  font-family: var(--font-arabic) !important;
  letter-spacing: 0 !important;
}

html[lang="ar"] .section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
}

html[lang="ar"] .hero-title {
  line-height: 1.3;
}

html[lang="ar"] .mkt-list li {
  padding-left: 0;
  padding-right: 1.25rem;
}
html[lang="ar"] .mkt-list li::before {
  left: auto;
  right: 0;
  content: '←';
}

html[lang="ar"] .pkg-features li {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

html[lang="ar"] .section-desc {
  text-align: right;
}

html[lang="ar"] .booking-info .section-desc {
  text-align: right;
}

html[lang="ar"] .logo-img {
  /* Logo stays same in Arabic */
}

html[lang="ar"] .btn-submit .btn-icon {
  transform: scaleX(-1);
}

html[lang="ar"] .pkg-cta {
  flex-direction: row-reverse;
}

html[lang="ar"] .footer-brand p {
  text-align: right;
}

html[lang="ar"] .footer-bottom {
  flex-direction: row-reverse;
}

html[lang="ar"] .footer-bottom p {
  direction: rtl;
}

html[lang="ar"] .lang-btn[data-lang="ar"] {
  background: var(--teal);
  color: var(--white);
}

html[lang="ar"] .lang-btn[data-lang="en"] {
  background: transparent;
  color: rgba(255,255,255,0.6);
}

html[lang="ar"].scrolled .lang-btn[data-lang="en"],
html[lang="ar"] .site-header.scrolled .lang-btn[data-lang="en"] {
  color: rgba(255,255,255,0.6);
}

html[lang="ar"] .who-card p,
html[lang="ar"] .pkg-desc,
html[lang="ar"] .media-card p,
html[lang="ar"] .marketing-card > p {
  text-align: right;
}

html[lang="ar"] .contact-point {
  flex-direction: row-reverse;
}

/* RTL mobile fixes */
@media (max-width: 768px) {
  html[lang="ar"] .footer-bottom {
    flex-direction: column;
  }
  html[lang="ar"] .hero-actions {
    align-items: center;
  }
  html[lang="ar"] .hero-actions .btn-primary,
  html[lang="ar"] .hero-actions .btn-outline {
    text-align: center;
    justify-content: center;
  }
  html[lang="ar"] .booking-wrapper {
    direction: rtl;
  }
  html[lang="ar"] .contact-point {
    flex-direction: row;
  }
  html[lang="ar"] .mobile-nav {
    text-align: right;
  }
  html[lang="ar"] .header-inner {
    flex-direction: row-reverse;
  }
  html[lang="ar"] .header-actions {
    flex-direction: row-reverse;
  }
}

@media (max-width: 480px) {
  html[lang="ar"] .hero-title {
    text-align: center;
  }
  html[lang="ar"] .hero-subtitle {
    text-align: center;
  }
  html[lang="ar"] .hero-eyebrow {
    text-align: center;
  }
  html[lang="ar"] .section-desc {
    text-align: right;
  }
  html[lang="ar"] .mkt-list li {
    padding-left: 0;
    padding-right: 1.1rem;
  }
  html[lang="ar"] .pkg-features li {
    gap: 0.4rem;
  }
}

/* RTL WhatsApp Float */
html[lang="ar"] .whatsapp-float {
  left: auto;
  right: 30px;
}
@media (max-width: 768px) {
  html[lang="ar"] .whatsapp-float {
    left: auto;
    right: 20px;
  }
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 128, 128, 0.1);
  border-color: rgba(0, 128, 128, 0.2);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.ind-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.ind-icon svg {
  width: 28px;
  height: 28px;
}

.industry-card:hover .ind-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.industry-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

