/* ============================================
   ايرفو كول لخدمات التكييف - Premium AC Services Website
   Dark Theme Design
   ============================================ */

   @font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/cairo-bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
/* CSS Variables */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;

  --accent-primary: #2563eb;
  --accent-secondary: #3b82f6;
  --accent-glow: rgba(37, 99, 235, 0.15);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --border-color: rgba(15, 23, 42, 0.08);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.08);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */

.section-title {
  font-size: 36px;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  text-align: center;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition-fast);
  font-family: 'Cairo', sans-serif;
}

.btn--primary {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn--primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn--secondary {
  background: white;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 70px;
  width: 100px;
  border-radius: 8px;
  object-fit: contain;
}

.navbar__logo span {
  color: var(--accent-primary);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  transition: var(--transition-fast);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-primary);
}

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

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 72px;
  position: relative;
  overflow: hidden;

  background-image: url('../images/cover.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    /* Dark overlay */
    linear-gradient(rgba(10, 14, 23, 0.55),
      rgba(10, 14, 23, 0.55)),

    /* glow effects (اللي عندك) */
    radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.05) 0%, transparent 40%);

  pointer-events: none;
}

/* ============================================
   About Premium Section
   ============================================ */
.about-premium {
  padding: 20px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.about-premium__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-premium__image {
  position: relative;
}

.about-premium__img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about-premium__img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-premium__experience {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-primary);
  color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  z-index: 3;
}

.about-premium__experience .number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.about-premium__experience .label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

.about-premium__decoration {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

.about-premium__content .section-title {
  margin-bottom: 25px;
  text-align: right;
}

.section-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.about-premium__features {
  display: grid;
  gap: 25px;
  margin-bottom: 45px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item__icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item__text h4 {
  font-size: 17px;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.feature-item__text p {
  font-size: 14px;
  color: var(--text-muted);
}

.about-premium__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 45px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-box {
  text-align: center;
}

.stat-box__number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.stat-box__label {
  font-size: 13px;
  color: var(--text-muted);
}

.about-premium__footer {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-premium__founder {
  display: flex;
  flex-direction: column;
}

.about-premium__founder strong {
  font-size: 16px;
  color: var(--text-primary);
}

.about-premium__founder span {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .about-premium__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-premium__image {
    max-width: 500px;
    margin: 0 auto;
  }
}

.hero__content {
  text-align: right;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 60px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero__title {
  font-size: 52px;
  color: #ffffff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero__title .highlight {
  color: var(--accent-primary);
}

.hero-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}

.hero__description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #d7ddeb;
  font-family: 'Cairo', sans-serif;
  line-height: 1;
}

.hero__stat-label {
  font-size: 14px;
  color: #d7ddeb;
  margin-top: 8px;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .hero {
    align-items: center;
    padding-top: 40px;
  }

  .hero__content {
    text-align: center;
    padding: 0 20px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .hero__stat {
    flex: 1 1 140px;
    min-width: 120px;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

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

/* ============================================
   AC Maintenance Section
   ============================================ */

.ac-maintenance {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.ac-maintenance::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(37, 211, 102, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.ac-maintenance__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.ac-maintenance__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
  color: var(--accent-secondary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.ac-maintenance__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ac-maintenance__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ac-maintenance__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.ac-maintenance__experience {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.ac-maintenance__years {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-primary);
  font-family: 'Cairo', sans-serif;
  line-height: 1;
}

.ac-maintenance__exp-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  display: block;
}

.ac-maintenance__title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.ac-maintenance__description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.ac-maintenance__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.ac-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.ac-service-item:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.ac-service-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.ac-service-item__content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.ac-service-item__content p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.ac-maintenance__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.ac-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.ac-feature__check {
  width: 22px;
  height: 22px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.ac-maintenance__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Services Grid Section
   ============================================ */
.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  /* السحر هنا */
  letter-spacing: -0.5px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 70px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.8;
}

.section-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(37, 99, 235, .08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.services-grid__header {
  text-align: center;
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  padding: 20px 0;
  background-color: var(--bg-primary);
}

.services-grid__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-grid-card {
  background: var(--bg-card); /* Changed from #ffffff */
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-grid-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-grid-card__image {
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.service-grid-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: 0.4s;
}

.service-grid-card:hover .service-grid-card__image::after {
  opacity: 1;
}

.service-grid-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-grid-card:hover .service-grid-card__image img {
  transform: scale(1.1);
}

.service-grid-card__content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-grid-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-grid-card:hover .service-grid-card__title {
  color: var(--accent-primary);
}

.service-grid-card__description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-grid-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 25px;
  padding: 0;
  list-style: none;
}

.service-grid-card__list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-grid-card__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-primary);
  font-size: 10px;
  width: 18px;
  height: 18px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-grid-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transition: 0.4s;
  transform-origin: right;
}

.service-grid-card:hover::after {
  transform: scaleX(1);
}

.service-grid-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  opacity: .85;
  transition: .3s;
}

.service-grid-card__actions .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
}

.service-grid-card:hover .service-grid-card__actions {
  opacity: 1;
}

/* ============================================
   Operational Hub (Interactive Tech Journey)
   ============================================ */

.operational-hub {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.hub-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hub Navigation (Technical Tabs) */
.hub-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
}

.hub-nav-btn {
  background: none;
  border: none;
  padding: 15px 30px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: 0.4s;
}

.hub-nav-btn::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent-primary);
  transition: 0.4s;
}

.hub-nav-btn.active {
  color: var(--accent-primary);
}

.hub-nav-btn.active::after {
  width: 100%;
}

.hub-nav-btn span {
  font-size: 13px;
  display: block;
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Hub Content Area */
.hub-panes {
  position: relative;
  min-height: 550px;
}

.hub-pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  animation: hubFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hub-pane.active {
  display: grid;
}

@keyframes hubFade {
  from { opacity: 0; transform: scale(0.98) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Technical Details Side */
.hub-details {
  max-width: 500px;
}

.hub-step-badge {
  color: var(--accent-primary);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-step-badge::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent-primary);
}

.hub-details h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.hub-details p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Diagram System */
.hub-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-item i {
  color: var(--accent-primary);
  font-size: 24px;
}

.spec-item span {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 16px;
}

.spec-item p {
  font-size: 14px !important;
  margin: 0 !important;
  opacity: 0.8;
}

/* Hub Visual (Immersive Diagram) */
.hub-visual {
  position: relative;
  height: 500px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-hub-icon {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: var(--accent-primary);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Connecting Lines Effect */
.visual-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.node-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-primary);
}

.node-point::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  width: 150px;
  height: 1px;
  background: linear-gradient(to left, var(--accent-primary), transparent);
  transform-origin: right center;
  opacity: 0.2;
}

.p1 { top: 20%; right: 20%; }
.p2 { top: 20%; left: 20%; }
.p3 { bottom: 20%; right: 20%; }
.p4 { bottom: 20%; left: 20%; }

@media (max-width: 991px) {
  .hub-pane {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hub-details {
    max-width: 100%;
  }
  .hub-step-badge {
    justify-content: center;
  }
  .hub-spec-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: right;
  }
  
  .hub-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 25px;
    margin-bottom: 50px;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .hub-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  
  .hub-nav-btn {
    flex: 0 0 auto;
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .hub-visual {
    height: 300px;
    margin-top: 20px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 80%);
  }
  
  .visual-hub-icon {
    width: 110px;
    height: 110px;
    font-size: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  }

  .node-point {
    width: 8px;
    height: 8px;
  }

  .p1, .p2, .p3, .p4 {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  
  .p1 { top: 15%; right: 15%; }
  .p2 { top: 15%; left: 15%; }
  .p3 { bottom: 15%; right: 15%; }
  .p4 { bottom: 15%; left: 15%; }
}

/* Lifecycle Roadmap (Refined & Professional) */
.lifecycle-roadmap {
  padding:20px 0;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.roadmap-header {
  margin-bottom: 80px;
}

.roadmap-steps-refined {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.roadmap-steps-refined::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--border-color) 20%, 
    var(--border-color) 80%, 
    transparent 100%
  );
  z-index: 1;
}

.ref-step {
  position: relative;
  z-index: 2;
}

.ref-icon-box {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ref-step:hover .ref-icon-box {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.ref-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.ref-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .narrative-container {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }
  .service-narrative:nth-child(even) .narrative-container {
    direction: rtl;
  }
  .narrative-content {
    max-width: 100%;
  }
  .narrative-features {
    grid-template-columns: 1fr;
    text-align: right;
  }
  .n-feature-item {
    justify-content: center;
  }
  .roadmap-steps-refined {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .roadmap-steps-refined::before {
    display: none;
  }
  .glass-circle {
    width: 320px;
    height: 320px;
  }
  .glass-circle i {
    font-size: 100px;
  }
}

/* توزيع العمودين */
.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

/* بلوك داخلي */
.service-block {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

/* ليست احترافية */
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.feature-list li {
  position: relative;
  padding-right: 26px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  width: 22px;
  height: 22px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 12px;
}

/* صندوق أهمية الخدمة */
.service-highlight {
  margin-top: 28px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent);
  border-right: 4px solid var(--accent-primary);
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .service-columns {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Why Choose Us - Premium Version
   ============================================ */

.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg,
      var(--bg-secondary) 0%,
      #ffffff 60%);
  position: relative;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(37, 99, 235, .06),
      transparent 40%);
  pointer-events: none;
}

.why-us__header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.why-us__card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.why-us__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, .04),
      transparent 60%);
  opacity: 0;
  transition: .4s;
}

.why-us__card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(37, 99, 235, .12),
    0 8px 20px rgba(0, 0, 0, .06);
  border-color: rgba(37, 99, 235, .3);
}

.why-us__card:hover::before {
  opacity: 1;
}

/* ICON */

.why-us__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: rgba(37, 99, 235, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: .3s;
}

.why-us__card:hover .why-us__icon {
  background: var(--accent-primary);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

/* TITLE */

.why-us__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

/* DESCRIPTION */

.why-us__description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Responsive */

@media (max-width:1024px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Statistics Section
   ============================================ */

.stats {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-card__number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  font-family: 'Cairo', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
  padding: 30px 0;
  background: var(--bg-secondary);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__info h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-card__info span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card__service {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 12px;
}

.testimonial-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   Blog Preview Section
   ============================================ */

.blog-preview {
  padding: 20px 0;
  background: var(--bg-primary);
}

.blog-preview__header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-preview-card, .blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-preview-card:hover, .blog-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-primary);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
}

.blog-preview-card__image, .blog-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-preview-card__image::after, .blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.blog-preview-card:hover .blog-preview-card__image::after, 
.blog-card:hover .blog-card__image::after {
  opacity: 1;
}

.blog-preview-card__image img, .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-preview-card:hover .blog-preview-card__image img,
.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-preview-card__content, .blog-card__content {
  padding: 30px;
  flex-grow: 1;
}

.blog-preview-card__meta, .blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  background: rgba(37, 99, 235, 0.05);
  padding: 6px 14px;
  border-radius: 50px;
}

.blog-preview-card__category, .blog-card__date {
  font-size: 13px;
  color: var(--accent-primary);
  font-weight: 700;
}

.blog-preview-card__title, .blog-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

.blog-preview-card__excerpt, .blog-card__excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

.blog-preview-card__link, .blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}

.blog-preview-card__link:hover, .blog-card__link:hover {
  gap: 15px;
}

.blog-preview__footer {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
  padding: 30px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.contact-card::after {
  content: '\f0e0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 70px;
  color: rgba(37, 99, 235, 0.03);
  transform: rotate(-15deg);
  z-index: -1;
  transition: 0.4s;
}

.contact-card:nth-child(2)::after { content: '\f232'; }
.contact-card:nth-child(3)::after { content: '\f3c5'; }
.contact-card:nth-child(4)::after { content: '\f017'; }

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
  border-color: var(--accent-primary);
}

.contact-card:hover::after {
  transform: scale(1.1) rotate(0deg);
  color: rgba(37, 99, 235, 0.06);
}

.contact-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: var(--accent-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.contact-card__title {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card__info {
  font-size: 19px;
  color: var(--text-primary);
  font-weight: 800;
}

.contact__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

/* ============================================
   Why Choose Us (Premium Layout)
   ============================================ */

.why-choose-premium {
  padding: 140px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.why-premium__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-premium__image-col {
  flex: 1;
  position: relative;
}

.why-premium__image-col .img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-premium__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-primary);
  color: white;
  padding: 30px;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  border: 4px solid var(--bg-primary);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

.experience-badge .number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.why-premium__content-col {
  flex: 1;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-feature-item:hover .why-feature-icon {
  background: var(--accent-primary);
  color: white;
  transform: scale(1.05);
}

.why-feature-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-feature-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .why-premium__inner {
    flex-direction: column;
  }

  .experience-badge {
    bottom: 20px;
    right: 20px;
  }

  .why-premium__content-col .section-title,
  .why-premium__content-col .section-subtitle {
    text-align: center !important;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: #05070a;
  padding: 80px 0 0;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer__brand {
  padding-left: 40px;
}

.footer__logo {
  font-family: 'Cairo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo span {
  color: var(--accent-primary);
}

.footer__description {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer__social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.footer__title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-primary);
}

.footer__links li {
  margin-bottom: 15px;
}

.footer__links a {
  color: #94a3b8;
  font-size: 15px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__links a:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  text-align: center;
}

.footer__copyright {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   Floating Buttons
   ============================================ */

.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1);
}

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

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

/* ============================================
   Page Header (for inner pages)
   ============================================ */

.page-header {
  padding: 140px 0 80px;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  font-size: 42px;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-header__description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Blog Page
   ============================================ */

.blog-page {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.blog-card:hover .blog-card__image::after {
  opacity: 1;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.15);
}

.blog-card__content {
  padding: 30px;
  flex-grow: 1;
}

.blog-card__date {
  font-size: 13px;
  color: var(--accent-primary);
  font-weight: 700;
  display: inline-block;
  background: rgba(37, 99, 235, 0.05);
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

.blog-card__excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}

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

.blog-card__link:hover i {
  transform: translateX(-5px);
}

.blog-card__link:hover {
  color: var(--accent-primary);
}

.blog-pagination {
  text-align: center;
  margin-top: 50px;
}

/* Article Page */

.article {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.article__container {
  max-width: 800px;
  margin: 0 auto;
}

.article__header {
  margin-bottom: 40px;
  text-align: center;
}

.article__date {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.article__title {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.3;
}

.article__content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.article__content h2 {
  font-size: 26px;
  margin: 48px 0 24px;
  color: var(--text-primary);
}

.article__content h3 {
  font-size: 22px;
  margin: 36px 0 18px;
  color: var(--text-primary);
}

.article__content p {
  margin-bottom: 24px;
}

.article__content ul,
.article__content ol {
  margin-bottom: 24px;
  padding-right: 24px;
}

.article__content li {
  margin-bottom: 12px;
  position: relative;
}

.article__content ul li::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.article__cta {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  margin-top: 60px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.article__cta-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.article__cta-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (min-width: 768px) {
  .navbar__menu {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .ac-maintenance__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ac-maintenance__image {
    order: -1;
  }

  .ac-maintenance__image img {
    height: 350px;
  }

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

  .services-grid__container,
  .testimonials__grid,
  .blog-preview__grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .service-detail-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-section__image {
    order: -1;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 36px;
  }

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

  .ac-maintenance,
  .services-grid,
  .about-premium,
  .testimonials,
  .blog-preview,
  .why-choose-premium,
  .contact,
  .service-detail-section,
  .blog-hero {
    padding: 60px 0;
  }

  .ac-maintenance__title {
    font-size: 24px;
  }

  .ac-maintenance__services {
    grid-template-columns: 1fr;
  }

  .ac-maintenance__features {
    grid-template-columns: 1fr;
  }

  .ac-maintenance__cta {
    flex-direction: column;
  }

  .ac-maintenance__cta .btn {
    width: 100%;
  }

  .ac-maintenance__experience {
    padding: 15px 20px;
  }

  .ac-maintenance__years {
    font-size: 32px;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .hero__stats {
    gap: 5px;
  }

  .hero__stat-number {
    font-size: 32px;
  }

  .services-grid__container,
  .testimonials__grid,
  .blog-preview__grid,
  .blog-grid,
  .why-us__grid,
  .stats__grid,
  .contact__grid,
  .about-premium__features {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__brand {
    padding-left: 0;
  }

  .contact__cta {
    flex-direction: column;
  }

  .contact__cta .btn {
    width: 100%;
  }
}

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

  .hero__title {
    font-size: 28px;
  }

  .btn {
    width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .floating-buttons {
    bottom: 20px;
    left: 20px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .service-detail-section__content h2 {
    font-size: 24px;
  }
}

/* ============================================
   Premium Blog Hero
   ============================================ */

.blog-hero {
  position: relative;
  padding: 180px 0 120px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg,
      #0f172a 0%,
      #1e293b 50%,
      #111827 100%);
  color: #fff;
}

/* Glow overlay */
.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left,
      rgba(37, 99, 235, .25),
      transparent 40%),
    radial-gradient(circle at bottom right,
      rgba(59, 130, 246, .15),
      transparent 50%);
  pointer-events: none;
}

.blog-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

/* Badge */

.blog-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(59, 130, 246, .15);
  border: 1px solid rgba(59, 130, 246, .3);
  font-size: 14px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

/* Title */

.blog-hero__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.blog-hero__title span {
  color: #3b82f6;
  position: relative;
}

.blog-hero__title span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  background: rgba(59, 130, 246, .25);
  border-radius: 4px;
  z-index: -1;
}

/* Description */

/* ============================================
   Premium Editorial Blog Hero
   ============================================ */

.blog-hero {
  position: relative;
  padding: 160px 0 120px;
  background: #ffffff;
}

.blog-hero__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */

.blog-hero__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(37, 99, 235, .08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.blog-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.blog-hero__title span {
  color: var(--accent-primary);
}

.blog-hero__description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 600px;
}

/* CARD SIDE */

.blog-hero__card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: .3s;
}

.blog-hero__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-hero__stat {
  margin-bottom: 24px;
}

.blog-hero__stat strong {
  display: block;
  font-size: 32px;
  color: var(--accent-primary);
}

.blog-hero__stat span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Divider */

.blog-hero__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.02),
      transparent);
}

/* Responsive */

@media (max-width: 992px) {
  .blog-hero__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog-hero__description {
    margin: 0 auto;
  }
}

/* ============================================
   Services Hero - Premium White Layout
   ============================================ */

.services-hero {
  padding: 160px 0 120px;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #f8fafc 100%);
  position: relative;
}

.services-hero__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */

.services-hero__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(37, 99, 235, .08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.services-hero__title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.services-hero__title span {
  display: block;
  color: var(--accent-primary);
  margin-top: 6px;
}

.services-hero__description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 600px;
}

/* Highlights Box */

/* ============================================
   Creative Services Banner
   ============================================ */

.services-banner {
  position: relative;
  padding: 170px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

/* soft background texture */

.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, .06), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, .05), transparent 50%);
  pointer-events: none;
}

.services-banner__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
}

/* vertical accent line */

.services-banner__line {
  width: 6px;
  height: 120px;
  background: var(--accent-primary);
  border-radius: 4px;
  margin-top: 10px;
}

/* content */

.services-banner__title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.services-banner__title span {
  position: relative;
  display: inline-block;
  color: var(--accent-primary);
}

.services-banner__title span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 100%;
  height: 14px;
  background: rgba(37, 99, 235, .15);
  z-index: -1;
  border-radius: 6px;
}

.services-banner__description {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
}

.services-banner__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  position: relative;
  transition: .3s;
}

.services-banner__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: .3s;
}

.services-banner__link:hover::after {
  width: 100%;
}

/* Responsive */

@media (max-width: 768px) {
  .services-banner__inner {
    flex-direction: column;
    gap: 20px;
  }

  .services-banner__line {
    height: 6px;
    width: 60px;
  }

  .services-banner__title {
    font-size: 36px;
  }
}

/* ============================================
   Riyadh Neighborhood Explorer (Interactive App Style)
   ============================================ */

.riyadh-regions {
  padding: 30px 0;
  background: #f8fafc;
  position: relative;
}

.neighborhood-explorer {
  max-width: 1000px;
  margin: 60px auto 0;
  background: #ffffff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Search Bar Area */
.explorer-search-wrapper {
  margin-bottom: 40px;
  position: relative;
}

.explorer-search-input {
  width: 100%;
  padding: 18px 60px 18px 25px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.explorer-search-input:focus {
  border-color: var(--accent-primary);
  background: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.explorer-search-wrapper i {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 20px;
  transition: 0.3s;
}

.explorer-search-input:focus + i {
  color: var(--accent-primary);
}

/* Tabs System */
.explorer-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.explorer-tab-btn {
  padding: 12px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explorer-tab-btn.active {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.explorer-tab-btn:hover:not(.active) {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Panes Area */
.explorer-panes {
  position: relative;
  min-height: 20px;
}

.explorer-pane {
  display: none;
  animation: fadeInDown 0.5s ease forwards;
}

.explorer-pane.active {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modern Chips */
.neighborhood-chip {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: default;
}

.neighborhood-chip:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.neighborhood-chip.highlight {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
  animation: pulse-active 2s infinite;
}

@keyframes pulse-active {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Empty State */
.explorer-empty {
  display: none;
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

.explorer-empty i {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .neighborhood-explorer {
    padding: 25px 15px;
    border-radius: 24px;
  }
  .explorer-tabs {
    gap: 8px;
  }
  .explorer-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
    flex-grow: 1;
    text-align: center;
  }
}

/* ============================================
   FAQ Section (Refined Accordion)
   ============================================ */

.faq-section {
  padding: 30px 0;
  background: var(--bg-secondary);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq__item {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq__question {
  width: 100%;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  outline: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  transition: 0.3s;
}

.faq-icon {
  width: 34px;
  height: 34px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq-icon {
  background: var(--accent-primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq__item.active .faq__question h3 {
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(37, 99, 235, 0.02);
}

.faq__item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 30px 25px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
  .region-col {
    padding: 25px;
  }
  .faq__question {
    padding: 20px;
  }
  .faq__question h3 {
    font-size: 16px;
  }
}

/* ============================================
   Footer Section
   ============================================ */
.footer {
  padding: 80px 0 30px;
  background: #0f172a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.footer__logo-img {
  height: 90px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}

.footer__description {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}

.footer__title {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__links li a {
  color: #94a3b8;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links li a i {
  font-size: 10px;
  color: var(--accent-primary);
}

.footer__links li a:hover {
  color: #fff;
  padding-right: 5px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact-list li {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}

.footer__contact-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.footer__contact-info a,
.footer__contact-info p {
  color: #94a3b8;
  font-size: 15px;
  margin: 0;
}

.footer__column--map {
  display: flex;
  flex-direction: column;
}

.footer__map-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__copyright {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__column--map {
    grid-column: span 2;
  }
  .footer__map-square {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__column--map {
    grid-column: span 1;
  }
  .footer__map-square {
    aspect-ratio: 1 / 1;
  }
}