:root {
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --green: #22c55e;
  --dark: #0f172a;
  --text: #475569;
  --white: #ffffff;
  --bg: #f8fbff;
  --card: #ffffff;
  --border: #e5eef8;
  --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}
html[dir="rtl"] input,
html[dir="rtl"] textarea {
  text-align: right;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Cairo", sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

body.fade-switch {
  opacity: 0.96;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.page-transition {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
  transition: 0.35s ease;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 90px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.96rem;
  transition: 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: none;
}

/* =========================
   RESPONSIVE NAVBAR
========================= */

@media (max-width: 992px) {
  .nav-wrapper {
    min-height: 80px;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: white;

    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    border: 1px solid rgba(226, 232, 240, 0.9);

    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    gap: 18px;
  }

  .logo-text h2 {
    font-size: 0.92rem;
  }

  .primary-mini-btn {
    display: none;
  }
}

@media (max-width: 520px) {
  .navbar {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow);
}

.logo-text h2 {
  font-size: 1rem;
  line-height: 1.5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  border: none;
  background: white;
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.lang-toggle:hover {
  transform: translateY(-2px);
}

.primary-mini-btn {
  text-decoration: none;
  background: var(--primary);
  color: white;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
}

/* =========================
   NEW HERO SECTION
========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 700;
}

.hero-content h1 {
  font-size: 3.3rem;
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  color: #334155;
  font-weight: 600;
}

.trust-item i {
  color: var(--green);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  width: 100%;
  position: relative;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.hero-main-image:hover .hero-image {
  transform: scale(1.05);
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  z-index: 5;
}

.hero-floating-card i {
  color: var(--primary);
  font-size: 1.1rem;
}

.floating-top {
  top: 40px;
  left: -20px;
}

.floating-bottom {
  bottom: 40px;
  right: -20px;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.hero-blur-1 {
  width: 320px;
  height: 320px;
  background: #93c5fd;
  top: -120px;
  left: -80px;
}

.hero-blur-2 {
  width: 260px;
  height: 260px;
  background: #86efac;
  bottom: -100px;
  right: -80px;
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gallery-subtitle {
  max-width: 700px;
  margin: 18px auto 0;
  line-height: 1.9;
  color: var(--text);
}

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

.gallery-card {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
}

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

/* =========================
   RESPONSIVE
========================= */

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

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

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

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

  .hero-main-image {
    min-height: 460px;
  }

  .floating-top {
    left: 10px;
  }

  .floating-bottom {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 0 50px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.35;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-main-image {
    min-height: 360px;
    border-radius: 26px;
  }

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

  .gallery-card {
    min-height: 260px;
  }

  .hero-floating-card {
    position: relative;
    margin-top: 18px;
  }

  .floating-top,
  .floating-bottom {
    inset: auto;
  }
}

@media (max-width: 520px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
  }

  .hero-main-image {
    min-height: 280px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    rgba(219, 234, 254, 0.9),
    rgba(255, 255, 255, 1)
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 600;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 22px;
  max-width: 650px;
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.25);
}

.secondary-btn {
  background: white;
  color: var(--dark);
  border: 1px solid var(--border);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.trust-card i {
  color: var(--green);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(37, 99, 235, 0.1),
    rgba(34, 197, 94, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.hero-image i {
  font-size: 8rem;
  color: var(--primary);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card i {
  color: var(--primary);
}

.top-card {
  top: 10%;
  left: 0;
}

.bottom-card {
  bottom: 10%;
  right: 0;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
}

.shape-1 {
  width: 250px;
  height: 250px;
  background: #93c5fd;
  top: -60px;
  left: -60px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #86efac;
  bottom: -120px;
  right: -60px;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: #bfdbfe;
  top: 30%;
  right: 20%;
}

.features-section,
.about-section,
.contact-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.section-header h2 {
  font-size: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

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

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1rem;
  line-height: 1.7;
}

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

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text);
  line-height: 2;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact-section {
  height: fit-content;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(239, 246, 255, 0.8)
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.contact-card,
.contact-info-card {
  background: white;
  border-radius: 30px;
  padding: 35px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  font-weight: 600;
}

.input-group input,
.input-group textarea {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  font-size: 1rem;
  font-family: inherit;
  background: #fbfdff;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
}

.submit-btn {
  border: none;
  cursor: pointer;
}

.contact-info-card {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.info-item h4 {
  margin-bottom: 8px;
}

.info-item p {
  color: var(--text);
  line-height: 1.8;
}

.small-btn {
  padding: 14px 22px;
}

.fade-item {
  animation: fadeUp 0.8s ease forwards;
}

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

html[dir="rtl"] body {
  font-family: "Cairo", "Inter", sans-serif;
}

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

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }
}

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

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

  .section-header h2,
  .about-content h2 {
    font-size: 2rem;
  }

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

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .hero-image {
    width: 100%;
    height: 320px;
  }

  .floating-card {
    position: relative;
    margin-top: 18px;
  }

  .top-card,
  .bottom-card {
    inset: auto;
  }

  .nav-wrapper {
    gap: 20px;
    flex-direction: column;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }
}
/* VIDEO SECTION */

.video-banner-section {
  padding: 40px 0 0;
  position: relative;
  z-index: 2;
}

.video-banner-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(239, 246, 255, 0.95)
  );
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 25px 60px rgba(37, 99, 235, 0.08),
    0 10px 25px rgba(15, 23, 42, 0.05);
}

.video-banner-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(96, 165, 250, 0.12);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  filter: blur(10px);
}

.video-banner-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
}

.video-banner-content {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.video-banner-content h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.video-banner-content p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.9;
  max-width: 700px;
}

.video-frame-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  overflow: hidden;
  background: #0f172a;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.video-frame-wrapper iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
}

/* Responsive */

@media (max-width: 992px) {
  .video-frame-wrapper iframe {
    height: 460px;
  }

  .video-banner-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .video-banner-content h2 {
    font-size: 1.7rem;
  }

  .video-frame-wrapper iframe {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .video-banner-card {
    padding: 22px;
    border-radius: 24px;
  }

  .video-frame-wrapper {
    border-radius: 18px;
  }

  .video-frame-wrapper iframe {
    height: 240px;
  }
}
/* IMAGE PLACEHOLDER SYSTEM */

.image-placeholder {
  background-image: url("./assets/styles/g1.jpg");
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 1),
    rgba(226, 232, 240, 0.95)
  );
  border: 2px dashed rgba(148, 163, 184, 0.45);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.04),
    rgba(34, 197, 94, 0.04)
  );
}

.placeholder-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

/**/
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
  height: 320px;
  background: #f5f5f5;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}
/**/
.placeholder-overlay i {
  font-size: 4rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.placeholder-overlay h3 {
  font-size: 1.4rem;
  color: #334155;
  margin-bottom: 10px;
}

.placeholder-overlay p {
  color: #64748b;
  line-height: 1.8;
  max-width: 340px;
}

/* HERO IMAGE PLACEHOLDER */

.hero-placeholder {
  width: 420px;
  height: 420px;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

/* ABOUT IMAGE PLACEHOLDER */

.about-image-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* CONTACT FORM STATUS */

.form-status {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.submit-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
/* LOCATION MAP */

.location-map-card {
  width: 60%;
  margin: 30px auto;
  background: white;
  border-radius: 30px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.map-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(96, 165, 250, 0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.map-header h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.map-header p {
  color: var(--text);
  line-height: 1.7;
}

.map-frame-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.08);
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(0.05) contrast(1.02);
}

/* MOBILE */

@media (max-width: 768px) {
  .location-map-card {
    padding: 22px;
    border-radius: 24px;
  }

  .map-frame-wrapper iframe {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .map-header {
    align-items: flex-start;
  }

  .map-frame-wrapper {
    border-radius: 18px;
  }

  .map-frame-wrapper iframe {
    height: 260px;
  }
}
/* FOOTER */

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a, #111827);
  padding-top: 90px;
  margin-top: 80px;
  color: white;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(37, 99, 235, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(34, 197, 94, 0.12),
      transparent 25%
    );
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand {
  max-width: 500px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.footer-logo h3 {
  font-size: 1.3rem;
  line-height: 1.7;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-inline-start: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

/* MOBILE */

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 520px) {
  .footer {
    padding-top: 70px;
  }

  .footer-logo {
    align-items: flex-start;
  }
}
