:root {
    --white: #ffffffff;
    --black: #000000ff;
}

/*--------------------------------------------------------------
# Inter Google fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/*--------------------------------------------------------------
# Main font is Inter
--------------------------------------------------------------*/
body {
  font-family: "Inter", sans-serif;
  color: #343a40;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.na {
  text-decoration: line-through;
}

a {
  text-decoration: none;
  color: #5da92f;
}

a:hover {
  color: #9bd46a;
}

.bi {
  vertical-align: middle;
}

 

.btn-get-started {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50rem;
  color: #fff;
  background-image: linear-gradient(120deg, #5da92f, #22c55e, #07c8f9);
  background-size: 200% auto;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-get-started:hover {
  background-position: right center;
  color: #fff;
  box-shadow: 0 15px 30px rgba(13, 65, 225, 0.35);
  transform: translateY(-2px);
}

.btn-get-started-primary {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50rem;
  color: #fff;
  background-image: linear-gradient(120deg, #0d41e1, #07c8f9, #22c55e);
  background-size: 200% auto;
  box-shadow: 0 10px 24px rgba(13, 65, 225, 0.3);
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-get-started-primary:hover {
  background-position: right center;
  color: #fff;
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-choose-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  .text-gradient {
    background: linear-gradient(45deg, #0d41e1, #07c8f9, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .blob-shape {
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(13, 65, 225, 0.1) 0%, rgba(34, 197, 94, 0) 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .floating-animation {
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }
  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
  }
  .icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Consultation Section
--------------------------------------------------------------*/
 .consultation-section {
    background: linear-gradient(135deg, #1b014b 0%, #4e0037 100%);
    position: relative;
    overflow: hidden;
  }
  
  .consultation-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .consultation-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .consultation-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
  }
  
  .consultation-feature i {
    color: #9bd46a; /* Green accent */
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1;
  }

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

.navbar-toggler {
    border: none;
}
 
/*--------------------------------------------------------------
# Main hero section
--------------------------------------------------------------*/
.banner {
  background: linear-gradient(-45deg, #0d41e1, #07c8f9, #9bd46a, #5da92f );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding-bottom: 50px;
}

.banner-img {
  min-width: 300px;
  margin-top: -50px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
  
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
 .testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
  }
  
  .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
  }

  .testimonial-card .card-body {
    position: relative;
    z-index: 1;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    color: rgba(0,0,0,0.03);
    font-family: serif;
    line-height: 1;
    z-index: 0;
  }

 /* Epic Services Section */
      .services-epic {
        background-color: #f8f9fa;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }
      .services-epic .section-header {
        text-align: center;
        margin-bottom: 70px;
      }
      .services-epic .section-header h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: #101a33;
        margin-bottom: 1.2rem;
        letter-spacing: -1px;
      }
      .services-epic .section-header p {
        font-size: 1.2rem;
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .service-card-epic {
        background: #fff;
        border-radius: 20px;
        padding: 40px 35px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        position: relative;
        z-index: 1;
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        display: flex;
        flex-direction: column;
        text-decoration: none;
        overflow: hidden;
      }
      .service-card-epic:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(12, 22, 64, 0.15);
      }
      .service-card-epic::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(135deg, #0c1640 0%, #0d41e1 100%);
        transition: all 0.4s ease;
        z-index: -1;
      }
      .service-card-epic:hover::before {
        height: 100%;
      }
      .service-icon-wrapper {
        width: 80px;
        height: 80px;
        background: rgba(12, 22, 64, 0.05);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        transition: all 0.4s ease;
      }
      .service-card-epic:hover .service-icon-wrapper {
        background: rgba(255,255,255,0.15);
        transform: rotateY(180deg);
      }
      .service-icon-wrapper i {
        font-size: 36px;
        color: #0c1640;
        transition: all 0.4s ease;
      }
      .service-card-epic:hover .service-icon-wrapper i {
        color: #fff;
        transform: rotateY(-180deg); /* Keep icon facing forward */
      }
      .service-card-epic h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0c1640;
        transition: all 0.4s ease;
      }
      .service-card-epic:hover h3 {
        color: #fff;
      }
      .service-card-epic p {
        color: #6c757d;
        margin-bottom: 25px;
        line-height: 1.7;
        transition: all 0.4s ease;
        flex-grow: 1;
      }
      .service-card-epic:hover p {
        color: rgba(255,255,255,0.9);
      }
      .service-link-icon {
        color: #0d41e1;
        font-weight: 700;
        display: flex;
        align-items: center;
        transition: all 0.4s ease;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .service-card-epic:hover .service-link-icon {
        color: #fff;
      }
      .service-link-icon i {
        margin-left: 8px;
        transition: transform 0.3s ease;
      }
      .service-card-epic:hover .service-link-icon i {
        transform: translateX(5px);
      }

/* Visit Our Office Section */
.visit-office-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
}
.office-info-card {
  background: #fff;
  padding: 50px;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .office-info-card {
    border-radius: 20px 20px 0 0;
    padding: 40px;
  }
}
.office-info-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #333;
}
.office-info-list {
  margin-bottom: 2.5rem;
}
.office-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #555;
}
.office-info-list i {
  color: #5da92f;
  font-size: 1.5rem;
  margin-right: 20px;
  margin-top: -2px;
  background: rgba(93, 169, 47, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.office-info-list strong {
  display: block;
  color: #333;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.map-container {
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  height: 100%;
  min-height: 500px;
  position: relative;
}
@media (max-width: 991px) {
  .map-container {
    border-radius: 0 0 20px 20px;
    min-height: 400px;
  }
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.btn-directions {
  background: #333;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #333;
  text-decoration: none;
}
.btn-directions:hover {
  background: transparent;
  color: #333;
  transform: translateY(-2px);
}
.btn-appointment {
  background: #5da92f;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #5da92f;
  text-decoration: none;
}
.btn-appointment:hover {
  background: transparent;
  color: #5da92f;
  transform: translateY(-2px);
}

/* Service Areas Section */
.service-areas-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}
.location-card {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.location-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: transparent;
}
.location-icon {
  width: 50px;
  height: 50px;
  background: rgba(93, 169, 47, 0.1);
  color: #5da92f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.location-card:hover .location-icon {
  background: #5da92f;
  color: #fff;
  transform: scale(1.1);
}
.location-card h3 {
  font-weight: 600;
  color: #555;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}
.location-card:hover h3 {
  color: #333;
}
    

/* ── Cart ─────────────────────────────────────── */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #0f172a;
  transition: transform 0.25s ease, background 0.25s ease;
}
.cart-toggle:hover {
  background: linear-gradient(135deg, rgba(93, 169, 47, 0.12), rgba(0, 140, 191, 0.14));
  transform: translateY(-2px);
}
.cart-toggle i {
  transition: transform 0.25s ease;
}
.cart-toggle:hover i {
  transform: scale(1.08);
}
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 50px;
  background: linear-gradient(135deg, #22c55e 0%, #008cbf 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
  display: none;
  box-shadow: 0 0 0 3px #fff, 0 6px 16px rgba(34, 197, 94, 0.45);
  animation: cartBadgePop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cartBadgePop {
  0% { transform: scale(0.4); }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.cart-offcanvas {
  width: 360px !important;
  max-width: 92vw;
  background: linear-gradient(180deg, #0b1220 0%, #101d33 100%);
  color: #e6edf7;
  border-left: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
}
.cart-offcanvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(34, 197, 94, 0.14), transparent 60%),
    radial-gradient(500px 420px at 0% 100%, rgba(0, 140, 191, 0.16), transparent 60%);
  pointer-events: none;
}
.cart-offcanvas .offcanvas-header {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-offcanvas .offcanvas-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  background: linear-gradient(90deg, #22c55e, #008cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-offcanvas .btn-close {
  filter: invert(1) grayscale(1) brightness(1.8);
  opacity: 0.8;
}
.cart-offcanvas .offcanvas-body {
  min-height: 0;
  position: relative;
  padding: 1.25rem 1.5rem;
}
.cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #8eaabf;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}
.cart-drawer-empty i {
  font-size: 2.6rem;
  opacity: 0.55;
  background: linear-gradient(135deg, #22c55e, #008cbf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cart-drawer-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cart-drawer-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #22c55e, #008cbf);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cart-drawer-item:hover {
  transform: translateX(4px);
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.cart-drawer-item:hover::before {
  opacity: 1;
}
.cart-drawer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.cart-drawer-item-name {
  font-weight: 600;
  color: #f0f6ff;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}
.cart-drawer-item-price {
  font-weight: 800;
  background: linear-gradient(90deg, #22c55e, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-drawer-item-remove {
  border: none;
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cart-drawer-item-remove:hover {
  background: #f87171;
  color: #0b1220;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 6px 16px rgba(248, 113, 113, 0.4);
}
.cart-drawer-footer {
  position: relative;
}
.cart-drawer-footer .border-top {
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.cart-drawer-subtotal {
  font-size: 1.15rem;
  background: linear-gradient(90deg, #22c55e, #008cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-cart-checkout].btn {
  border: none;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
[data-cart-checkout].btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.5);
  filter: brightness(1.05);
  color: #fff;
}
[data-cart-continue].btn {
  color: #8eaabf;
  font-weight: 600;
  transition: color 0.2s ease;
}
[data-cart-continue].btn:hover {
  color: #22c55e;
}

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 24px);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.3rem;
  border-radius: 60px;
  background: rgba(15, 22, 36, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #f0f6ff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 197, 94, 0.08);
  opacity: 0;
  z-index: 1080;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.cart-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.cart-toast i {
  font-size: 1.15rem;
  background: linear-gradient(135deg, #22c55e, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Header Redesign — Announcement Bar
--------------------------------------------------------------*/
.top-bar {
  background: linear-gradient(90deg, #05081f 0%, #0b1440 45%, #0d41e1 100%);
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  overflow: hidden;
  z-index: 1019;
}
.top-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.09) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: topbar-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes topbar-shine {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.top-bar__badge {
  background: linear-gradient(135deg, #ffc400, #ff7a00);
  color: #241300;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 0.22rem 0.65rem;
  border-radius: 50rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(255, 160, 0, 0.55);
}
.top-bar__text { font-weight: 600; letter-spacing: 0.2px; }
.top-bar__bolt {
  color: #ffd24d;
  animation: bolt-pulse 1.6s ease-in-out infinite;
}
@keyframes bolt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.25); }
}
.top-bar__contact { flex-wrap: wrap; }
.top-bar__stars i { color: #ffd24d; font-size: 0.78rem; }
.top-bar__rated { font-weight: 700; margin-left: 6px; }
.top-bar__divider { width: 1px; height: 18px; background: rgba(255, 255, 255, 0.28); }
.top-bar__phone { display: inline-flex; align-items: center; gap: 0.55rem; color: #fff; text-decoration: none; }
.top-bar__phone:hover { color: #fff; }
.top-bar__phone-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: #7ee0ff;
}
.top-bar__phone-label {
  display: block; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 1px; opacity: 0.75; line-height: 1;
}
.top-bar__phone-num { display: block; font-weight: 800; font-size: 0.95rem; line-height: 1.1; letter-spacing: 0.3px; }

/*--------------------------------------------------------------
# Header Redesign — Navbar
--------------------------------------------------------------*/
.site-navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 65, 225, 0.08);
  box-shadow: 0 10px 34px rgba(10, 22, 60, 0.07);
  padding: 0.7rem 0;
}
.navbar-logo { height: 30px; width: auto; transition: transform 0.3s ease; }
.navbar-brand:hover .navbar-logo { transform: scale(1.02); }
@media (min-width: 992px) {
  .navbar-logo { height: 22px; }
}

.site-navbar .navbar-nav .nav-link {
  color: #18203a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.78rem;
  padding: 0.55rem 0.85rem;
  position: relative;
}
.site-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.2rem;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #0d41e1, #07c8f9, #5da92f);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s ease;
}
.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus { color: #0d41e1; }
.site-navbar .navbar-nav .nav-link:hover::after,
.site-navbar .navbar-nav .nav-link:focus::after,
.site-navbar .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.site-navbar .dropdown-toggle::after { margin-left: 0.35em; vertical-align: 0.12em; }
.site-navbar .dropdown-menu {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(10, 22, 60, 0.16);
  padding: 0.6rem;
  margin-top: 0.7rem !important;
  width: 16rem;
  min-width: 16rem;
}

/* Navbar CTA */
.nav-phone { display: inline-flex; align-items: center; gap: 0.6rem; color: #18203a; text-decoration: none; }
.nav-phone i { font-size: 1.45rem; color: #0d41e1; }
.nav-phone__label { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.2px; color: #7b8496; line-height: 1; }
.nav-phone__num { display: block; font-weight: 800; font-size: 1.05rem; color: #0d41e1; line-height: 1.15; letter-spacing: 0.3px; }
.nav-phone:hover .nav-phone__num { color: #07c8f9; }

.cta-btn {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  padding: 0.72rem 1.35rem;
  border-radius: 50rem;
  border: none;
  background-image: linear-gradient(120deg, #5da92f, #7fc24a, #07c8f9);
  background-size: 200% auto;
  box-shadow: 0 10px 26px rgba(93, 169, 47, 0.32);
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.cta-btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.4) 50%, transparent 75%);
  transform: translateX(-100%);
}
.cta-btn:hover { color: #fff; background-position: right center; box-shadow: 0 15px 32px rgba(13, 65, 225, 0.4); transform: translateY(-2px); }
.cta-btn:hover::before { animation: cta-sheen 0.8s ease; }
@keyframes cta-sheen { to { transform: translateX(100%); } }

.cta-btn-outline {
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.6px; text-transform: uppercase;
  color: #0d41e1; padding: 0.72rem 1.35rem; border-radius: 50rem;
  border: 2px solid #0d41e1; background: transparent;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cta-btn-outline:hover { background: #0d41e1; color: #fff; transform: translateY(-2px); }

/* Offcanvas (mobile menu) */
.site-navbar .offcanvas { width: 320px; max-width: 88vw; }
.site-navbar .offcanvas-header { border-bottom: 1px solid #eef1f6; }
.site-navbar .offcanvas-phone {
  color: #0d41e1; font-weight: 800; text-decoration: none; letter-spacing: 0.3px;
}
.site-navbar .offcanvas-phone i { margin-right: 0.35rem; }
@media (max-width: 991.98px) {
  .site-navbar .offcanvas-body .navbar-nav .nav-link { font-size: 0.95rem; padding: 0.7rem 0; }
}

/*--------------------------------------------------------------
# Footer Redesign
--------------------------------------------------------------*/
.footer-cta {
  position: relative;
  background: linear-gradient(-45deg, #0d41e1, #07c8f9, #5da92f, #22c55e);
  background-size: 400% 400%;
  animation: footer-cta-gradient 14s ease infinite;
  padding: 4rem 0;
  overflow: hidden;
}
@keyframes footer-cta-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.footer-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 300px at 15% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(600px 300px at 85% 80%, rgba(255, 255, 255, 0.14), transparent 60%);
  pointer-events: none;
}
.footer-cta .container { position: relative; }
.footer-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-cta__content { max-width: 720px; color: #fff; }
.footer-cta__eyebrow {
  display: inline-block;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 1.4px; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.3rem 0.8rem; border-radius: 50rem; margin-bottom: 1rem;
}
.footer-cta h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.footer-cta p { font-size: 1.02rem; color: rgba(255, 255, 255, 0.92); margin-bottom: 1.6rem; }
.footer-cta__actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.footer-cta__phone { color: #fff; font-weight: 800; font-size: 1.15rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-cta__phone:hover { color: #fff; }
.footer-cta__phone i { font-size: 1.3rem; }
.footer-cta__badges { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-cta__badge {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff; font-weight: 700; font-size: 0.88rem;
  padding: 0.55rem 1rem; border-radius: 50rem; white-space: nowrap;
}
.footer-cta__badge i { font-size: 1.1rem; }

#footer {
  background: linear-gradient(180deg, #0b1220 0%, #0d1830 100%);
  color: #c7d2e4;
  font-size: 0.94rem;
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
}
#footer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 100% 0%, rgba(34, 197, 94, 0.08), transparent 60%),
    radial-gradient(600px 420px at 0% 100%, rgba(0, 140, 191, 0.1), transparent 60%);
  pointer-events: none;
}
#footer > .container { position: relative; }
#footer a { color: #aab7cc; text-decoration: none; transition: color 0.25s ease, padding-left 0.25s ease; }
#footer a:hover { color: #fff; }
#footer .footer-links a:hover { padding-left: 5px; color: #7ee0ff; }
#footer .footer-links .nav-link { padding: 0; }
#footer h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 1.4rem;
}
#footer h3::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, #22c55e, #07c8f9);
}
#footer .footer-links li { padding-bottom: 0.55rem; }
#footer .footer-links i { color: #22c55e; padding-right: 0.4rem; font-size: 0.72rem; }
#footer .footer-brand { display: inline-flex; align-items: center; gap: 0.1rem; color: #fff; text-decoration: none; }
#footer .footer-brand:hover { color: #fff; }
#footer .footer-brand .brand-green { background: linear-gradient(135deg, #5da92f, #9bd46a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#footer .footer-brand .brand-blue { background: linear-gradient(135deg, #0d41e1, #07c8f9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#footer .footer-about { color: #9fb0c8; line-height: 1.75; }
#footer .social-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
#footer .social-links a {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7e3f4; font-size: 1.1rem; margin-right: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
#footer .social-links a:hover {
  background: linear-gradient(135deg, #22c55e, #07c8f9);
  color: #fff; transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
}
#footer .footer-trust__chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.3px;
  color: #d7e3f4; background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.32rem 0.7rem; border-radius: 50rem;
}
#footer .footer-trust__chip i { color: #22c55e; }
.footer-contact p { line-height: 1.9; color: #9fb0c8; }
.footer-contact strong { color: #fff; }
#footer .lang-switcher-btn { color: #d7e3f4; font-weight: 600; text-decoration: none; }
#footer .lang-switcher-btn:hover { color: #7ee0ff; }

.footer-bottom {
  position: relative;
  margin-top: 3rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.8rem;
}
.footer-bottom small { color: #8ea0ba; }
.footer-bottom small strong { color: #fff; }
.footer-bottom a { color: #aab7cc; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/*--------------------------------------------------------------
# Homepage Redesign
--------------------------------------------------------------*/
.section-pad { padding: 4.5rem 0; }
.bg-soft { background: #f6f8fc; }
.accent-text {
  background: linear-gradient(90deg, #0d41e1, #07c8f9, #22c55e);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head__eyebrow {
  display: inline-block; font-weight: 800; font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: #0d41e1; background: rgba(13, 65, 225, 0.08);
  padding: 0.35rem 0.9rem; border-radius: 50rem; margin-bottom: 1rem;
}
.section-head__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; color: #101a33; margin-bottom: 1rem; }
.section-head__lead { color: #5b667c; font-size: 1.05rem; }

/* Hero */
.hero-home {
  position: relative;
  background: linear-gradient(160deg, #070b1d 0%, #0c1640 55%, #0d3a7a 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.hero-home::before, .hero-home::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.hero-home::before { width: 520px; height: 520px; background: rgba(13, 65, 225, 0.45); top: -180px; right: -120px; }
.hero-home::after { width: 460px; height: 460px; background: rgba(34, 197, 94, 0.28); bottom: -160px; left: -120px; }
.hero-home .container { position: relative; z-index: 2; }
.hero-home__badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 800; font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffd24d; padding: 0.4rem 0.95rem; border-radius: 50rem; margin-bottom: 1.3rem;
  backdrop-filter: blur(6px);
}
.hero-home__badge i { color: #ff7a00; }
.hero-home__title { font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.hero-home__accent {
  background: linear-gradient(90deg, #7ee0ff, #22c55e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-home__lead { font-size: 1.12rem; color: rgba(230, 239, 255, 0.86); max-width: 560px; margin-bottom: 1.8rem; }
.hero-home__cta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-home__call { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 800; font-size: 1.15rem; text-decoration: none; }
.hero-home__call:hover { color: #7ee0ff; }
.hero-home__call i { color: #22c55e; font-size: 1.25rem; }
.hero-home__checks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.hero-home__checks li { display: inline-flex; align-items: center; gap: 0.45rem; color: #c9d7ec; font-weight: 600; font-size: 0.92rem; }
.hero-home__checks i { color: #22c55e; }

.hero-home__media { position: relative; }
.hero-home__frame {
  position: relative;
  border-radius: 1.4rem; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.hero-home__img { width: 100%; height: auto; display: block; }
.hero-float {
  position: absolute; display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255, 255, 255, 0.96); color: #101a33;
  border-radius: 1rem; padding: 0.7rem 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  animation: hero-float 5s ease-in-out infinite;
}
.hero-float strong { display: block; font-size: 1.1rem; font-weight: 800; line-height: 1.1; }
.hero-float small { color: #6b7280; font-size: 0.74rem; font-weight: 600; }
.hero-float__icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #22c55e, #07c8f9); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.hero-float__stars { color: #ffb400; font-size: 0.95rem; letter-spacing: 2px; }
.hero-float--1 { top: -22px; right: 6%; }
.hero-float--2 { bottom: -22px; left: 5%; animation-delay: 1.6s; }
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats strip */
.stat-strip { background: #fff; border-bottom: 1px solid #eef1f6; }
.stat-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2rem 0; }
.stat-strip__item { text-align: center; position: relative; }
.stat-strip__item + .stat-strip__item::before { content: ""; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: #e6eaf2; }
.stat-strip__num { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(90deg, #0d41e1, #22c55e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-strip__label { color: #6b7280; font-weight: 600; font-size: 0.9rem; }

/* Services-home section */
.services-home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 560px at 88% -12%, rgba(13, 65, 225, 0.09), transparent 60%),
    radial-gradient(900px 520px at -8% 112%, rgba(34, 197, 94, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}
.services-home::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 65, 225, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 65, 225, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 75%);
}
.services-home .container { position: relative; z-index: 1; }

/* Service cards */
.service-card {
  position: relative;
  background: #fff; border: 1px solid #e8edf6; border-radius: 1.4rem; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
  box-shadow: 0 12px 34px rgba(10, 22, 60, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 1.4rem; padding: 2px;
  background: linear-gradient(135deg, #0d41e1, #07c8f9, #22c55e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0; transition: opacity 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 34px 70px rgba(10, 22, 60, 0.18);
}
.service-card:hover::before { opacity: 1; }
.service-card__media {
  position: relative; height: 230px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.service-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}
.service-card:hover .service-card__media img { transform: scale(1.08) translateY(-4px); }

/* Per-service media backdrops */
.service-card--web .service-card__media {
  background:
    radial-gradient(120% 120% at 82% 0%, rgba(13, 65, 225, 0.4), transparent 60%),
    radial-gradient(120% 120% at 8% 100%, rgba(7, 200, 249, 0.28), transparent 55%),
    linear-gradient(155deg, #080f2b 0%, #0c1640 55%, #0d3a7a 100%);
}
.service-card--logo .service-card__media {
  background:
    radial-gradient(120% 120% at 82% 0%, rgba(124, 58, 237, 0.42), transparent 60%),
    radial-gradient(120% 120% at 8% 100%, rgba(236, 72, 153, 0.25), transparent 55%),
    linear-gradient(155deg, #1c0f38 0%, #2a1a52 55%, #4c1d95 100%);
}
.service-card--seo .service-card__media {
  background:
    radial-gradient(120% 120% at 82% 0%, rgba(34, 197, 94, 0.3), transparent 60%),
    radial-gradient(120% 120% at 8% 100%, rgba(7, 200, 249, 0.3), transparent 55%),
    linear-gradient(155deg, #05252a 0%, #064c55 55%, #0a5da8 100%);
}

.service-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: linear-gradient(135deg, #ffc400, #ff7a00); color: #241300;
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.35rem 0.8rem; border-radius: 50rem; box-shadow: 0 8px 18px rgba(255, 122, 0, 0.4);
}
.service-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-card__body h3 { font-size: 1.25rem; font-weight: 800; color: #101a33; margin-bottom: 0.6rem; }
.service-card__body p { color: #5b667c; font-size: 0.95rem; margin-bottom: 1.1rem; }
.service-card__price { margin-top: auto; margin-bottom: 1.1rem; }
.service-card__price .amount { font-size: 1.8rem; font-weight: 800; color: #0d41e1; }
.service-card__price sup { font-size: 0.95rem; }
.service-card__price .strike { color: #9aa4b6; text-decoration: line-through; font-size: 1rem; margin-left: 0.5rem; }
.service-card__price .per { color: #6b7280; font-size: 0.85rem; font-weight: 600; }
.service-card__link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 800; color: #fff; text-decoration: none; font-size: 0.9rem;
  background: linear-gradient(120deg, #0d41e1, #07c8f9);
  padding: 0.75rem 1.2rem; border-radius: 50rem;
  box-shadow: 0 10px 22px rgba(13, 65, 225, 0.28);
  transition: all 0.25s ease;
}
.service-card__link i { transition: transform 0.25s ease; }
.service-card__link:hover {
  color: #fff; transform: translateY(-2px);
  background: linear-gradient(120deg, #22c55e, #07c8f9);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.35);
}
.service-card__link:hover i { transform: translateX(5px); }

@media (max-width: 575.98px) {
  .service-card__media { height: 190px; }
}

/* Split sections */
.split-section .split-eyebrow {
  display: inline-block; font-weight: 800; font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: #0d41e1; background: rgba(13, 65, 225, 0.08);
  padding: 0.35rem 0.9rem; border-radius: 50rem; margin-bottom: 1rem;
}
.split-section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; color: #101a33; margin-bottom: 1rem; }
.split-section .lead { color: #5b667c; }
.split-section__img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.split-list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; }
.split-list li { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.7rem; color: #374151; font-weight: 600; }
.split-list i { color: #22c55e; font-size: 1.1rem; line-height: 1.3; }

.cta-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 800; color: #0d41e1; text-decoration: none; font-size: 1.02rem;
}
.cta-link i { transition: transform 0.25s ease; }
.cta-link:hover { color: #22c55e; }
.cta-link:hover i { transform: translateX(5px); }

.split-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #101a33; font-weight: 800; font-size: 1.15rem; text-decoration: none;
}
.split-phone i { color: #22c55e; font-size: 1.25rem; }
.split-phone:hover { color: #0d41e1; }

/* Feature rows */
.feature-row { align-items: center; }
.feature-row__img { border-radius: 1.3rem; box-shadow: 0 24px 50px rgba(10, 22, 60, 0.16); width: 100%; }
.feature-row__eyebrow {
  display: inline-block; font-weight: 800; font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: #22c55e; background: rgba(34, 197, 94, 0.1);
  padding: 0.35rem 0.9rem; border-radius: 50rem; margin-bottom: 1rem;
}
.feature-row h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; color: #101a33; margin-bottom: 0.9rem; }
.feature-row p { color: #5b667c; font-size: 1.05rem; }
.feature-row .price-note { font-weight: 800; color: #0d41e1; }
.feature-row .price-note .strike { color: #9aa4b6; text-decoration: line-through; font-weight: 600; margin-left: 0.4rem; }

@media (max-width: 991.98px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .stat-strip__item:nth-child(3)::before { display: none; }
}

/*--------------------------------------------------------------
# Inner Page Hero (page-hero + modernized .hero-section)
--------------------------------------------------------------*/
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #070b1d 0%, #0c1640 55%, #0d3a7a 100%);
  color: #fff;
  padding: 4.5rem 0;
  overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.page-hero::before { width: 480px; height: 480px; background: rgba(13, 65, 225, 0.4); top: -160px; right: -120px; }
.page-hero::after { width: 420px; height: 420px; background: rgba(34, 197, 94, 0.24); bottom: -160px; left: -120px; }
.page-hero > .container, .page-hero > .container-fluid { position: relative; z-index: 2; }
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffd24d; padding: 0.35rem 0.9rem; border-radius: 50rem; margin-bottom: 1.1rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; color: #fff; }
.page-hero .lead { color: rgba(230, 239, 255, 0.88); font-size: 1.1rem; max-width: 720px; }
.page-hero__accent {
  background: linear-gradient(90deg, #7ee0ff, #22c55e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero .text-muted { color: rgba(255, 255, 255, 0.6) !important; }

/* Bootstrap-only hero sections (web-design, tucson-web-design, diseno-de-paginas-web) */
.hero-section {
  background: linear-gradient(160deg, #070b1d 0%, #0c1640 55%, #0d3a7a 100%);
  color: #fff;
}
.hero-section h1 { color: #fff; }
.hero-section .text-secondary { color: rgba(230, 239, 255, 0.7) !important; }
.hero-section .btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.hero-section .btn-outline-light:hover { background: #fff; color: #101a33; }
.page-hero .btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.page-hero .btn-outline-light:hover { background: #fff; color: #101a33; }

/*--------------------------------------------------------------
# Hourly pricing component
--------------------------------------------------------------*/
.hourly-pricing { background: #f6f8fc; padding: 4.5rem 0; }
.hourly-note { color: #0d41e1; font-weight: 700; font-size: 0.95rem; margin-top: -0.5rem; }
.hourly-card {
  background: #fff; border-radius: 1.3rem; padding: 2.5rem 1.75rem; text-align: center;
  border: 1px solid #eef1f6; box-shadow: 0 10px 30px rgba(10, 22, 60, 0.05);
  height: 100%; display: flex; flex-direction: column; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hourly-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(10, 22, 60, 0.14); }
.hourly-card.popular { border: 2px solid #0d41e1; box-shadow: 0 18px 40px rgba(13, 65, 225, 0.15); }
.hourly-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #0d41e1, #07c8f9); color: #fff;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50rem; white-space: nowrap; box-shadow: 0 8px 18px rgba(13, 65, 225, 0.3);
}
.hourly-title { font-size: 1.15rem; font-weight: 800; color: #101a33; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.hourly-price { font-size: 3rem; font-weight: 800; color: #0d41e1; line-height: 1; }
.hourly-price .currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-right: 2px; }
.hourly-price .per { font-size: 1rem; color: #6b7280; font-weight: 600; margin-left: 4px; }
.hourly-total { color: #6b7280; font-weight: 700; font-size: 0.95rem; margin: 0.5rem 0 1.5rem; }
.hourly-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex-grow: 1; text-align: left; }
.hourly-features li { margin-bottom: 0.7rem; color: #374151; font-size: 0.95rem; }
.hourly-features i { color: #22c55e; margin-right: 0.5rem; }
.hourly-btn {
  display: block; padding: 0.8rem 1rem; border-radius: 50rem;
  background: linear-gradient(120deg, #5da92f, #22c55e, #07c8f9); background-size: 200% auto;
  color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; font-size: 0.85rem;
  text-decoration: none; box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hourly-btn:hover { background-position: right center; color: #fff; transform: translateY(-2px); box-shadow: 0 15px 30px rgba(13, 65, 225, 0.4); }

/*--------------------------------------------------------------
# Feature cards + page CTA band
--------------------------------------------------------------*/
.feature-card {
  background: #fff; border: 1px solid #eef1f6; border-radius: 1.1rem; padding: 1.75rem 1.5rem;
  height: 100%; box-shadow: 0 10px 30px rgba(10, 22, 60, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(10, 22, 60, 0.12); }
.feature-card__icon {
  width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, #0d41e1, #07c8f9);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: #101a33; margin-bottom: 0.5rem; }
.feature-card p { color: #5b667c; font-size: 0.92rem; margin: 0; }

.page-cta {
  background: linear-gradient(160deg, #070b1d 0%, #0c1640 55%, #0d3a7a 100%);
  color: #fff; padding: 4rem 0; position: relative; overflow: hidden;
}
.page-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
.page-cta p { color: rgba(230, 239, 255, 0.85); font-size: 1.05rem; max-width: 640px; margin: 0 auto 1.75rem; }

/*--------------------------------------------------------------
# Portfolio page
--------------------------------------------------------------*/
.portfolio-hero { padding-bottom: 0; }
.portfolio-hero .lead { max-width: 660px; }
.portfolio-hero .hero-home__media { margin-bottom: -1px; }

.portfolio-work { background: #fff; }

.portfolio-card {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 1.3rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(10, 22, 60, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10, 22, 60, 0.16);
  border-color: rgba(13, 65, 225, 0.25);
}

.portfolio-card__media {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: #0b1220;
}
.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.portfolio-card:hover .portfolio-card__media img { transform: scale(1.08); }

.portfolio-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #0d41e1, #07c8f9);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50rem;
  box-shadow: 0 8px 18px rgba(13, 65, 225, 0.35);
}

.portfolio-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.portfolio-card__body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #101a33;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.portfolio-card__body > p {
  color: #5b667c;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.portfolio-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: #f6f8fc;
  border-radius: 1rem;
  margin: auto 0 1.25rem;
}
.portfolio-card__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.portfolio-card__metric strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #0d41e1, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.portfolio-card__metric span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.2;
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: #0d41e1;
  text-decoration: none;
  font-size: 0.92rem;
  margin-top: auto;
}
.portfolio-card__link i { transition: transform 0.25s ease; }
.portfolio-card__link:hover { color: #22c55e; }
.portfolio-card__link:hover i { transform: translateX(5px); }

/* CTA card inside the grid */
.portfolio-card--cta {
  background: linear-gradient(160deg, #070b1d 0%, #0c1640 55%, #0d3a7a 100%);
  border: none;
  position: relative;
}
.portfolio-card--cta::before,
.portfolio-card--cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.portfolio-card--cta::before { width: 280px; height: 280px; background: rgba(13, 65, 225, 0.5); top: -110px; right: -90px; }
.portfolio-card--cta::after { width: 260px; height: 260px; background: rgba(34, 197, 94, 0.28); bottom: -110px; left: -90px; }

.portfolio-card__cta-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
}
.portfolio-card__cta-inner .portfolio-card__tag {
  position: static;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffc400, #ff7a00);
  color: #241300;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.4);
}
.portfolio-card__cta-inner h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.portfolio-card__cta-inner p {
  color: rgba(230, 239, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.portfolio-card__cta-inner .btn { align-self: flex-start; }

@media (max-width: 575.98px) {
  .portfolio-card__media { height: 200px; }
  .portfolio-card__metrics { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.75rem; }
}

