:root {
  --primary: #031c47;
  --primary-2: #05285f;
  --dark: #02152f;
  --gold: #d8a74f;
  --gold-2: #f2cf74;
  --text: #111827;
  --muted: #6b7280;
  --light: #f7f8fb;
  --white: #ffffff;
  --border: rgba(3, 28, 71, 0.08);
  --shadow: 0 18px 45px rgba(3, 28, 71, 0.1);
  --shadow-hover: 0 28px 70px rgba(3, 28, 71, 0.18);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: #fff;
  color: var(--text);
  direction: rtl;
}

a,
a:link,
a:visited,
a:hover,
a:focus,
a:active,
.nav-links a,
.footer a,
.project-card,
.type-card,
.article-card a,
.dark-btn,
.view-all,
.consult-btn,
.cta-btn,
.floating-whatsapp {
  text-decoration: none !important;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: 92%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TOP HEADER */

.top-header {
  background: var(--dark);
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact a,
.top-social a {
  color: #c8d2df !important;
  transition: 0.3s;
}

.top-contact a:hover,
.top-social a:hover {
  color: var(--gold) !important;
}

.top-contact i {
  color: var(--gold);
  margin-left: 7px;
}

.top-message {
  color: var(--gold);
  font-weight: 800;
  text-align: center;
}

.top-social a {
  width: 31px;
  height: 31px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.top-social a:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

/* HEADER */

.header {
  width: 100%;
  min-height: 88px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(3, 28, 71, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.logo img {
  width: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links li a {
  color: var(--primary) !important;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li.active a {
  color: var(--gold) !important;
}

.nav-links li.active a::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 20px;
}

.consult-btn {
  min-width: 190px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  transition: 0.3s;
  box-shadow: 0 14px 28px rgba(3, 28, 71, 0.18);
}

.consult-btn:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

/* HERO */

.hero-section {
  min-height: calc(100vh - 88px);
  position: relative;
  background: url("hero.png") center center / cover no-repeat;
  overflow: hidden;
  padding: 95px 5% 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 14, 36, 0.22), rgba(0, 14, 36, 0.94)),
    linear-gradient(to bottom, rgba(0, 14, 36, 0.35), rgba(0, 14, 36, 0.78));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: right;
  padding-top: 30px;
}

.hero-content h1 {
  color: #fff;
  font-size: 74px;
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  display: block;
  color: var(--gold);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 35px;
}

.hero-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-card {
  min-width: 230px;
  height: 82px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  transition: 0.3s;
}

.hero-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-card i {
  color: var(--gold);
  font-size: 28px;
}

/* SEARCH */

.search-box {
  position: relative;
  z-index: 3;
  width: 92%;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 34px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 230px;
  gap: 18px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.search-item {
  height: 64px;
  background: #f7f8fb;
  border: 1px solid #e9edf3;
  border-radius: 18px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-item i {
  font-size: 22px;
  color: var(--primary);
}

.search-item select,
.search-item input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.search-item.price span {
  background: #fff;
  color: #555;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.search-btn {
  height: 64px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: 0.3s;
}

.search-btn:hover {
  transform: translateY(-3px);
}

/* SECTIONS */

.projects-section,
.types-section,
.services-section,
.articles-section,
.cta-news-section {
  width: 100%;
  padding: 80px 6%;
  background: #fff;
}

.projects-section,
.types-section,
.services-row,
.help-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 45px;
  align-items: center;
}

.projects-section,
.services-row,
.help-row {
  border-bottom: 1px solid #e6eaf0;
}

.section-num {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.section-num::after {
  content: "";
  width: 45px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.section-side h2,
.section-title h2 {
  color: var(--primary);
  font-size: 38px;
  font-weight: 900;
  margin: 22px 0 16px;
}

.section-side p,
.service-card p,
.article-content h3,
.cta-content p,
.investment-feature p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
}

.dark-btn,
.view-all {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important;
  border-radius: 14px;
  min-width: 185px;
  height: 55px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 900;
  transition: 0.3s;
}

.dark-btn:hover,
.view-all:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

/* PROJECTS */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-card,
.type-card,
.service-card,
.article-card,
.investment-feature {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: 0.35s ease;
  position: relative;
}

.project-card:hover,
.type-card:hover,
.service-card:hover,
.article-card:hover,
.investment-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-card img,
.article-card img {
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.project-card img {
  height: 260px;
}

.article-card img {
  height: 240px;
}

.project-card:hover img,
.article-card:hover img {
  transform: scale(1.06);
}

.heart {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.premium-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
}

.project-info {
  position: absolute;
  inset: auto 0 0;
  padding: 85px 18px 22px;
  text-align: right;
  background: linear-gradient(180deg, transparent, rgba(2, 21, 47, 0.95));
  color: #fff;
}

.project-info h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.project-info p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-bottom: 10px;
}

.project-info span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.project-info strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

/* AREAS */

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.type-card {
  min-height: 185px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: inherit !important;
}

.type-card i,
.service-card i,
.investment-feature i {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(3, 28, 71, 0.08),
    rgba(216, 167, 79, 0.18)
  );
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 16px;
}

.type-card h3,
.service-card h3,
.investment-feature h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.type-card p {
  color: var(--muted);
  font-size: 14px;
}

/* INVESTMENT */

.investment-box {
  grid-column: 1 / -1;
  margin-top: 50px;
  background: linear-gradient(135deg, #071827, var(--primary));
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
  color: #fff;
  box-shadow: 0 25px 70px rgba(7, 24, 39, 0.25);
  position: relative;
  overflow: hidden;
}

.investment-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(216, 167, 79, 0.28),
    transparent 35%
  );
}

.investment-text,
.investment-feature {
  position: relative;
  z-index: 2;
}

.investment-text {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 28px;
}

.investment-text h3 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

.investment-text p {
  color: #d9e0ea;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 22px;
}

.investment-text a {
  min-width: 230px;
  height: 52px;
  background: var(--gold);
  color: var(--primary) !important;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
}

.investment-feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
  text-align: center;
  padding: 26px 18px;
}

.investment-feature h4 {
  color: #fff;
}

.investment-feature p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.investment-feature i {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

/* SERVICES */

.services-row,
.help-row {
  padding: 45px 0;
}

.help-row {
  border-bottom: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 250px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* STEPS */

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 34px;
  border: 1px solid var(--border);
}

.step-item {
  width: 170px;
  text-align: center;
}

.step-number {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.step-item h3 {
  color: var(--primary);
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 10px;
}

.step-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.step-line {
  flex: 1;
  height: 2px;
  border-top: 2px dashed #c9ced6;
  margin-top: 33px;
}

/* ARTICLES */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.article-content {
  padding: 26px;
}

.article-content .date {
  background: rgba(216, 167, 79, 0.15);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
}

.article-content h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}

.article-content a {
  color: var(--primary) !important;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* CTA + FORM */

.cta-news-section {
  background: #fff;
}

.newsletter-box,
.cta-box {
  background: linear-gradient(135deg, var(--primary), #061827);
  border-radius: 32px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  gap: 35px;
}

.newsletter-box::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(216, 167, 79, 0.18),
    transparent 35%
  );
}

.newsletter-content,
.cta-content,
.newsletter-form,
.cta-actions {
  position: relative;
  z-index: 2;
}

.newsletter-content h2,
.cta-content h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.4;
}

.newsletter-content p,
.cta-content p {
  color: #d9e0ea;
  font-size: 16px;
  line-height: 1.9;
}

.newsletter-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 640px !important;
  margin: 0 !important;
}

.newsletter-form .form-group {
  width: 100%;
}

.newsletter-form .form-group.full,
.newsletter-form button {
  grid-column: 1 / -1 !important;
}

.newsletter-form input {
  width: 100% !important;
  height: 58px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 16px !important;
  padding: 0 18px !important;
  font-family: "Cairo", sans-serif !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #111827 !important;
  display: block !important;
}

.newsletter-form input::placeholder {
  color: #6b7280;
}

.newsletter-form button {
  height: 60px !important;
  border: none !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: var(--primary) !important;
  font-family: "Cairo", sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
}

.lead-success {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  margin-top: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  min-width: 220px;
  height: 58px;
  background: var(--gold);
  color: var(--primary) !important;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.phone-box {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FOOTER */

.footer {
  background: var(--dark);
  padding-top: 70px;
}

.footer-container {
  width: 88%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 45px;
}

.footer-col h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 25px;
}

.footer-about img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #c8d2df;
  line-height: 2;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: #c8d2df !important;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold) !important;
}

.contact-info li {
  color: #c8d2df;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info li i {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--primary) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  text-align: center;
  color: #c8d2df;
  font-size: 14px;
}

/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-4px);
  color: #fff !important;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: pulseWhatsapp 1.7s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .projects-section,
  .types-section,
  .services-row,
  .help-row {
    grid-template-columns: 1fr;
  }

  .projects-grid,
  .types-grid,
  .services-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn {
    grid-column: span 2;
  }

  .newsletter-box,
  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .container {
    flex-direction: column;

  }

  .header {
    min-height: auto;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .newsletter-box,
  .cta-box {
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .step-line {
    width: 2px;
    height: 35px;
    border-top: none;
    border-right: 2px dashed #c9ced6;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-cards {
    flex-direction: column;
  }

  .hero-card {
    width: 100%;
  }

  .search-box,
  .projects-grid,
  .types-grid,
  .services-grid,
  .articles-grid,
  .investment-box {
    grid-template-columns: 1fr;
  }

  .search-btn {
    grid-column: span 1;
  }

  .projects-section,
  .types-section,
  .services-section,
  .articles-section,
  .cta-news-section {
    padding: 50px 20px;
  }

  .section-side h2,
  .section-title h2 {
    font-size: 30px;
  }

  .newsletter-form {
    grid-template-columns: 1fr !important;
  }

  .newsletter-form .form-group.full,
  .newsletter-form button {
    grid-column: 1 / -1 !important;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 28px;
    left: 16px;
    bottom: 16px;
  }
}

@media (max-width: 576px) {
  .top-contact {
    flex-direction: column;
    gap: 8px;
  }

  .top-message {
    font-size: 13px;
  }

  .nav-links li a {
    font-size: 14px;
  }
}
/* WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Phone */
.floating-phone {
  position: fixed;
  bottom: 90px; /* فوق الواتساب */
  left: 20px;
  width: 58px;
  height: 58px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.floating-phone:hover {
  transform: translateY(-4px) scale(1.08);
}
