:root {
  --background: #F8FAFC;
  --foreground: #1C1917;
  --primary: #0A2342;
  --primary-foreground: #FFFFFF;
  --secondary: #16A34A;
  --secondary-foreground: #FFFFFF;
  --accent: #22C55E;
  --accent-foreground: #0A2342;
  --muted: #F1F5F9;
  --muted-foreground: #64748B;
  --card: #FFFFFF;
  --card-foreground: #1C1917;
  --border: #E2E8F0;
  --input: #F1F5F9;
  --ring: #16A34A;
  --radius: 1rem;
  --font-sans: 'Cairo', sans-serif;
}

  
* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}


 
.text-hero-xl {
  font-size: clamp(2rem, 5vw, 4rem);
}

.text-section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}


 
.container-custom {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}


 
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

 
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.75rem;

  background-color: var(--secondary);
  color: var(--secondary-foreground);

  border-radius: 9999px;
  border: 2px solid var(--secondary);

  font-weight: 700;
  font-size: 1rem;

  transition:
    all 0.3s cubic-bezier(0.2, 1, 0.3, 1);

  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #0D8C3A;
  border-color: #0D8C3A;

  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(22, 163, 74, 0.4);
}

 
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.75rem;

  background-color: transparent;
  color: #FFFFFF;

  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.6);

  font-weight: 700;
  font-size: 1rem;

  transition:
    all 0.3s cubic-bezier(0.2, 1, 0.3, 1);

  cursor: pointer;
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;

  transform: translateY(-2px);
}

 
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.75rem;

  background-color: #25D366;
  color: #FFFFFF;

  border-radius: 9999px;
  border: 2px solid #25D366;

  font-weight: 700;
  font-size: 1rem;

  transition:
    all 0.3s cubic-bezier(0.2, 1, 0.3, 1);

  cursor: pointer;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background-color: #1ebe5c;
  border-color: #1ebe5c;

  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(37, 211, 102, 0.4);
}

 
.card-hover {
  transition:
    all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-hover:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(10, 35, 66, 0.12);
}


 
.glass-card {
  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.4);
}


 
.gradient-primary {
  background:
    linear-gradient(
      135deg,
      #0A2342 0%,
      #0D3B6E 50%,
      #0A2342 100%
    );
}

.gradient-hero {
  background:
    linear-gradient(
      to bottom,
      rgba(10, 35, 66, 0.55) 0%,
      rgba(10, 35, 66, 0.45) 40%,
      rgba(10, 35, 66, 0.75) 100%
    );
}

.text-gradient-green {
  background:
    linear-gradient(
      135deg,
      #16A34A,
      #22C55E
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


 
.section-divider-wave {
  position: relative;
  overflow: hidden;
}

.section-divider-wave::after {
  content: '';

  position: absolute;

  bottom: -1px;
  left: 0;
  right: 0;

  height: 60px;

  background: var(--background);

  clip-path:
    ellipse(
      55% 100% at 50% 100%
    );
}


 
.animate-float {
  animation:
    float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation:
    float 6s ease-in-out infinite;

  animation-delay: 2s;
}


 
.animate-pulse-slow {
  animation:
    pulseSlow 2.5s ease-in-out infinite;
}


 
.animate-fade-up {
  animation:
    fadeUp
    0.7s
    cubic-bezier(0.2, 1, 0.3, 1)
    forwards;
}


 
.animate-counter {
  animation:
    countUp 2s ease-out forwards;
}


 
.whatsapp-pulse {
  position: relative;
}

.whatsapp-pulse::before {
  content: '';

  position: absolute;

  inset: -4px;

  border-radius: 9999px;

  background: #25D366;

  opacity: 0.4;

  animation:
    waPulse 2s ease-out infinite;
}


 
@keyframes float {

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

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


@keyframes pulseSlow {

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

  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}


@keyframes fadeUp {

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

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


@keyframes waPulse {

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

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

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


@keyframes shimmer {

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

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


@keyframes slideInRight {

  from {
    opacity: 0;
    transform: translateX(40px);
  }

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


@keyframes slideInLeft {

  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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


@keyframes zoomIn {

  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

 
.reveal-up {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}


 
.reveal-right {
  opacity: 0;

  transform: translateX(40px);

  transition:
    opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

 
.reveal-left {
  opacity: 0;

  transform: translateX(-40px);

  transition:
    opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}


 
.reveal-zoom {
  opacity: 0;

  transform: scale(0.9);

  transition:
    opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}


 
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.stagger-7 {
  transition-delay: 0.7s;
}

.stagger-8 {
  transition-delay: 0.8s;
}

.stagger-9 {
  transition-delay: 0.9s;
}


 
@media (max-width: 768px) {

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .container-custom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-whatsapp {
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
  }
}


 
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal-up,
  .reveal-right,
  .reveal-left,
  .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .animate-float,
  .animate-float-delay,
  .animate-pulse-slow,
  .whatsapp-pulse::before {
    animation: none !important;
  }
}
 
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  width: 100%;

  z-index: 1050;

  padding: 1.25rem 0;

  background: transparent;

  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

 
.main-header.scrolled {
  padding: 0.75rem 0;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 8px 30px rgba(10, 35, 66, 0.08);
}


 
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1.5rem;

  min-height: 50px;
}


 
.brand-logo {
  display: flex;
  align-items: center;

  gap: 0.7rem;

  flex-shrink: 0;

  text-decoration: none;

  position: relative;
  z-index: 2;
}


 
.brand-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background:
    linear-gradient(
      135deg,
      #16A34A,
      #22C55E
    );

  color: #fff;

  font-size: 1.2rem;

  box-shadow:
    0 8px 20px rgba(22, 163, 74, 0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-logo:hover .brand-icon {
  transform: rotate(-6deg) scale(1.05);

  box-shadow:
    0 12px 28px rgba(22, 163, 74, 0.35);
}


 
.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.15;
}

.brand-name {
  font-size: 1.15rem;

  font-weight: 900;

  color: #fff;

  transition:
    color 0.3s ease;
}

.brand-subtitle {
  margin-top: 3px;

  font-size: 0.7rem;

  font-weight: 700;

  color: rgba(255, 255, 255, 0.75);

  transition:
    color 0.3s ease;
}


 
.main-header.scrolled .brand-name {
  color: var(--primary);
}

.main-header.scrolled .brand-subtitle {
  color: var(--secondary);
}


 
.desktop-nav {
  display: flex;

  align-items: center;

  gap: 1.6rem;

  margin-right: auto;
  margin-left: auto;
}

.desktop-nav .nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 0.35rem 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: 0.88rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.3s ease;
}

.desktop-nav .nav-link::after {
  content: '';

  position: absolute;

  right: 0;
  bottom: -5px;

  width: 0;
  height: 2px;

  border-radius: 10px;

  background: var(--secondary);

  transition:
    width 0.3s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--secondary);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
  width: 100%;
}


 
.main-header.scrolled .desktop-nav .nav-link {
  color: var(--foreground);
}

.main-header.scrolled .desktop-nav .nav-link:hover,
.main-header.scrolled .desktop-nav .nav-link.active {
  color: var(--secondary);
}


 
.header-actions {
  display: flex;

  align-items: center;

  gap: 0.65rem;

  flex-shrink: 0;
}


 
.header-whatsapp {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  font-size: 1.15rem;

  text-decoration: none;

  transition:
    all 0.3s ease;
}

.header-whatsapp:hover {
  background: #25D366;

  color: #fff;

  transform: translateY(-2px) scale(1.05);
}


 
.main-header.scrolled .header-whatsapp {
  background: rgba(37, 211, 102, 0.1);

  color: #25D366;
}

.main-header.scrolled .header-whatsapp:hover {
  background: #25D366;

  color: #fff;
}


 
.header-call {
  padding: 0.65rem 1.25rem !important;

  font-size: 0.9rem !important;
}

 
.mobile-menu-btn {
  width: 44px;
  height: 44px;

  padding: 0;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 5px;

  border: 0;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.12);

  color: #fff;

  cursor: pointer;

  transition:
    background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.main-header.scrolled .mobile-menu-btn {
  background: var(--muted);

  color: var(--primary);
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;

  display: block;

  background: currentColor;

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


 
.mobile-menu-btn.active span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


 
.mobile-menu-overlay {
  position: fixed;

  inset: 0;

  z-index: 1040;

  visibility: hidden;

  opacity: 0;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu-overlay.active {
  visibility: visible;

  opacity: 1;
}


 
.mobile-menu-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(10, 35, 66, 0.65);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


 
.mobile-drawer {
  position: absolute;

  top: 0;
  right: 0;

  width: min(88%, 360px);

  height: 100%;

  display: flex;

  flex-direction: column;

  background: #fff;

  box-shadow:
    -15px 0 50px rgba(10, 35, 66, 0.2);

  transform: translateX(100%);

  transition:
    transform 0.45s
    cubic-bezier(0.2, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-drawer {
  transform: translateX(0);
}

 
.drawer-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 1.25rem;

  border-bottom:
    1px solid var(--border);
}

.mobile-brand {
  gap: 0.6rem;
}

.mobile-brand .brand-icon {
  width: 38px;
  height: 38px;

  font-size: 1rem;
}

.mobile-brand .brand-name {
  color: var(--primary);

  font-size: 1rem;
}

.mobile-brand .brand-subtitle {
  color: var(--secondary);

  font-size: 0.65rem;
}


 
.drawer-close {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;

  border-radius: 50%;

  background: var(--muted);

  color: var(--muted-foreground);

  cursor: pointer;

  transition:
    all 0.3s ease;
}

.drawer-close:hover {
  background: var(--primary);

  color: #fff;

  transform: rotate(90deg);
}


 
.mobile-nav {
  flex: 1;

  overflow-y: auto;

  padding: 0.75rem 0;
}

.mobile-nav-link {
  position: relative;

  display: flex;

  align-items: center;

  gap: 1rem;

  width: 100%;

  padding: 1rem 1.25rem;

  color: var(--foreground);

  font-size: 0.95rem;

  font-weight: 700;

  text-decoration: none;

  border-bottom:
    1px solid rgba(226, 232, 240, 0.7);

  transition:
    all 0.3s ease;
}

.mobile-nav-link i {
  width: 24px;

  color: var(--secondary);

  font-size: 1rem;

  text-align: center;

  transition:
    transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(22, 163, 74, 0.06);

  color: var(--secondary);

  padding-right: 1.5rem;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  transform: scale(1.15);
}

 
.mobile-cta {
  display: flex;

  flex-direction: column;

  gap: 0.75rem;

  padding: 1.25rem;

  border-top:
    1px solid var(--border);
}

.mobile-action-btn {
  width: 100%;

  justify-content: center;

  padding: 0.85rem 1rem !important;
}


 
body.menu-open {
  overflow: hidden;
}

 
@media (max-width: 1199px) {

  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav .nav-link {
    font-size: 0.82rem;
  }

}


@media (max-width: 991px) {

  .main-header {
    padding: 1rem 0;
  }

  .main-header.scrolled {
    padding: 0.7rem 0;
  }

}


@media (max-width: 575px) {

  .container-custom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

}

 
@media (prefers-reduced-motion: reduce) {

  .main-header,
  .brand-icon,
  .desktop-nav .nav-link,
  .header-whatsapp,
  .mobile-drawer,
  .mobile-menu-overlay,
  .mobile-nav-link,
  .drawer-close {
    transition: none !important;
  }

}

.desktop-nav {
  display: none;
}


@media (min-width: 992px) {

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-right: auto;
    margin-left: auto;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
  }

}


@media (max-width: 991.98px) {

  .desktop-nav {
    display: none !important;
  }

  .header-actions {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

}
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--primary);
}

 
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


 
.hero-bottom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            to top,
            rgba(10, 35, 66, 0.90) 0%,
            rgba(10, 35, 66, 0.45) 35%,
            rgba(10, 35, 66, 0.05) 75%,
            transparent 100%
        );
}


 
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
}

.bubble-one {
    top: 25%;
    left: 2rem;
    width: 5rem;
    height: 5rem;

    background: rgba(22, 163, 74, 0.20);

    filter: blur(20px);

    animation: float 6s ease-in-out infinite;
}

.bubble-two {
    top: 33%;
    right: 3rem;
    width: 3rem;
    height: 3rem;

    background: rgba(34, 197, 94, 0.30);

    filter: blur(14px);

    animation: float 7s ease-in-out infinite 1s;
}

.bubble-three {
    bottom: 33%;
    left: 25%;
    width: 4rem;
    height: 4rem;

    background: rgba(255, 255, 255, 0.10);

    filter: blur(20px);

    animation: float 8s ease-in-out infinite 2s;
}

 
.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;

    padding-top: 9rem;
    padding-bottom: 13rem;
}

.hero-content-inner {
    max-width: 800px;
}

 
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    padding: 0.55rem 1rem;

    margin-bottom: 1.5rem;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;

    font-size: 0.9rem;
    font-weight: 600;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px rgba(34, 197, 94, 0.12);

    animation: pulseSlow 2s ease-in-out infinite;
}

 
.hero-title {
    margin: 0 0 1rem;

    color: #fff;

    font-weight: 900;

    line-height: 1.25;

    letter-spacing: -0.03em;
}

.hero-title .text-gradient-green {
    display: block;
}


 
.hero-subtitle {
    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.92);

    font-size: clamp(1.2rem, 2.5vw, 1.55rem);

    font-weight: 700;

    line-height: 1.8;
}

 
.hero-description {
    max-width: 680px;

    margin-bottom: 2rem;

    color: rgba(255, 255, 255, 0.80);

    font-size: 1.05rem;

    line-height: 2;

    font-weight: 500;
}


 
.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 0.75rem;

    margin-bottom: 1.75rem;
}

.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0.65rem;

    min-height: 52px;

    padding: 0.8rem 1.5rem !important;

    border-radius: 999px;

    font-size: 1rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.hero-btn i {
    font-size: 1.1rem;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

 
.hero-phone {
    display: inline-flex;

    align-items: center;

    gap: 0.6rem;

    color: rgba(255, 255, 255, 0.90);

    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.hero-phone:hover {
    color: #fff;

    transform: translateX(-3px);
}

.hero-phone-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: var(--secondary);
}

.hero-phone-icon i {
    font-size: 1.15rem;
}

.hero-phone-number {
    font-size: 1.1rem;

    letter-spacing: 0.04em;
}

 
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;

    gap: 0.75rem;

    margin-top: 1.5rem;
}

.trust-badge {
    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    padding: 0.45rem 0.8rem;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #fff;

    font-size: 0.85rem;

    font-weight: 600;
}

.trust-badge i {
    color: var(--accent);

    font-size: 0.9rem;
}


 
.hero-stats-wrapper {
    position: absolute;

    right: 0;
    left: 0;
    bottom: 1.5rem;

    z-index: 30;

    padding: 0 1rem;
}

.hero-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1rem;

    padding: 1.25rem 1.5rem;

    border-radius: 1.25rem;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-stat {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 0.15rem;

    text-align: center;
}

.hero-stat:not(:last-child) {
    border-left: 1px solid rgba(100, 116, 139, 0.20);
}

.hero-stat-number {
    color: var(--primary);

    font-size: clamp(1.5rem, 3vw, 2rem);

    font-weight: 900;

    line-height: 1.2;
}

.hero-stat-label {
    color: var(--muted-foreground);

    font-size: 0.85rem;

    font-weight: 600;
}


 
@media (max-width: 991.98px) {

    .hero-content {
        padding-top: 8rem;
        padding-bottom: 14rem;
    }

    .hero-content-inner {
        max-width: 700px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        padding: 1rem;
    }

}


@media (max-width: 767.98px) {

    .hero-section {
        min-height: 900px;
    }

    .hero-content {
        padding-top: 7.5rem;
        padding-bottom: 15rem;
    }

    .hero-badge {
        font-size: 0.78rem;

        padding: 0.45rem 0.8rem;
    }

    .hero-title {
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;

        line-height: 1.8;
    }

    .hero-description {
        font-size: 0.95rem;

        line-height: 1.9;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-phone {
        margin-top: 0.25rem;
    }

    .hero-trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;

        padding: 0.4rem 0.65rem;
    }

    .hero-stats-wrapper {
        bottom: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 0.8rem;

        padding: 1rem;
    }

    .hero-stat {
        min-height: 60px;
    }

    .hero-stat:nth-child(2) {
        border-left: none;
    }

    .hero-stat:nth-child(1),
    .hero-stat:nth-child(2) {
        border-bottom: 1px solid rgba(100, 116, 139, 0.20);

        padding-bottom: 0.75rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    .bubble-one,
    .bubble-two,
    .bubble-three {
        display: none;
    }

}


@media (max-width: 575.98px) {

    .hero-content {
        padding-right: 1rem;
        padding-left: 1rem;

        padding-top: 7rem;
        padding-bottom: 17rem;
    }

    .hero-badge {
        max-width: 100%;

        line-height: 1.5;
    }

    .hero-phone-number {
        font-size: 1rem;
    }

    .hero-trust-badges {
        display: grid;

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

    .trust-badge {
        justify-content: center;

        text-align: center;
    }

}


 
@media (prefers-reduced-motion: reduce) {

    .hero-bubble,
    .hero-badge-dot {
        animation: none;
    }

    .hero-btn,
    .hero-phone {
        transition: none;
    }

}
 
.about-section {
    position: relative;
    overflow: hidden;
}


 
.about-wave-top {
    width: 100%;
    overflow: hidden;

    margin-top: -1px;
    margin-bottom: 0;

    line-height: 0;
}

.about-wave-top svg {
    display: block;

    width: 100%;
    height: 60px;
}

 
.about-section-header {
    max-width: 850px;

    margin: 0 auto 3.5rem;
}

.about-label {
    display: inline-block;

    padding: 0.4rem 1rem;

    margin-bottom: 1rem;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.10);

    color: var(--secondary);

    font-size: 0.9rem;

    font-weight: 800;
}

.about-title {
    margin-bottom: 1rem;

    color: var(--primary);

    font-weight: 900;

    line-height: 1.4;
}

.about-intro {
    max-width: 700px;

    margin: 0 auto;

    color: var(--muted-foreground);

    font-size: 1.05rem;

    line-height: 2;

    font-weight: 500;
}


 
.about-main {
    position: relative;
}

 
.about-image-wrapper {
    position: relative;

    padding: 0.5rem;
}

.about-image-box {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 1.25rem;

    background: var(--muted);

    box-shadow:
        0 25px 60px rgba(10, 35, 66, 0.15);
}

.about-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(10, 35, 66, 0.08),
            transparent 50%
        );

    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.7s ease;
}

.about-image-box:hover .about-image {
    transform: scale(1.05);
}


 
.about-floating-badge {
    position: absolute;

    left: -1.25rem;
    bottom: -1.25rem;

    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding: 1rem 1.15rem;

    border-radius: 1rem;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.70);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 20px 45px rgba(10, 35, 66, 0.16);

    z-index: 5;
}

.about-badge-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(22, 163, 74, 0.15);

    color: var(--secondary);

    font-size: 1.35rem;
}

.about-badge-content {
    min-width: 120px;
}

.about-badge-title {
    margin: 0 0 0.2rem;

    color: var(--primary);

    font-size: 1.05rem;

    font-weight: 900;

    line-height: 1.2;
}

.about-badge-text {
    margin: 0;

    color: var(--muted-foreground);

    font-size: 0.8rem;

    font-weight: 700;
}


 
.about-content {
    position: relative;
}

.about-content-title {
    margin-bottom: 1rem;

    color: var(--primary);

    font-size: clamp(1.6rem, 3vw, 2.2rem);

    font-weight: 900;

    line-height: 1.55;
}

.about-content-title .text-gradient-green {
    display: inline-block;
}

.about-content-description {
    margin-bottom: 1.75rem;

    color: var(--muted-foreground);

    font-size: 1rem;

    line-height: 2;

    font-weight: 500;
}

 
.about-features {
    margin-top: 0.5rem;
}

.about-feature {
    height: 100%;

    display: flex;

    align-items: flex-start;

    gap: 0.8rem;

    padding: 1rem;

    border: 1px solid var(--border);

    border-radius: 0.9rem;

    background: rgba(241, 245, 249, 0.50);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-4px);

    border-color: rgba(22, 163, 74, 0.30);

    background: rgba(22, 163, 74, 0.05);

    box-shadow:
        0 12px 30px rgba(10, 35, 66, 0.07);
}


 
.about-feature-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 0.75rem;

    background: rgba(22, 163, 74, 0.12);

    color: var(--secondary);

    font-size: 1rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.08) rotate(-4deg);

    background: var(--secondary);

    color: #fff;
}


 
.about-feature-title {
    margin: 0 0 0.25rem;

    color: var(--foreground);

    font-size: 0.9rem;

    font-weight: 800;

    line-height: 1.5;
}

.about-feature-description {
    margin: 0;

    color: var(--muted-foreground);

    font-size: 0.76rem;

    line-height: 1.7;

    font-weight: 500;
}

 
.about-cta {
    margin-top: 1.5rem;
}

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0.65rem;

    min-height: 48px;

    padding: 0.7rem 1.35rem !important;

    border-radius: 999px;
}

.about-btn i {
    font-size: 0.9rem;

    transition:
        transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(-4px);
}


 
@media (max-width: 991.98px) {

    .about-section-header {
        margin-bottom: 3rem;
    }

    .about-content {
        padding-top: 1rem;
    }

    .about-image-wrapper {
        max-width: 800px;

        margin: 0 auto;
    }

}


@media (max-width: 767.98px) {

    .about-wave-top svg {
        height: 40px;
    }

    .about-section-header {
        margin-bottom: 2.5rem;
    }

    .about-intro {
        font-size: 0.95rem;

        line-height: 1.9;
    }

    .about-floating-badge {
        left: 0.5rem;
        bottom: -1rem;

        padding: 0.8rem;
    }

    .about-badge-icon {
        width: 44px;
        height: 44px;

        font-size: 1.1rem;
    }

    .about-badge-title {
        font-size: 0.9rem;
    }

    .about-badge-text {
        font-size: 0.72rem;
    }

    .about-content-description {
        font-size: 0.92rem;

        line-height: 1.9;
    }

}


@media (max-width: 575.98px) {

    .about-image-wrapper {
        padding: 0;
    }

    .about-image-box {
        aspect-ratio: 1 / 0.85;

        border-radius: 1rem;
    }

    .about-floating-badge {
        left: 0.75rem;
        right: 0.75rem;
        bottom: -1.5rem;

        width: auto;
    }

    .about-badge-content {
        flex: 1;
    }

    .about-features {
        margin-top: 1.5rem;
    }

    .about-feature {
        padding: 0.85rem;
    }

    .about-feature-description {
        font-size: 0.73rem;
    }

    .about-cta {
        margin-top: 1.75rem;
    }

    .about-btn {
        width: 100%;
    }

}

 
@media (prefers-reduced-motion: reduce) {

    .about-image,
    .about-feature,
    .about-feature-icon,
    .about-btn i {
        transition: none;
    }

}
 
.services-section {
    position: relative;
overflow: hidden;

    background:
        rgba(241, 245, 249, 0.30);
        position: relative;

}


 
.services-wave-top {
    width: 100%;
    margin-top: -1px;
    line-height: 0;
}

.services-wave-top svg {
    display: block;
    position: absolute;
    top: -2%;
    width: 100%;
    height: 80px;
}


 
.services-header {
    max-width: 850px;

    margin: 0 auto 3.5rem;
}

.services-label {
    display: inline-block;

    padding: 0.4rem 1rem;

    margin-bottom: 1rem;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.10);

    color: var(--secondary);

    font-size: 0.9rem;

    font-weight: 800;
}

.services-title {
    margin-bottom: 1rem;

    color: var(--primary);

    font-weight: 900;

    line-height: 1.45;
}

.services-intro {
    max-width: 720px;

    margin: 0 auto;

    color: var(--muted-foreground);

    font-size: 1.05rem;

    line-height: 2;

    font-weight: 500;
}

 
.services-grid {
    position: relative;
}


 
.service-card {
    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 1.25rem;

    background: var(--card);

    box-shadow:
        0 8px 25px rgba(10, 35, 66, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(22, 163, 74, 0.30);

    box-shadow:
        0 20px 45px rgba(10, 35, 66, 0.13);
}

 
.service-image-wrapper {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: var(--muted);
}

.service-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.service-card:hover .service-image {
    transform: scale(1.10);
}


 
.service-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10, 35, 66, 0.65) 0%,
            rgba(10, 35, 66, 0.10) 55%,
            transparent 100%
        );

    pointer-events: none;
}

 
.service-icon {
    position: absolute;

    right: 1rem;
    bottom: 1rem;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 0.85rem;

    background: rgba(255, 255, 255, 0.95);

    color: var(--secondary);

    font-size: 1.2rem;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) rotate(-3deg);

    background: var(--secondary);

    color: #fff;
}

 
.service-content {
    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 1.35rem;
}

.service-title {
    margin: 0 0 0.65rem;

    color: var(--primary);

    font-size: 1.15rem;

    font-weight: 900;

    line-height: 1.5;
}

.service-description {
    flex: 1;

    margin: 0 0 1.15rem;

    color: var(--muted-foreground);

    font-size: 0.88rem;

    line-height: 1.9;

    font-weight: 500;
}

 
.service-link {
    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    color: var(--secondary);

    font-size: 0.9rem;

    font-weight: 800;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.service-link:hover {
    color: var(--primary);

    gap: 0.8rem;
}

.service-link i {
    font-size: 0.8rem;

    transition:
        transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-3px);
}


 
@media (max-width: 991.98px) {

    .services-wave-top svg {
        height: 60px;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .service-image-wrapper {
        height: 210px;
    }

}


@media (max-width: 767.98px) {

    .services-wave-top svg {
        height: 45px;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .services-intro {
        font-size: 0.95rem;

        line-height: 1.9;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .service-content {
        padding: 1.2rem;
    }

}


@media (max-width: 575.98px) {

    .service-image-wrapper {
        height: 210px;
    }

    .service-title {
        font-size: 1.05rem;
    }

    .service-description {
        font-size: 0.84rem;
    }

}


 
@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-image,
    .service-icon,
    .service-link,
    .service-link i {
        transition: none;
    }

}
 
.featured-services-section {
    position: relative;
    background: var(--background);
    overflow: hidden;
}


 
.featured-header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.featured-subtitle {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--muted-foreground);
    max-width: 620px;
    margin: 0 auto;
}


 
.featured-services-grid {
    position: relative;
    z-index: 2;
}


 
.featured-card {
    position: relative;
    min-height: 420px;
    width: 100%;
    overflow: hidden;

    border-radius: 1.75rem;

    background: var(--primary);

    box-shadow:
        0 20px 50px rgba(10, 35, 66, 0.15);

    isolation: isolate;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.featured-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 70px rgba(10, 35, 66, 0.25);
}


 
.featured-card-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.featured-card:hover .featured-card-image {
    transform: scale(1.07);
}


 
.featured-card-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            to top,
            rgba(10, 35, 66, 0.95) 0%,
            rgba(10, 35, 66, 0.72) 45%,
            rgba(10, 35, 66, 0.20) 100%
        );

    transition:
        background 0.5s ease;
}

.featured-card:hover .featured-card-overlay {
    background:
        linear-gradient(
            to top,
            rgba(10, 35, 66, 0.97) 0%,
            rgba(10, 35, 66, 0.75) 50%,
            rgba(10, 35, 66, 0.25) 100%
        );
}


 
.featured-card-content {
    position: relative;

    min-height: 420px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 2.5rem;

    color: #fff;
}


 
.featured-card-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;

    width: fit-content;

    padding: 0.45rem 0.9rem;

    margin-bottom: 1rem;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.9);

    color: #fff;

    font-size: 0.78rem;
    font-weight: 800;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.featured-card:hover .featured-card-label {
    transform: translateY(-3px);
}

.featured-card-label i {
    font-size: 0.8rem;
}


 
.featured-card-label.moving-label {
    background: rgba(34, 197, 94, 0.92);
    color: var(--primary);
}

 
.featured-card-title {
    margin: 0 0 0.85rem;

    color: #fff;

    font-size: clamp(1.7rem, 3vw, 2.35rem);

    font-weight: 900;

    line-height: 1.4;

    letter-spacing: -0.02em;
}

 
.featured-card-description {
    max-width: 620px;

    margin: 0 0 1.5rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.95rem;

    line-height: 1.9;
}


 
.featured-card-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0.55rem;

    width: fit-content;

    padding: 0.7rem 1.25rem;

    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.featured-card-btn:hover {
    transform: translateY(-3px);
}

.featured-card-btn i {
    font-size: 1rem;
}


 
.featured-angle-divider {
    width: 100%;

    overflow: hidden;

    margin-top: 5rem;

    margin-bottom: -1px;

    line-height: 0;
}

.featured-angle-divider svg {
    display: block;

    width: 100%;
    height: auto;

    min-height: 60px;
}


 
.featured-services-section .reveal-right,
.featured-services-section .reveal-left {
    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.featured-services-section .reveal-right {
    transform: translateX(60px);
}

.featured-services-section .reveal-left {
    transform: translateX(-60px);
}

.featured-services-section .reveal-right.visible,
.featured-services-section .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}


 
@media (max-width: 991px) {

    .featured-card,
    .featured-card-content {
        min-height: 390px;
    }

    .featured-card-content {
        padding: 2rem;
    }

    .featured-card-title {
        font-size: 1.8rem;
    }

}


@media (max-width: 767px) {

    .featured-header {
        margin-bottom: 2.25rem;
    }

    .featured-subtitle {
        font-size: 0.95rem;
    }

    .featured-card,
    .featured-card-content {
        min-height: 390px;
    }

    .featured-card-content {
        padding: 1.6rem;
    }

    .featured-card-title {
        font-size: 1.65rem;
    }

    .featured-card-description {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .featured-angle-divider {
        margin-top: 3.5rem;
    }

}


@media (max-width: 575px) {

    .featured-card,
    .featured-card-content {
        min-height: 420px;
    }

    .featured-card {
        border-radius: 1.35rem;
    }

    .featured-card-content {
        padding: 1.35rem;
    }

    .featured-card-title {
        font-size: 1.5rem;
    }

    .featured-card-description {
        font-size: 0.86rem;
    }

    .featured-card-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .featured-angle-divider svg {
        min-height: 45px;
    }

}


 
@media (prefers-reduced-motion: reduce) {

    .featured-card,
    .featured-card-image,
    .featured-card-label,
    .featured-card-btn {
        transition: none !important;
    }

    .featured-card:hover {
        transform: none;
    }

    .featured-card:hover .featured-card-image {
        transform: none;
    }

    .featured-services-section .reveal-right,
    .featured-services-section .reveal-left {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
 
.why-us-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

 
.why-decoration {
    position: absolute;
    border-radius: 50%;

    pointer-events: none;

    filter: blur(55px);
    -webkit-filter: blur(55px);

    z-index: 0;
}

.why-decoration-top {
    width: 380px;
    height: 380px;

    top: -190px;
    right: -190px;

    background: rgba(255, 255, 255, 0.05);
}

.why-decoration-bottom {
    width: 280px;
    height: 280px;

    bottom: -140px;
    left: -140px;

    background: rgba(22, 163, 74, 0.15);
}

 
.why-us-content {
    z-index: 2;
}


 
.why-us-header {
    max-width: 850px;
    margin: 0 auto 3.5rem;
}

.why-us-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;

    padding: 0.45rem 1rem;

    margin-bottom: 1rem;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.1);

    color: #fff;

    font-size: 0.85rem;
    font-weight: 800;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-us-badge i {
    font-size: 0.75rem;
}

.why-us-intro {
    max-width: 720px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.05rem;

    line-height: 1.9;
}

 
.why-us-grid {
    position: relative;
    z-index: 2;
}


 
.reason-card {
    position: relative;

    height: 100%;

    padding: 1.7rem;

    border-radius: 1.25rem;

    border: 1px solid;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.reason-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    left: -90px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    filter: blur(20px);

    transition:
        transform 0.5s ease;
}

.reason-card:hover::before {
    transform: scale(1.5);
}

.reason-card:hover {
    transform: translateY(-7px) scale(1.02);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18);
}


 
.reason-yellow {
    background:
        linear-gradient(
            135deg,
            rgba(250, 204, 21, 0.20),
            rgba(234, 179, 8, 0.10)
        );

    border-color: rgba(254, 240, 138, 0.55);
}


 
.reason-blue {
    background:
        linear-gradient(
            135deg,
            rgba(96, 165, 250, 0.20),
            rgba(59, 130, 246, 0.10)
        );

    border-color: rgba(191, 219, 254, 0.55);
}


 
.reason-orange {
    background:
        linear-gradient(
            135deg,
            rgba(251, 146, 60, 0.20),
            rgba(249, 115, 22, 0.10)
        );

    border-color: rgba(254, 215, 170, 0.55);
}


 
.reason-green {
    background:
        linear-gradient(
            135deg,
            rgba(74, 222, 128, 0.20),
            rgba(34, 197, 94, 0.10)
        );

    border-color: rgba(187, 247, 208, 0.55);
}


 
.reason-purple {
    background:
        linear-gradient(
            135deg,
            rgba(192, 132, 252, 0.20),
            rgba(168, 85, 247, 0.10)
        );

    border-color: rgba(233, 213, 255, 0.55);
}


 
.reason-teal {
    background:
        linear-gradient(
            135deg,
            rgba(45, 212, 191, 0.20),
            rgba(20, 184, 166, 0.10)
        );

    border-color: rgba(153, 246, 228, 0.55);
}


 
.reason-icon {
    position: relative;
    z-index: 1;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.2rem;

    border-radius: 1rem;

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    font-size: 1.45rem;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(-4deg);

    background: rgba(255, 255, 255, 0.22);
}


 
.reason-title {
    position: relative;
    z-index: 1;

    margin: 0 0 0.7rem;

    color: #fff;

    font-size: 1.2rem;

    font-weight: 900;

    line-height: 1.5;
}


 
.reason-description {
    position: relative;
    z-index: 1;

    margin: 0;

    color: rgba(255, 255, 255, 0.74);

    font-size: 0.9rem;

    line-height: 1.9;
}


 
.why-us-wave {
    width: 110%;
    line-height: 0;

    z-index: 3;
}
 
.why-us-wave svg {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: auto;
}

#why-us .reveal-up {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

#why-us .reveal-up.visible {
    opacity: 1;

    transform: translateY(0);
}


 
#why-us .stagger-1 {
    transition-delay: 0.05s;
}

#why-us .stagger-2 {
    transition-delay: 0.12s;
}

#why-us .stagger-3 {
    transition-delay: 0.19s;
}

#why-us .stagger-4 {
    transition-delay: 0.26s;
}

#why-us .stagger-5 {
    transition-delay: 0.33s;
}

#why-us .stagger-6 {
    transition-delay: 0.40s;
}

 
@media (max-width: 991px) {

    .why-us-header {
        margin-bottom: 3rem;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .reason-title {
        font-size: 1.1rem;
    }

}


 
@media (max-width: 767px) {

    .why-decoration-top {
        width: 260px;
        height: 260px;

        top: -130px;
        right: -130px;
    }

    .why-decoration-bottom {
        width: 220px;
        height: 220px;

        bottom: -110px;
        left: -110px;
    }

    .why-us-header {
        margin-bottom: 2.5rem;
    }

    .why-us-intro {
        font-size: 0.92rem;

        line-height: 1.85;
    }

    .reason-card {
        padding: 1.4rem;

        border-radius: 1.15rem;
    }

    .reason-icon {
        width: 54px;
        height: 54px;

        font-size: 1.3rem;
    }

    .reason-description {
        font-size: 0.86rem;
    }


}

 
@media (max-width: 575px) {

    .why-us-badge {
        font-size: 0.78rem;
    }

    .why-us-intro {
        font-size: 0.88rem;
    }

    .reason-card {
        padding: 1.25rem;
    }

    .reason-title {
        font-size: 1.05rem;
    }

    .reason-description {
        font-size: 0.84rem;
        line-height: 1.85;
    }

}


 
@media (prefers-reduced-motion: reduce) {

    .reason-card,
    .reason-icon,
    .reason-card::before {
        transition: none !important;
    }

    .reason-card:hover {
        transform: none;
    }

    .reason-card:hover .reason-icon {
        transform: none;
    }

    #why-us .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
 
.how-it-works-section {
    position: relative;

    background: var(--background);

    overflow: hidden;
}


 
.how-header {
    max-width: 760px;

    margin: 0 auto 3.5rem;
}

.how-badge {
    display: inline-flex;

    align-items: center;
    gap: 0.45rem;

    padding: 0.45rem 1rem;

    margin-bottom: 1rem;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.10);

    color: var(--secondary);

    font-size: 0.85rem;

    font-weight: 800;
}

.how-badge i {
    font-size: 0.8rem;
}

.how-intro {
    max-width: 650px;

    margin: 0 auto;

    color: var(--muted-foreground);

    font-size: 1.05rem;

    line-height: 1.9;
}


 
.desktop-timeline {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;

    max-width: 1200px;

    margin: 0 auto;
}


 
.timeline-line {
    position: absolute;

    top: 48px;

    right: 12.5%;
    left: 12.5%;

    height: 3px;

    background:
        linear-gradient(
            to left,
            var(--secondary),
            rgba(10, 35, 66, 0.25)
        );

    z-index: 0;

    border-radius: 50px;
}


 
.timeline-step {
    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 0.5rem 1rem;
}


 
.timeline-circle {
    position: relative;

    width: 96px;
    height: 96px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: #fff;

    box-shadow:
        0 12px 35px rgba(10, 35, 66, 0.22);

    border: 5px solid var(--background);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.timeline-step:hover .timeline-circle {
    transform: translateY(-7px) scale(1.05);

    box-shadow:
        0 18px 45px rgba(10, 35, 66, 0.30);
}


 
.timeline-circle i {
    font-size: 1.8rem;

    margin-bottom: 0.25rem;
}


 
.timeline-number {
    font-size: 0.7rem;

    font-weight: 900;

    opacity: 0.72;

    direction: ltr;
}

 
.timeline-title {
    margin: 0 0 0.75rem;

    color: var(--primary);

    font-size: 1.2rem;

    font-weight: 900;

    line-height: 1.5;
}


 
.timeline-description {
    max-width: 250px;

    margin: 0;

    color: var(--muted-foreground);

    font-size: 0.88rem;

    line-height: 1.9;
}


 
.mobile-timeline {
    display: none;
}


 
.how-cta {
    margin-top: 3rem;
}

.how-cta-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0.65rem;

    padding: 0.85rem 2rem;

    border-radius: 999px;

    font-size: 1rem;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.how-cta-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(22, 163, 74, 0.25);
}

.how-cta-btn i {
    font-size: 1.2rem;
}

 
#how-it-works .reveal-up {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

#how-it-works .reveal-up.visible {
    opacity: 1;

    transform: translateY(0);
}


 
#how-it-works .stagger-1 {
    transition-delay: 0.05s;
}

#how-it-works .stagger-2 {
    transition-delay: 0.15s;
}

#how-it-works .stagger-3 {
    transition-delay: 0.25s;
}

#how-it-works .stagger-4 {
    transition-delay: 0.35s;
}

#how-it-works .stagger-5 {
    transition-delay: 0.45s;
}

 
@media (max-width: 991px) {

    .desktop-timeline {
        gap: 0.75rem;
    }

    .timeline-circle {
        width: 85px;
        height: 85px;
    }

    .timeline-circle i {
        font-size: 1.5rem;
    }

    .timeline-title {
        font-size: 1.05rem;
    }

    .timeline-description {
        font-size: 0.82rem;
    }

}


 
@media (max-width: 767px) {

    .desktop-timeline {
        display: none;
    }

    .mobile-timeline {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


 
    .mobile-timeline-step {
        display: flex;

        align-items: flex-start;

        gap: 1rem;

        min-height: 115px;
    }


 
    .mobile-timeline-visual {
        display: flex;

        flex-direction: column;

        align-items: center;

        flex-shrink: 0;
    }


 
    .mobile-timeline-circle {
        width: 64px;
        height: 64px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background:
            linear-gradient(
                135deg,
                var(--primary),
                var(--secondary)
            );

        color: #fff;

        box-shadow:
            0 8px 25px rgba(10, 35, 66, 0.18);

        border: 3px solid var(--background);

        transition:
            transform 0.3s ease;
    }

    .mobile-timeline-step:hover .mobile-timeline-circle {
        transform: scale(1.08);
    }

    .mobile-timeline-circle i {
        font-size: 1.25rem;
    }


 
    .mobile-timeline-line {
        width: 3px;

        height: 48px;

        margin-top: 5px;

        border-radius: 50px;

        background:
            linear-gradient(
                to bottom,
                var(--secondary),
                rgba(10, 35, 66, 0.15)
            );
    }


 
    .mobile-timeline-content {
        padding-top: 0.3rem;

        flex: 1;
    }


 
    .mobile-step-heading {
        display: flex;

        align-items: center;

        gap: 0.55rem;

        margin-bottom: 0.45rem;
    }


 
    .mobile-step-number {
        color: var(--secondary);

        font-size: 0.75rem;

        font-weight: 900;

        direction: ltr;
    }


 
    .mobile-step-heading h3 {
        margin: 0;

        color: var(--primary);

        font-size: 1.05rem;

        font-weight: 900;
    }


 
    .mobile-timeline-content p {
        margin: 0;

        color: var(--muted-foreground);

        font-size: 0.85rem;

        line-height: 1.85;
    }


 
    .how-cta {
        margin-top: 2rem;
    }

    .how-cta-btn {
        width: 100%;

        max-width: 320px;
    }

}


 
@media (max-width: 575px) {

    .how-header {
        margin-bottom: 2.5rem;
    }

    .how-intro {
        font-size: 0.9rem;
    }

    .mobile-timeline-step {
        gap: 0.85rem;

        min-height: 125px;
    }

    .mobile-timeline-circle {
        width: 58px;
        height: 58px;
    }

    .mobile-timeline-circle i {
        font-size: 1.1rem;
    }

    .mobile-timeline-line {
        height: 52px;
    }

    .mobile-step-heading h3 {
        font-size: 0.98rem;
    }

    .mobile-timeline-content p {
        font-size: 0.82rem;
    }

}


 
@media (prefers-reduced-motion: reduce) {

    .timeline-circle,
    .mobile-timeline-circle,
    .how-cta-btn {
        transition: none !important;
    }

    #how-it-works .reveal-up {
        opacity: 1;

        transform: none;

        transition: none;
    }

}
 
.service-areas-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(241, 245, 249, 0.3),
            rgba(248, 250, 252, 1)
        );

    overflow: hidden;
}

 
.areas-top-curve {
    width: 100%;

    overflow: hidden;

    margin-top: -1px;

    line-height: 0;
}

.areas-top-curve svg {
    display: block;
    position: absolute;
    top:0;
    width: 100%;

    height: auto;
}


 
.areas-header {
    max-width: 850px;

    margin: 0 auto 3.5rem;
}

.areas-badge {
    display: inline-flex;

    align-items: center;
    gap: 0.45rem;

    padding: 0.45rem 1rem;

    margin-bottom: 1rem;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.1);

    color: var(--secondary);

    font-size: 0.85rem;

    font-weight: 800;
}

.areas-badge i {
    font-size: 0.8rem;
}

.areas-intro {
    max-width: 720px;

    margin: 0 auto;

    color: var(--muted-foreground);

    font-size: 1.05rem;

    line-height: 1.9;
}

 
.areas-grid {
    position: relative;
}


 
.area-card {
    position: relative;

    height: 100%;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 1.2rem 0.8rem;

    border: 1px solid var(--border);

    border-radius: 1.15rem;

    background: var(--card);

    box-shadow:
        0 5px 20px rgba(15, 23, 42, 0.04);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


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

    border-color: rgba(22, 163, 74, 0.4);

    background: rgba(22, 163, 74, 0.04);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.10);
}


 
.area-card.area-featured {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #12385f
        );

    border-color: var(--primary);

    box-shadow:
        0 12px 30px rgba(10, 35, 66, 0.2);
}

.area-card.area-featured:hover {
    background:
        linear-gradient(
            135deg,
            #0c2c52,
            var(--primary)
        );

    border-color: var(--secondary);

    box-shadow:
        0 18px 40px rgba(10, 35, 66, 0.28);
}


 
.area-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 0.75rem;

    border-radius: 1rem;

    background: rgba(10, 35, 66, 0.07);

    color: var(--secondary);

    font-size: 1.25rem;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(-3deg);

    background: rgba(22, 163, 74, 0.12);
}


 
.area-featured .area-icon {
    background: rgba(255, 255, 255, 0.12);

    color: #fff;
}

.area-featured:hover .area-icon {
    background: rgba(255, 255, 255, 0.18);
}


 
.area-card h3 {
    margin: 0 0 0.3rem;

    color: var(--primary);

    font-size: 1rem;

    font-weight: 900;

    line-height: 1.5;
}

.area-featured h3 {
    color: #fff;
}

 
.area-card p {
    max-width: 160px;

    margin: 0;

    color: var(--muted-foreground);

    font-size: 0.72rem;

    line-height: 1.65;
}

.area-featured p {
    color: rgba(255, 255, 255, 0.7);
}

 
.area-card.area-all {
    background: rgba(22, 163, 74, 0.05);

    border-color: rgba(22, 163, 74, 0.3);
}

.area-all .area-icon {
    background: rgba(22, 163, 74, 0.1);

    color: var(--secondary);
}

.area-all h3 {
    color: var(--secondary);
}

 
.seo-areas-content {
    padding: 2.5rem;

    border: 1px solid var(--border);

    border-radius: 1.75rem;

    background: var(--card);

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.05);
}

 
.seo-content-header {
    display: flex;

    align-items: center;

    gap: 0.9rem;

    margin-bottom: 1.3rem;
}

.seo-content-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 0.9rem;

    background: rgba(22, 163, 74, 0.1);

    color: var(--secondary);

    font-size: 1.15rem;
}

.seo-content-header h3 {
    margin: 0;

    color: var(--primary);

    font-size: 1.45rem;

    font-weight: 900;

    line-height: 1.5;
}


 
.seo-content-text {
    color: var(--muted-foreground);

    font-size: 0.92rem;

    line-height: 2;
}

.seo-content-text p {
    margin-bottom: 1rem;
}

.seo-content-text p:last-child {
    margin-bottom: 0;
}

.seo-primary {
    color: var(--primary);

    font-weight: 800;
}

.seo-secondary {
    color: var(--secondary);

    font-weight: 800;
}


 
.seo-keywords {
    display: flex;

    flex-wrap: wrap;

    gap: 0.55rem;

    margin-top: 1.7rem;
}

.seo-keywords span {
    display: inline-flex;

    align-items: center;

    padding: 0.45rem 0.8rem;

    border: 1px solid rgba(10, 35, 66, 0.12);

    border-radius: 999px;

    background: rgba(10, 35, 66, 0.04);

    color: var(--primary);

    font-size: 0.7rem;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.seo-keywords span:hover {
    background: var(--primary);

    color: #fff;

    transform: translateY(-2px);
}

 
#areas .reveal-zoom {
    opacity: 0;

    transform: scale(0.9);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

#areas .reveal-zoom.visible {
    opacity: 1;

    transform: scale(1);
}

 
#areas .reveal-up {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

#areas .reveal-up.visible {
    opacity: 1;

    transform: translateY(0);
}


 
#areas .stagger-1 {
    transition-delay: 0.05s;
}

#areas .stagger-2 {
    transition-delay: 0.1s;
}

#areas .stagger-3 {
    transition-delay: 0.15s;
}

#areas .stagger-4 {
    transition-delay: 0.2s;
}

#areas .stagger-5 {
    transition-delay: 0.25s;
}

#areas .stagger-6 {
    transition-delay: 0.3s;
}

#areas .stagger-7 {
    transition-delay: 0.35s;
}

#areas .stagger-8 {
    transition-delay: 0.4s;
}

#areas .stagger-9 {
    transition-delay: 0.45s;
}


 
@media (min-width: 992px) {

    .areas-grid > .col-lg {
        flex: 0 0 auto;

        width: 20%;
    }

}

 
@media (max-width: 991px) {

    .areas-header {
        margin-bottom: 3rem;
    }

    .area-card {
        min-height: 140px;
    }

    .seo-areas-content {
        padding: 2rem;
    }

}

 
@media (max-width: 767px) {

    .areas-intro {
        font-size: 0.92rem;

        line-height: 1.85;
    }

    .area-card {
        min-height: 135px;

        padding: 1rem 0.6rem;

        border-radius: 1rem;
    }

    .area-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 0.6rem;

        font-size: 1.1rem;
    }

    .area-card h3 {
        font-size: 0.92rem;
    }

    .area-card p {
        font-size: 0.68rem;
    }

    .seo-areas-content {
        padding: 1.5rem;

        border-radius: 1.35rem;
    }

    .seo-content-header {
        align-items: flex-start;
    }

    .seo-content-icon {
        width: 42px;
        height: 42px;
    }

    .seo-content-header h3 {
        font-size: 1.15rem;
    }

    .seo-content-text {
        font-size: 0.84rem;

        line-height: 1.95;
    }

}


 
@media (max-width: 575px) {

    .areas-badge {
        font-size: 0.78rem;
    }

    .area-card {
        min-height: 130px;
    }

    .area-icon {
        width: 42px;
        height: 42px;

        font-size: 1rem;
    }

    .area-card h3 {
        font-size: 0.85rem;
    }

    .area-card p {
        max-width: 120px;

        font-size: 0.63rem;
    }

    .seo-areas-content {
        padding: 1.25rem;
    }

    .seo-content-header h3 {
        font-size: 1.05rem;
    }

    .seo-content-text {
        font-size: 0.8rem;
    }

    .seo-keywords {
        gap: 0.4rem;
    }

    .seo-keywords span {
        padding: 0.4rem 0.65rem;

        font-size: 0.63rem;
    }

}


 
@media (prefers-reduced-motion: reduce) {

    .area-card,
    .area-icon,
    .seo-keywords span {
        transition: none !important;
    }

    .area-card:hover {
        transform: none;
    }

    .area-card:hover .area-icon {
        transform: none;
    }

    #areas .reveal-up,
    #areas .reveal-zoom {
        opacity: 1;

        transform: none;

        transition: none;
    }

}
 
.faq-section {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(241, 245, 249, 0.3),
    #f8fafc
  );
  overflow: hidden;
}

 .faq-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  top: 10%;
  right: -180px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.04);
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: -140px;
  border-radius: 50%;
  background: rgba(10, 35, 66, 0.035);
  pointer-events: none;
}


 
.faq-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1rem;
  margin-bottom: 1rem;

  border-radius: 999px;

  background: rgba(22, 163, 74, 0.1);
  color: var(--secondary);

  font-size: 0.85rem;
  font-weight: 800;
}

.faq-badge i {
  font-size: 0.9rem;
}

.faq-title {
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 900;
}

.faq-intro {
  max-width: 650px;
  margin: 0 auto;

  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.9;
}

 
.faq-list {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 850px;

  margin: 0 auto;
}


 
.faq-item {
  position: relative;

  margin-bottom: 0.85rem;

  border: 1px solid var(--border);
  border-radius: 1.2rem;

  background: var(--card);

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(15, 23, 42, 0.04);

  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: rgba(22, 163, 74, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.faq-item.active {
  border-color: rgba(22, 163, 74, 0.4);

  box-shadow:
    0 15px 35px rgba(22, 163, 74, 0.08),
    0 5px 20px rgba(15, 23, 42, 0.04);

  background: #ffffff;
}

 
.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  padding: 1.2rem 1.35rem;

  border: 0;
  outline: 0;

  background: transparent;

  color: var(--foreground);

  text-align: right;
  font-family: inherit;

  cursor: pointer;

  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(22, 163, 74, 0.025);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(22, 163, 74, 0.25);
  outline-offset: -3px;
}

.faq-question > span:first-child {
  flex: 1;

  color: var(--foreground);

  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;

  transition: color 0.3s ease;
}

.faq-item.active .faq-question > span:first-child {
  color: var(--primary);
}


 
.faq-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--muted);
  color: var(--muted-foreground);

  font-size: 0.85rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.faq-item.active .faq-icon {
  background: var(--secondary);
  color: #fff;

  transform: rotate(180deg);
}

.faq-icon i {
  transition: transform 0.3s ease;
}

 
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.45s cubic-bezier(0.2, 1, 0.3, 1),
    opacity 0.3s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;

  margin: 0;

  padding: 0 1.35rem;

  color: var(--muted-foreground);

  font-size: 0.9rem;
  line-height: 2;

  transition: padding 0.4s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.active .faq-answer > p {
  padding-top: 0;
  padding-bottom: 1.35rem;
}


 
.faq-phone {
  color: var(--secondary);
  font-weight: 800;
  direction: ltr;
  display: inline-block;
  transition: color 0.25s ease;
}

.faq-phone:hover {
  color: var(--primary);
}


 
.faq-contact {
  position: relative;
  z-index: 2;

  margin-top: 2.8rem;

  text-align: center;
}

.faq-contact p {
  margin-bottom: 1rem;

  color: var(--muted-foreground);

  font-size: 0.95rem;
  font-weight: 600;
}

.faq-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  min-height: 50px;
  padding: 0.75rem 1.4rem;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-whatsapp-btn:hover {
  transform: translateY(-3px);
}

.faq-whatsapp-btn i {
  font-size: 1.2rem;
}


 
#faq .reveal-up {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

#faq .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

#faq .stagger-1 {
  transition-delay: 0.05s;
}

#faq .stagger-2 {
  transition-delay: 0.1s;
}

#faq .stagger-3 {
  transition-delay: 0.15s;
}

#faq .stagger-4 {
  transition-delay: 0.2s;
}

#faq .stagger-5 {
  transition-delay: 0.25s;
}

#faq .stagger-6 {
  transition-delay: 0.3s;
}

#faq .stagger-7 {
  transition-delay: 0.35s;
}

#faq .stagger-8 {
  transition-delay: 0.4s;
}


 
@media (max-width: 767px) {

  .faq-header {
    margin-bottom: 2.5rem;
  }

  .faq-intro {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .faq-item {
    border-radius: 1rem;
    margin-bottom: 0.7rem;
  }

  .faq-question {
    padding: 1rem;
    gap: 0.75rem;
  }

  .faq-question > span:first-child {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 0.75rem;
  }

  .faq-answer > p {
    padding-left: 1rem;
    padding-right: 1rem;

    font-size: 0.8rem;
    line-height: 1.9;
  }

  .faq-item.active .faq-answer > p {
    padding-bottom: 1rem;
  }

  .faq-contact {
    margin-top: 2.2rem;
  }

  .faq-contact p {
    font-size: 0.85rem;
  }

  .faq-whatsapp-btn {
    min-height: 46px;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }
}


@media (max-width: 575px) {

  .faq-badge {
    padding: 0.4rem 0.85rem;
    font-size: 0.76rem;
  }

  .faq-title {
    margin-bottom: 0.8rem;
  }

  .faq-intro {
    font-size: 0.82rem;
  }

  .faq-question {
    padding: 0.9rem;
  }

  .faq-question > span:first-child {
    font-size: 0.8rem;
  }

  .faq-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .faq-answer > p {
    font-size: 0.76rem;
  }
}

 
@media (prefers-reduced-motion: reduce) {

  .faq-item,
  .faq-icon,
  .faq-answer,
  .faq-answer > p,
  .faq-whatsapp-btn,
  .faq-phone {
    transition: none !important;
  }

  #faq .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-item:hover,
  .faq-whatsapp-btn:hover {
    transform: none;
  }
}
 
.contact-section {
  position: relative;
  background: var(--background);
  overflow: hidden;
}


 
.contact-section::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -180px;

  border-radius: 50%;

  background: rgba(22, 163, 74, 0.035);

  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;

  width: 350px;
  height: 350px;

  bottom: -180px;
  left: -150px;

  border-radius: 50%;

  background: rgba(10, 35, 66, 0.035);

  pointer-events: none;
}


 
.contact-header {
  position: relative;
  z-index: 2;

  max-width: 760px;

  margin: 0 auto 3.5rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1rem;

  margin-bottom: 1rem;

  border-radius: 999px;

  background: rgba(22, 163, 74, 0.1);

  color: var(--secondary);

  font-size: 0.85rem;
  font-weight: 800;
}

.contact-badge i {
  font-size: 0.9rem;
}

.contact-title {
  color: var(--primary);
  font-weight: 900;

  margin-bottom: 1rem;
}

.contact-intro {
  max-width: 650px;

  margin: 0 auto;

  color: var(--muted-foreground);

  font-size: 1.05rem;
  line-height: 1.9;
}


 
.contact-info-wrapper {
  position: relative;
  z-index: 2;
}


 
.contact-image-wrapper {
  position: relative;

  width: 100%;

  min-height: 450px;

  border-radius: 1.75rem;

  overflow: hidden;

  background: var(--primary);

  box-shadow:
    0 20px 50px rgba(10, 35, 66, 0.14);
}

.contact-image {
  width: 100%;
  height: 100%;

  min-height: 450px;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.contact-image-wrapper:hover .contact-image {
  transform: scale(1.045);
}

.contact-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(10, 35, 66, 0.88) 0%,
      rgba(10, 35, 66, 0.35) 45%,
      rgba(10, 35, 66, 0.05) 100%
    );
}

.contact-image-content {
  position: absolute;

  right: 2rem;
  left: 2rem;
  bottom: 2rem;

  z-index: 2;
}

.contact-direct-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;

  margin-bottom: 0.55rem;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.85rem;
  font-weight: 600;
}

.contact-direct-label i {
  color: var(--accent);
}

.contact-phone {
  display: inline-block;

  color: #fff;

  font-size: clamp(1.6rem, 3vw, 2.15rem);

  font-weight: 900;

  letter-spacing: 0.5px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-phone:hover {
  color: var(--accent);
  transform: translateX(-3px);
}


 
.contact-cards {
  margin-top: 1rem;
}

.contact-card {
  min-height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 0.45rem;

  padding: 1rem;

  border-radius: 1.2rem;

  text-align: center;

  border: 1px solid transparent;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.1);
}

.contact-card-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.9rem;

  font-size: 1.1rem;
}

.contact-card-title {
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-card-subtitle {
  margin-top: -0.2rem;

  font-size: 0.68rem;
}


 
.contact-card-phone {
  background: var(--primary);
  color: #fff;
}

.contact-card-phone .contact-card-icon {
  background: rgba(255, 255, 255, 0.12);
}

.contact-card-phone:hover {
  color: #fff;
  background: #0c2d52;
}


 
.contact-card-whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-card-whatsapp .contact-card-icon {
  background: rgba(255, 255, 255, 0.16);
}

.contact-card-whatsapp:hover {
  color: #fff;
  background: #1ebe5c;
}


 
.contact-card-location {
  background: var(--muted);

  color: var(--foreground);

  border-color: var(--border);
}

.contact-card-location .contact-card-icon {
  color: var(--secondary);
  background: rgba(22, 163, 74, 0.1);
}

.contact-card-location .contact-card-subtitle {
  color: var(--muted-foreground);
}


 
.contact-form-wrapper {
  position: relative;
  z-index: 2;
}

.contact-form {
  padding: 2rem;

  border: 1px solid var(--border);

  border-radius: 1.75rem;

  background: var(--card);

  box-shadow:
    0 15px 45px rgba(15, 23, 42, 0.06);
}


 
.form-header {
  display: flex;
  align-items: center;

  gap: 0.9rem;

  margin-bottom: 1.7rem;
}

.form-header-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.95rem;

  background: rgba(22, 163, 74, 0.1);

  color: var(--secondary);

  font-size: 1.1rem;
}

.form-header h3 {
  margin: 0 0 0.2rem;

  color: var(--primary);

  font-size: 1.3rem;
  font-weight: 900;
}

.form-header p {
  margin: 0;

  color: var(--muted-foreground);

  font-size: 0.76rem;
}

 
.form-success {
  display: none;

  align-items: center;
  justify-content: center;

  gap: 0.5rem;

  margin-bottom: 1.2rem;

  padding: 0.85rem 1rem;

  border: 1px solid rgba(22, 163, 74, 0.3);

  border-radius: 0.85rem;

  background: rgba(22, 163, 74, 0.08);

  color: var(--secondary);

  font-size: 0.8rem;
  font-weight: 700;
}

.form-success.show {
  display: flex;

  animation: contactSuccess 0.45s ease both;
}

.form-success i {
  font-size: 1rem;
}


 
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;

  margin-bottom: 0.45rem;

  color: var(--foreground);

  font-size: 0.82rem;
  font-weight: 800;
}

.form-group label span {
  color: #ef4444;
}


 
.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;

  top: 50%;
  right: 1rem;

  z-index: 2;

  transform: translateY(-50%);

  color: var(--muted-foreground);

  font-size: 0.85rem;

  pointer-events: none;

  transition: color 0.25s ease;
}

.input-wrapper:focus-within .input-icon {
  color: var(--secondary);
}


 
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;

  border: 1px solid var(--border);

  border-radius: 0.85rem;

  background: var(--input);

  color: var(--foreground);

  font-family: inherit;

  font-size: 0.82rem;
  font-weight: 600;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.input-wrapper input,
.input-wrapper select {
  height: 50px;

  padding: 0 2.7rem 0 1rem;
}

.input-wrapper textarea {
  min-height: 115px;

  padding: 0.9rem 2.7rem 0.9rem 1rem;

  resize: vertical;

  line-height: 1.8;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: var(--muted-foreground);

  opacity: 0.8;
}

.input-wrapper select {
  appearance: none;

  cursor: pointer;
}

.select-wrapper::after {
  content: "\f078";

  position: absolute;

  left: 1rem;
  top: 50%;

  transform: translateY(-50%);

  color: var(--muted-foreground);

  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  font-size: 0.7rem;

  pointer-events: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--secondary);

  background: #fff;

  box-shadow:
    0 0 0 3px rgba(22, 163, 74, 0.1);
}


 
.form-group.has-error
.input-wrapper input,
.form-group.has-error
.input-wrapper select,
.form-group.has-error
.input-wrapper textarea {
  border-color: #ef4444;

  background: #fffafa;

  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-error {
  min-height: 0;

  margin: 0;

  color: #ef4444;

  font-size: 0.7rem;
  font-weight: 600;

  line-height: 1.5;
}

.form-error:not(:empty) {
  margin-top: 0.3rem;
}


 
.contact-submit-btn {
  width: 100%;

  min-height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.7rem;

  margin-top: 1.35rem;

  border: 0;

  border-radius: 0.95rem;

  font-family: inherit;

  font-size: 0.92rem;
  font-weight: 900;

  cursor: pointer;
}

.contact-submit-btn i:first-child {
  font-size: 1.25rem;
}

.submit-arrow {
  font-size: 0.8rem;

  transition: transform 0.3s ease;
}

.contact-submit-btn:hover .submit-arrow {
  transform: translateX(-4px);
}


 
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0.35rem;

  margin: 0.9rem 0 0;

  color: var(--muted-foreground);

  font-size: 0.67rem;

  text-align: center;
}

.form-note i {
  color: var(--secondary);
}


 
@keyframes contactSuccess {

  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

}


#contact .reveal-right,
#contact .reveal-left,
#contact .reveal-up {
  opacity: 0;

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

#contact .reveal-right {
  transform: translateX(45px);
}

#contact .reveal-left {
  transform: translateX(-45px);
}

#contact .reveal-up {
  transform: translateY(35px);
}

#contact .reveal-right.visible,
#contact .reveal-left.visible,
#contact .reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}

 
@media (max-width: 991px) {

  .contact-header {
    margin-bottom: 2.8rem;
  }

  .contact-image-wrapper,
  .contact-image {
    min-height: 400px;
  }

}


@media (max-width: 767px) {

  .contact-header {
    margin-bottom: 2.3rem;
  }

  .contact-intro {
    font-size: 0.9rem;
  }

  .contact-image-wrapper,
  .contact-image {
    min-height: 350px;
  }

  .contact-image-content {
    right: 1.4rem;
    left: 1.4rem;
    bottom: 1.4rem;
  }

  .contact-phone {
    font-size: 1.55rem;
  }

  .contact-card {
    min-height: 95px;
  }

  .contact-form {
    padding: 1.4rem;

    border-radius: 1.3rem;
  }

  .form-header h3 {
    font-size: 1.15rem;
  }

}


@media (max-width: 575px) {

  .contact-badge {
    padding: 0.4rem 0.85rem;
    font-size: 0.76rem;
  }

  .contact-intro {
    font-size: 0.82rem;
  }

  .contact-image-wrapper,
  .contact-image {
    min-height: 300px;
  }

  .contact-image-wrapper {
    border-radius: 1.25rem;
  }

  .contact-image-content {
    right: 1.1rem;
    left: 1.1rem;
    bottom: 1.1rem;
  }

  .contact-phone {
    font-size: 1.35rem;
  }

  .contact-card {
    min-height: 85px;

    border-radius: 1rem;
  }

  .contact-card-icon {
    width: 36px;
    height: 36px;

    font-size: 0.95rem;
  }

  .contact-card-title {
    font-size: 0.76rem;
  }

  .contact-card-subtitle {
    font-size: 0.62rem;
  }

  .contact-form {
    padding: 1.1rem;

    border-radius: 1.15rem;
  }

  .form-header {
    gap: 0.7rem;
  }

  .form-header-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .form-header h3 {
    font-size: 1.05rem;
  }

  .form-header p {
    font-size: 0.68rem;
  }

  .form-group label {
    font-size: 0.76rem;
  }

  .input-wrapper input,
  .input-wrapper select {
    height: 47px;
    font-size: 0.76rem;
  }

  .input-wrapper textarea {
    font-size: 0.76rem;
  }

  .contact-submit-btn {
    min-height: 52px;
    font-size: 0.8rem;
  }

  .form-note {
    font-size: 0.6rem;
  }

}


 @media (prefers-reduced-motion: reduce) {

  .contact-image,
  .contact-card,
  .contact-phone,
  .contact-submit-btn,
  .submit-arrow,
  .input-wrapper input,
  .input-wrapper select,
  .input-wrapper textarea {
    transition: none !important;
  }

  #contact .reveal-right,
  #contact .reveal-left,
  #contact .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
.designed-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designed-by span {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.designer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 6px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.3s ease;
}

.designer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    border-radius: 10px;

}

.designer-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

 @media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .designed-by {
    justify-content: center;
  }
}
 
.site-footer {
  position: relative;

  background:
    linear-gradient(
      145deg,
      #071a30 0%,
      var(--primary) 45%,
      #0d3154 100%
    );

  color: #fff;

  overflow: hidden;
}


 
.site-footer::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: 80px;
  right: -230px;

  border-radius: 50%;

  background: rgba(22, 163, 74, 0.06);

  pointer-events: none;
}

.site-footer::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  bottom: -180px;
  left: -150px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.025);

  pointer-events: none;
}

 
.footer-wave {
  position: relative;

  width: 100%;

  margin-top: -1px;

  line-height: 0;

  overflow: hidden;

  z-index: 2;
}

.footer-wave svg {
  display: block;

  width: 100%;
  height: 60px;
}


 
.footer-main {
  position: relative;
  z-index: 2;

  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}


 
.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  margin-bottom: 1.2rem;

  color: #fff;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-logo:hover {
  color: #fff;

  transform: translateY(-2px);
}

.footer-logo-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.9rem;

  background:
    linear-gradient(
      135deg,
      var(--secondary),
      #22c55e
    );

  color: #fff;

  font-size: 1.15rem;

  box-shadow:
    0 8px 22px rgba(22, 163, 74, 0.2);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;

  gap: 0.25rem;
}

.footer-logo-text strong {
  color: #fff;

  font-size: 1.2rem;
  font-weight: 900;

  line-height: 1;
}

.footer-logo-text small {
  color: rgba(255, 255, 255, 0.55);

  font-size: 0.65rem;
  font-weight: 600;

  line-height: 1.4;
}


 
.footer-description {
  max-width: 310px;

  margin: 0 0 1.4rem;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.8rem;

  line-height: 2;
}

 
.footer-contact-info {
  display: flex;
  flex-direction: column;

  gap: 0.75rem;
}

.footer-contact-link {
  display: flex;

  align-items: center;

  gap: 0.65rem;

  color: rgba(255, 255, 255, 0.75);

  font-size: 0.78rem;
  font-weight: 600;

  line-height: 1.6;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

a.footer-contact-link:hover {
  color: #fff;

  transform: translateX(-3px);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.6rem;

  background: rgba(22, 163, 74, 0.12);

  color: var(--accent);

  font-size: 0.75rem;
}

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

.footer-location .footer-contact-icon {
  margin-top: 0.05rem;
}

 
.footer-heading {
  position: relative;

  margin: 0 0 1.4rem;

  padding-bottom: 0.8rem;

  color: #fff;

  font-size: 0.95rem;
  font-weight: 900;
}

.footer-heading::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;

  width: 35px;
  height: 2px;

  border-radius: 99px;

  background: var(--secondary);
}

 
.footer-links {
  display: flex;
  flex-direction: column;

  gap: 0.65rem;

  padding: 0;
  margin: 0;

  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.77rem;
  font-weight: 600;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a i {
  color: rgba(22, 163, 74, 0.6);

  font-size: 0.65rem;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);

  transform: translateX(-4px);
}

.footer-links a:hover i {
  color: var(--accent);

  transform: translateX(-2px);
}

 
.footer-cta .footer-description {
  margin-bottom: 1.2rem;
}


 
.footer-action-buttons {
  display: flex;
  flex-direction: column;

  gap: 0.7rem;
}

.footer-action {
  width: 100%;

  min-height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 0.55rem;

  padding: 0.7rem 1rem;

  border-radius: 0.8rem;

  font-size: 0.76rem;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.footer-action:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15);
}


 
.footer-action-call {
  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.08);

  color: #fff;
}

.footer-action-call:hover {
  background: rgba(255, 255, 255, 0.15);

  color: #fff;
}


 
.footer-action-whatsapp {
  background: #25D366;

  color: #fff;
}

.footer-action-whatsapp:hover {
  background: #1ebe5c;

  color: #fff;
}

.footer-action i {
  font-size: 1rem;
}

 

.footer-bottom {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 1.5rem;

  padding: 1.5rem 0;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  margin: 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 0.72rem;

  line-height: 1.8;
}

.footer-bottom-links {
  display: flex;

  align-items: center;

  gap: 0.7rem;

  white-space: nowrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.48);

  font-size: 0.7rem;
  font-weight: 600;

  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.18);

  font-size: 0.8rem;
}


 

@media (max-width: 991px) {

  .footer-main {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }

  .footer-heading {
    margin-bottom: 1.2rem;
  }

}


@media (max-width: 767px) {

  .footer-wave svg {
    height: 45px;
  }

  .footer-main {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;

    gap: 0.8rem;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;

    flex-wrap: wrap;
  }

}


@media (max-width: 575px) {

  .footer-logo-icon {
    width: 43px;
    height: 43px;

    flex-basis: 43px;
  }

  .footer-logo-text strong {
    font-size: 1.05rem;
  }

  .footer-logo-text small {
    font-size: 0.58rem;
  }

  .footer-description {
    font-size: 0.75rem;
  }

  .footer-heading {
    font-size: 0.88rem;
  }

  .footer-links a {
    font-size: 0.72rem;
  }

  .footer-action {
    min-height: 43px;

    font-size: 0.73rem;
  }

  .footer-copyright {
    font-size: 0.64rem;
  }

  .footer-bottom-links a {
    font-size: 0.64rem;
  }

}


 

@media (prefers-reduced-motion: reduce) {

  .footer-logo,
  .footer-contact-link,
  .footer-links a,
  .footer-links a i,
  .footer-action {
    transition: none !important;
  }

  .footer-logo:hover,
  a.footer-contact-link:hover,
  .footer-links a:hover,
  .footer-action:hover {
    transform: none;
  }

}
 

.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1050;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.floating-whatsapp:hover {
  color: #fff;
}


 
.floating-whatsapp-icon {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25D366;
  color: #fff;

  font-size: 1.8rem;

  box-shadow:
    0 8px 25px rgba(37, 211, 102, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-whatsapp:hover .floating-whatsapp-icon {
  background: #1ebe5c;
  transform: scale(1.1);
  box-shadow:
    0 12px 30px rgba(37, 211, 102, 0.45),
    0 6px 15px rgba(0, 0, 0, 0.15);
}


 
.whatsapp-pulse {
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background: rgba(37, 211, 102, 0.35);

  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

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


 
.floating-tooltip {
  position: absolute;

  bottom: calc(100% + 0.7rem);
  left: 50%;

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

  padding: 0.5rem 0.85rem;

  border-radius: 0.65rem;

  background: var(--foreground, #1c1917);
  color: #fff;

  font-size: 0.72rem;
  font-weight: 700;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.floating-tooltip::after {
  content: "";

  position: absolute;

  top: 100%;
  left: 50%;

  transform: translateX(-50%);

  border-width: 5px 5px 0;
  border-style: solid;

  border-color:
    var(--foreground, #1c1917)
    transparent
    transparent;
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0);
}


 

.back-to-top {
  position: fixed;

  bottom: 1.5rem;
  right: 1.5rem;

  z-index: 1050;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: var(--primary, #0A2342);
  color: #fff;

  font-size: 1rem;

  cursor: pointer;

  box-shadow:
    0 8px 25px rgba(10, 35, 66, 0.25);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(18px);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top:hover {
  background: var(--secondary, #16A34A);

  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(22, 163, 74, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

 

@media (max-width: 767px) {

  .floating-whatsapp {
    bottom: 1rem;
    left: 1rem;

    width: 54px;
    height: 54px;
  }

  .floating-whatsapp-icon {
    width: 54px;
    height: 54px;

    font-size: 1.65rem;
  }

  .floating-tooltip {
    display: none;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;

    width: 46px;
    height: 46px;

    font-size: 0.9rem;
  }
}


@media (max-width: 575px) {

  .floating-whatsapp {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}




@media (prefers-reduced-motion: reduce) {

  .whatsapp-pulse {
    animation: none;
  }

  .floating-whatsapp-icon,
  .floating-tooltip,
  .back-to-top {
    transition: none !important;
  }

  .floating-whatsapp:hover .floating-whatsapp-icon,
  .back-to-top:hover {
    transform: none;
  }
}