/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  height: 100%;
  touch-action: pan-y;
}

/* =============================================
   CUSTOM SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #10B981, #F97316);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #F97316, #10B981);
}

@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 4px;
  }
}

/* =============================================
   BODY
   ============================================= */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #050509;
  color: #FFFFFF;
  overflow-x: hidden;
  overflow-y: visible;
  min-height: 100%;
  position: relative;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

/* Subtle animated background grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   HEADER — GLASSMORPHISM
   ============================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff !important;
  color: #0f172a !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 28px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  transition: background 0.3s ease;
}

.navlogo {
  color: #00A38D !important;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.3px;
  transition: opacity 0.2s ease;
}

.navlogo i {
  background: linear-gradient(135deg, #00A38D, #ff5a1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
}

.navlogo:hover {
  opacity: 0.85;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #334155 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
  transition: all 0.25s ease;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #00A38D, #F97316);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

nav ul li a:hover {
  color: #ff5a1f !important;
  background: rgba(255, 90, 31, 0.08) !important;
}


nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.toggle-btn {
  display: none;
  font-size: 1.4rem;
  color: #FFFFFF;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.toggle-btn:hover {
  background: rgba(16, 185, 129, 0.15);
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100%;
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  border-left: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  padding-top: 70px;
}

.sidebar.active {
  right: 0;
}

.sidebar a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.sidebar a i {
  color: #10B981;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.sidebar a:hover {
  color: #FFFFFF;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 1000;
}

.overlay.active {
  display: block;
}

@media (max-width: 800px) {
  nav ul {
    display: none;
  }

  .toggle-btn {
    display: block;
  }
}

/* =============================================
   SUB-NAVBAR
   ============================================= */
.sub-navbar {
  position: fixed;
  top: 61px;
  width: 100%;
  background: rgba(5, 5, 9, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5px 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-navbar .sub-links {
  display: flex;
  flex-shrink: 0;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.sub-navbar .sub-links li {
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.sub-navbar .sub-links li:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

.sub-navbar .sub-links li a {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.sub-navbar .sub-links li a i {
  color: #10B981;
  font-size: 0.8rem;
}

.sub-navbar .sub-links li:hover a {
  color: #FFFFFF;
}

.sub-navbar button {
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10B981;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px 10px;
  transition: all 0.25s ease;
}

.sub-navbar button:hover {
  background: rgba(16, 185, 129, 0.2);
  color: #fff;
  border-color: rgba(16, 185, 129, 0.4);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-icon {
  position: fixed;
  right: 20px;
  bottom: 200px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  cursor: move;
  touch-action: none;
  animation: waPulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-icon i {
  line-height: 52px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  margin-top: 95px;
  padding: 60px 40px 80px;
  min-height: 100vh;
  min-height: min(100vh, 100dvh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* Hero right-side image */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 50%;
  bottom: 0;
  background: var(--hero-image, url('/raafae.jpg')) center center / cover no-repeat;
  z-index: -1;
  transform: translateY(100%);
  animation: slideUpImage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Soft gradient overlay on hero left */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg,
      rgba(5, 5, 9, 0.97) 45%,
      rgba(5, 5, 9, 0.7) 65%,
      rgba(5, 5, 9, 0.1) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero>* {
  position: relative;
  z-index: 1;
}

/* Available badge */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 50%;
  bottom: 0;
  background: var(--hero-image, url('/raafae.jpg')) center center / cover no-repeat;
  z-index: -1;
  transform: translateY(100%);
  animation: slideUpImage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpImage {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

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

@media (max-width: 500px) {
  .hero {
    min-height: 55vh;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 50px 20px 60px;
  }

  .hero::after {
    left: 30%;
    background-size: cover;
  }
}

@media (max-width: 768px) {

  .hero h1,
  .typing {
    color: #10B981;
  }
}

/* Hero heading */
.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #F1F5F9;
}

.hero h1 .green-text {
  background: linear-gradient(90deg, #10B981, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Available tag */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10B981;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.typing-wrapper {
  min-height: 100px;
  margin-bottom: 32px;
}

.typing {
  font-size: 1.15rem;
  color: #94A3B8;
  max-width: 560px;
  display: inline-block;
  white-space: pre-wrap;
  font-weight: 500;
  line-height: 1.7;
}

/* Blinking cursor after typing text */
.typing::after {
  content: '|';
  color: #10B981;
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

@media (max-width: 405px) {
  .typing-wrapper {
    min-height: 160px;
    margin-bottom: 30px;
  }

  .typing {
    font-size: 1.05rem;
  }
}

/* =============================================
   HERO BUTTONS
   ============================================= */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buttons button {
  position: relative;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.buttons button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.4s ease;
}

.buttons button:hover::before {
  left: 100%;
}

.buttons button:hover {
  background: linear-gradient(135deg, #F97316, #ea580c);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #F97316);
  border-radius: 2px;
  margin: 10px auto 0;
}

.services-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 60px 0 36px;
  background: linear-gradient(90deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.services-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #F97316);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.service-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 20px;
  padding: 32px 26px;
  width: 295px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Gradient glow border on hover using pseudo-element */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #10B981, #F97316);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-card i,
.service-card img {
  font-size: 2.8rem;
  color: #10B981;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.service-card:hover i,
.service-card:hover img {
  transform: scale(1.25) rotate(-5deg);
  color: #F97316;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F1F5F9;
}

.service-card p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.65;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}

.stat-box {
  background: rgba(15, 23, 42, 0.7);
  padding: 44px 32px;
  border-radius: 20px;
  width: 240px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow: 0 0 0 transparent;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #F97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-box h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.stat-box i {
  margin-right: 6px;
  color: #10B981;
  font-size: 1rem;
}

/* Plus sign after numbers */
.stat-box h2::after {
  content: '+';
  font-size: 2rem;
  -webkit-text-fill-color: #F97316;
  background: none;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  margin-top: -2%;
  margin-bottom: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0 16px;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 8px;
}

.testimonial-heading h4 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.testimonial-heading h4::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #F97316);
  border-radius: 2px;
  margin: 10px auto 0;
}

.testimonial-box-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  max-width: 1100px;
  padding: 20px 0 30px;
}

.testimonial-box {
  width: 460px;
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.8);
  padding: 26px 24px;
  border-radius: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonial-box::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(16, 185, 129, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-box:hover {
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(16, 185, 129, 0.08);
}

.profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  border: 2px solid rgba(16, 185, 129, 0.4);
  flex-shrink: 0;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile {
  display: flex;
  align-items: center;
}

.name-user {
  display: flex;
  flex-direction: column;
}

.name-user strong {
  color: #F1F5F9;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.name-user span {
  color: #64748B;
  font-size: 0.78rem;
  margin-top: 2px;
}

.reviews {
  color: #F97316;
  font-size: 0.85rem;
}

.box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.client-comment p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   FORM MODAL
   ============================================= */
.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.form-modal.active {
  display: flex;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-box {
  background: rgba(15, 23, 42, 0.98);
  padding: 36px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  color: white;
  position: relative;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.08);
}

.form-box h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #10B981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

textarea {
  resize: none;
}

.form-box button[type="submit"] {
  margin-top: 12px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  font-weight: 700;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-box button[type="submit"]:hover {
  background: linear-gradient(135deg, #F97316, #ea580c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.1rem;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: #ef4444;
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  text-align: center;
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(12px);
  padding: 28px 20px 22px;
  color: #64748B;
  font-size: 0.85rem;
  border-top: 1px solid rgba(16, 185, 129, 0.12);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10B981, #F97316, transparent);
}

.social-icons {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1rem;
  color: white;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.12);
}

.social-icons a:nth-child(1) {
  background: #1877F2;
}

.social-icons a:nth-child(2) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a:nth-child(3) {
  background: #0A66C2;
}

.social-icons a:nth-child(4) {
  background: #161B22;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:nth-child(5) {
  background: #1DA1F2;
}

.social-icons a:nth-child(1):hover {
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.5);
}

.social-icons a:nth-child(2):hover {
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.5);
}

.social-icons a:nth-child(3):hover {
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.5);
}

.social-icons a:nth-child(4):hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.social-icons a:nth-child(5):hover {
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.5);
}

.social-icons a i {
  color: white;
}