/* ===============================
   ALTIVOX HEALTH SOLUTIONS
   Main CSS
================================ */

* {
  box-sizing: border-box;
}

':root {
  --ahs-red: #dc2626;
  --ahs-red-dark: #b91c1c;

  /* Existing green variables now point to red theme */
  --ahs-green: #dc2626;
  --ahs-green-dark: #b91c1c;

  --ahs-black: #101010;
  --ahs-white: #ffffff;
  --ahs-light: #fff5f5;
  --ahs-border: #f5d4d4;
  --ahs-text: #1d1d1d;
  --ahs-muted: #5f6b63;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ahs-text);
  background: var(--ahs-white);
}

a {
  transition: 0.25s ease;
}

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

/*==============================
    TOP BAR
==============================*/

.ahs-topbar{

    background:#fff5f5;
    border-bottom:1px solid #f5d4d4;
    font-size:14px;

}

.ahs-topbar-inner{

    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    min-height:48px;

}

/* Center */

.ahs-top-info{

    display:flex;
    align-items:center;
    gap:18px;

}

.ahs-info-item{

    display:flex;
    align-items:center;
    gap:8px;
    color:#101010;
    font-weight:600;

}

.ahs-info-item svg{

    width:17px;
    height:17px;
    fill:none;
    stroke:#dc2626;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;

}

.ahs-divider{

    width:1px;
    height:16px;
    background:#f3bcbc;

}

/* Right Social */

.ahs-social{

    position:absolute;
    right:0;

    display:flex;
    align-items:center;
    gap:10px;

}

.ahs-social a{

    width:34px;
    height:34px;

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

    border-radius:50%;

    background:#ffffff;
    border:1px solid #f5d4d4;

    transition:.3s;

}

.ahs-social svg{

    width:16px;
    height:16px;

    fill:none;
    stroke:#dc2626;
    stroke-width:2;

}

.ahs-social a:hover{

    background:#dc2626;
    border-color:#dc2626;

}

.ahs-social a:hover svg{

    stroke:#fff;

}

/* Mobile */

@media(max-width:991px){

    .ahs-topbar{

        display:none;

    }

}

/* Navbar */
.ahs-navbar {
  background: #ffffff;
  border-bottom: 1px solid #f5d4d4;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.06);
}

.ahs-nav-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ahs-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ahs-logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
  display: block;
}

.ahs-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin: 0;
}

.ahs-nav-menu a {
  color: #101010;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

.ahs-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: #dc2626;
  border-radius: 20px;
  transition: 0.25s ease;
}

.ahs-nav-menu a:hover {
  color: #dc2626;
}

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

.ahs-nav-menu a.active {
  color: #dc2626;
}

.ahs-order-btn {
  background: #dc2626;
  color: #ffffff !important;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.18);
}

.ahs-order-btn::after {
  display: none;
}

.ahs-order-btn:hover {
  background: #101010;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(16, 16, 16, 0.16);
}

/* Mobile Toggle */
.ahs-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #dc2626;
  cursor: pointer;
  padding: 10px;
}

.ahs-menu-toggle:hover {
  background: #101010;
}

.ahs-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .ahs-topbar-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .ahs-nav-inner {
    height: 76px;
  }

  .ahs-logo img {
    width: 205px;
  }

  .ahs-menu-toggle {
    display: block;
  }

  .ahs-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    padding: 14px 4% 18px;
    border-top: 1px solid #f5d4d4;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  }

  .ahs-nav-menu.show {
    display: flex;
  }

  .ahs-nav-menu li {
    width: 100%;
  }

  .ahs-nav-menu a {
    display: block;
    width: 100%;
    padding: 15px 0;
  }

  .ahs-nav-menu a::after {
    display: none;
  }

  .ahs-order-btn {
    text-align: center;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .ahs-topbar-links {
    flex-direction: column;
    gap: 5px;
  }

  .ahs-topbar-links span {
    display: none;
  }

  .ahs-logo img {
    width: 178px;
  }
}

/* Navbar */
.ahs-navbar {
  background: var(--ahs-white);
  border-bottom: 1px solid var(--ahs-border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.ahs-nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Fix */
.ahs-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.ahs-logo img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 260px;
  object-fit: contain;
}

/* Header height */
.ahs-nav-inner {
  height: 88px;
}

/* Tablet */
@media (max-width: 900px) {
  .ahs-nav-inner {
    height: 76px;
  }

  .ahs-logo img {
    height: 50px;
    max-width: 220px;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .ahs-logo img {
    height: 44px;
    max-width: 185px;
  }
}

/* Very small mobile */
@media (max-width: 360px) {
  .ahs-logo img {
    height: 40px;
    max-width: 160px;
  }
}
.ahs-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.ahs-nav-menu a {
  color: var(--ahs-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.ahs-nav-menu a:hover,
.ahs-nav-menu a.active {
  color: var(--ahs-green);
}

.ahs-order-btn {
  background: var(--ahs-green);
  color: var(--ahs-white) !important;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.22);
}

.ahs-order-btn:hover {
  background: var(--ahs-black);
  color: var(--ahs-white) !important;
  box-shadow: 0 10px 24px rgba(16, 16, 16, 0.18);
}

/* Mobile Toggle */
.ahs-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--ahs-green);
  cursor: pointer;
  padding: 10px;
}

.ahs-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ahs-white);
  margin: 6px 0;
  border-radius: 20px;
}

/* Temporary Hero Placeholder */
.ahs-hero {
  background: linear-gradient(135deg, var(--ahs-light), #ffffff);
  padding: 90px 0;
  text-align: center;
}

.ahs-hero h1 {
  margin: 0 0 14px;
  color: var(--ahs-green);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -1px;
}

.ahs-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ahs-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .ahs-topbar-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .ahs-nav-inner {
    height: 76px;
  }

  .ahs-logo img {
    width: 205px;
  }

  .ahs-menu-toggle {
    display: block;
  }

  .ahs-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ahs-white);
    padding: 14px 4% 18px;
    border-top: 1px solid var(--ahs-border);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  }

  .ahs-nav-menu.show {
    display: flex;
  }

  .ahs-nav-menu li {
    width: 100%;
  }

  .ahs-nav-menu a {
    display: block;
    width: 100%;
    padding: 15px 0;
  }

  .ahs-order-btn {
    text-align: center;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .ahs-topbar-links {
    flex-direction: column;
    gap: 5px;
  }

  .ahs-topbar-links span {
    display: none;
  }

  .ahs-logo img {
    width: 178px;
  }

  .ahs-hero {
    padding: 64px 0;
  }
}

.ahs-order-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#dc2626;
    color:#fff !important;

    padding:13px 24px;
    border-radius:50px;

    font-weight:600;
    text-decoration:none;

    transition:.3s ease;
}

.ahs-btn-arrow{
    width:18px;
    height:18px;

    fill:none;
    stroke:#fff;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;

    transition:.3s ease;
}

.ahs-order-btn:hover{
    background:#111;
}

.ahs-order-btn:hover .ahs-btn-arrow{
    transform:translateX(5px);
}


.ahs-hero-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 55%, #fff1f1 100%);
}

.ahs-slide {
  display: none;
  min-height: 620px;
  animation: ahsFade 0.6s ease;
}

.ahs-slide.active {
  display: block;
}

.ahs-slide-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0;
}

.ahs-hero-badge {
  display: inline-flex;
  align-items: center;
  background: #ffeaea;
  color: #dc2626;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ahs-slide-content h1 {
  margin: 0;
  color: #101010;
  font-size: 55px;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.ahs-slide-content p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #5d6b63;
  font-size: 18px;
  line-height: 1.8;
}

.ahs-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.ahs-primary-btn,
.ahs-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.ahs-primary-btn {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.22);
}

.ahs-primary-btn:hover {
  background: #101010;
}

.ahs-secondary-btn {
  background: #fff;
  color: #101010;
  border: 1px solid #d9eee2;
}

.ahs-secondary-btn:hover {
  background: #101010;
  color: #fff;
  border-color: #101010;
}

.ahs-slide-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.ahs-slide-image::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: #ffe5e5;
  z-index: 0;
}

.ahs-slide-image img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.12));
}

.ahs-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #dc2626;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  z-index: 5;
}

.ahs-slider-arrow:hover {
  background: #dc2626;
  color: #ffffff;
}

.ahs-prev {
  left: 28px;
}

.ahs-next {
  right: 28px;
}

.ahs-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 6;
}

.ahs-slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #f5b5b5;
  cursor: pointer;
  transition: 0.3s ease;
}

.ahs-slider-dots button.active {
  width: 30px;
  background: #dc2626;
}

@keyframes ahsFade {
  from {
    opacity: 0.35;
  }

  to {
    opacity: 1;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .ahs-slide,
  .ahs-slide-inner {
    min-height: auto;
  }

  .ahs-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 0 85px;
    gap: 35px;
  }

  .ahs-slide-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .ahs-slide-image {
    order: -1;
  }

  .ahs-slide-image::before {
    width: 300px;
    height: 300px;
  }

  .ahs-slide-image img {
    max-height: 330px;
  }

  .ahs-slider-arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .ahs-slide-inner {
    padding: 48px 0 75px;
  }

  .ahs-hero-badge {
    font-size: 12px;
    padding: 8px 13px;
  }

  .ahs-slide-content h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .ahs-slide-content p {
    font-size: 15px;
    line-height: 1.7;
  }

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

  .ahs-slide-image::before {
    width: 230px;
    height: 230px;
  }

  .ahs-slide-image img {
    max-height: 250px;
  }
}

.ahs-trust-section {
  padding: 42px 0;
  background: #fff8f8;
}

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

.ahs-trust-card {
  background: #ffffff;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.16);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.07);
  transition: 0.3s ease;
}

.ahs-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16, 16, 16, 0.12);
  border-color: rgba(220, 38, 38, 0.34);
}

.ahs-trust-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1f1, #ffdede);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ahs-trust-card h3 {
  font-size: 15.5px;
  line-height: 1.35;
  color: #101010;
  margin: 0;
  font-weight: 700;
}

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

@media (max-width: 576px) {
  .ahs-trust-section {
    padding: 30px 0;
  }

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

  .ahs-trust-card {
    padding: 16px;
  }
}

.ahs-products-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(220, 38, 38, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.ahs-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.ahs-section-head span {
  display: inline-block;
  color: #dc2626;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ahs-section-head h2 {
  font-size: 38px;
  color: #101010;
  margin: 0 0 12px;
  line-height: 1.15;
}

.ahs-section-head p {
  font-size: 16px;
  color: #66705f;
  line-height: 1.7;
  margin: 0;
}

.ahs-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.ahs-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  padding: 18px;
  border: 1px solid rgba(220, 38, 38, 0.16);
  box-shadow: 0 22px 55px rgba(16, 16, 16, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.ahs-product-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  top: -55px;
  background: rgba(220, 38, 38, 0.12);
  border-radius: 50%;
  transition: 0.35s ease;
}

.ahs-product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 35px 85px rgba(16, 16, 16, 0.15);
  border-color: rgba(220, 38, 38, 0.35);
}

.ahs-product-card:hover::after {
  transform: scale(1.35);
  background: rgba(220, 38, 38, 0.16);
}

.ahs-product-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.ahs-product-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1f1;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
}

.ahs-product-price {
  color: #101010;
  font-size: 18px;
  font-weight: 900;
}

.ahs-product-img {
  position: relative;
  z-index: 2;
  height: 220px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.10);
}

.ahs-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.ahs-product-card:hover .ahs-product-img img {
  transform: scale(1.08) translateY(-4px);
}

.ahs-product-info {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.ahs-product-info h3 {
  min-height: 46px;
  font-size: 17px;
  color: #101010;
  margin: 0 0 16px;
  line-height: 1.35;
  font-weight: 900;
}

.ahs-product-info a {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  background: #101010;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.ahs-product-info a:hover {
  background: #dc2626;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
}

.ahs-product-info a i {
  font-size: 13px;
  transition: 0.3s ease;
}

.ahs-product-info a:hover i {
  transform: translateX(4px);
}

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

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

  .ahs-section-head h2 {
    font-size: 31px;
  }
}

@media (max-width: 540px) {
  .ahs-products-section {
    padding: 60px 0;
  }

  .ahs-products-grid {
    grid-template-columns: 1fr;
  }

  .ahs-product-img {
    height: 210px;
  }
}

.ahs-cta-section{
    padding:100px 0;
    background:#fff;
}

.ahs-cta-box{

    position:relative;

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

    overflow:hidden;

    padding:70px;

    border-radius:35px;

    background:linear-gradient(135deg,#101010,#2a0f0f);

    color:#fff;

    box-shadow:0 35px 80px rgba(0,0,0,.18);

}

.ahs-cta-box::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

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

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.ahs-cta-content{

    width:55%;
    position:relative;
    z-index:2;

}

.ahs-cta-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    font-size:14px;
    font-weight:700;

    margin-bottom:20px;

}

.ahs-cta-badge i{

    color:#ffd54a;

}

.ahs-cta-content h2{

    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;

}

.ahs-cta-content p{

    color:rgba(255,255,255,.82);

    font-size:17px;
    line-height:1.8;

    margin-bottom:35px;

}

.ahs-cta-buttons{

    display:flex;
    gap:16px;

}

.ahs-btn-primary{

    padding:16px 34px;

    border-radius:50px;

    background:#dc2626;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.ahs-btn-primary:hover{

    background:#b91c1c;
    transform:translateY(-3px);

}

.ahs-btn-outline{

    padding:16px 34px;

    border-radius:50px;

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.ahs-btn-outline:hover{

    background:#fff;
    color:#101010;

}

.ahs-cta-image{

    width:40%;

    position:relative;

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

}

.ahs-circle{

    position:absolute;
    border-radius:50%;

}

.ahs-circle-1{

    width:360px;
    height:360px;

    background:#dc2626;

    opacity:.12;

}

.ahs-circle-2{

    width:270px;
    height:270px;

    border:2px dashed rgba(255,255,255,.25);

}

.ahs-cta-image img{

    position:relative;

    width:90%;

    z-index:2;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.25));

}

@media(max-width:992px){

.ahs-cta-box{

    flex-direction:column;
    text-align:center;
    padding:50px 30px;

}

.ahs-cta-content,
.ahs-cta-image{

    width:100%;

}

.ahs-cta-buttons{

    justify-content:center;
    flex-wrap:wrap;

}

.ahs-cta-content h2{

    font-size:36px;

}

}

.ahs-cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ahs-cta-buttons a i {
  font-size: 15px;
}

.ahs-footer {
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.14), transparent 30%),
    linear-gradient(135deg, #101010, #101010);
  color: #ffffff;
  padding: 80px 0 25px;
}

.ahs-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 45px;
  padding-bottom: 50px;
}

.ahs-footer-brand h2 {
  font-size: 28px;
  margin: 0 0 18px;
  color: #ffffff;
}

.ahs-footer-brand p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin: 0 0 24px;
  max-width: 360px;
}

.ahs-footer-social {
  display: flex;
  gap: 12px;
}

.ahs-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.ahs-footer-social a:hover {
  background: #dc2626;
  transform: translateY(-4px);
}

.ahs-footer-col h3 {
  font-size: 17px;
  margin: 0 0 20px;
  color: #ffffff;
}

.ahs-footer-col a,
.ahs-footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 13px;
  line-height: 1.6;
  transition: 0.3s ease;
}

.ahs-footer-col a:hover {
  color: #dc2626;
  transform: translateX(5px);
}

.ahs-footer-contact i {
  color: #dc2626;
  min-width: 18px;
}

.ahs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ahs-footer-bottom p,
.ahs-footer-bottom span {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

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

  .ahs-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .ahs-footer {
    padding: 60px 0 22px;
  }

  .ahs-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}