@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-color: #02837a;
  --primary-color-light: #02a69b23;
  --secondary-color: #eb9c2b;
  --secondary-color-light: #eb9b2b;
  --background-dark: #11414f;
  --white-color: #fff;
  --white-color-light: #f5f1eb;
  --black-color: #000;
  --gray-color: #808080;
  --bg-dark: #021f1b;
  --text-muted: #b6c4c2;
  --herbal-green: #0f3d2e;
  --max-width: 1400px;
  --radius-pill: 999px;
}

*,
body,
nav,
div,
section,
h1,
h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, a{
  font-family: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
}

p, ul, li {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 400 !important;
}

body {
  /* font-family: "Roboto Flex"; */
  height: auto !important;
  width: 100% !important;

  background-color: #fff;
  /* color: var(--primary-color); */

  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden;
  font-weight: 500;
}


body a, a:hover, a:focus, a:active {
  text-decoration: none !important;
  font-weight: 500 !important;
}

main {
  position: relative !important;
  min-height: 100vh !important;
  height: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

a {
  text-decoration: none;
  color: #fff;
}

body {
  font-family:
    "Josefin Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--white-color);
}

.home-page {
  background-color: var(--bg-dark);
}

.container {
  width: 95%;
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.main-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 10;
  padding: 1.75rem 0;
}

.main-header .container {
  max-width: 1400px !important;
  width: 95% !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 110px;
  width: auto;
  display: block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #46f7b1, var(--primary-color));
  color: var(--white-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.logo-mark i {
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-left: 10px;
}

.logo-text p{
  font-size: 1rem;
  font-family: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  text-transform: uppercase;
}

p.logo-text-primary {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 400 !important;
  margin-bottom: 2px;
}

p.logo-text-small {
  font-size: 13px !important;
  font-weight: 300;
  color: var(--text-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  margin-bottom: -1rem;
}

.nav-link {
  color: var(--white-color);
  opacity: 0.8;
  position: relative;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary-color);
  transition: width 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-arrow {
  font-size: 0.55rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0rem;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  padding: 1rem 0rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.35rem 1.25rem;
  font-size: 0.9rem;
  color: #1a1a1a !important;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item:hover {
  background-color: #f3f4f6;
  color: var(--primary-color) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions a {
  text-transform: capitalize;
}

@media (max-width: 520px) {
  .main-header {
    padding: 1rem 0;
  }

  .logo-image {
    height: 90px;
    width: auto;
    display: block;
  }
  
}

/*  =========================Mobile Nav=============================*/

/* ============================================== HOME MOBILE NAV ============================================== */
.home-mobile-nav-toggle {
  display: none;
}

.home-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9998;
}

.home-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  background: rgba(2, 31, 27, 0.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 1rem 1.25rem;
  box-sizing: border-box;
}

.home-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.home-mobile-nav-title {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.home-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 0;
  overflow: auto;
  width: 100%;
}

.home-mobile-nav-link,
.home-mobile-nav-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
  font-size: 1rem;
}

.home-mobile-nav-link:hover,
.home-mobile-nav-summary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-mobile-nav-group {
  border-radius: 14px;
}

.home-mobile-nav-group > summary {
  list-style: none;
  cursor: pointer;
}

.home-mobile-nav-group > summary::-webkit-details-marker {
  display: none;
}

.home-mobile-nav-summary i {
  font-size: 0.85rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.home-mobile-nav-group[open] .home-mobile-nav-summary i {
  transform: rotate(180deg);
}

.home-mobile-nav-sub {
  padding: 0.25rem 0.1rem 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.home-mobile-nav-sublink {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.home-mobile-nav-sublink:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-mobile-nav-cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  overflow: hidden;
}

.home-mobile-nav-cta-btn {
  width: 100%;
}

body.home-mobile-nav-open {
  overflow: hidden;
}

body.home-mobile-nav-open .home-mobile-nav {
  transform: translateX(0);
}

body.home-mobile-nav-open .home-mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .home-page .primary-nav {
    display: none;
  }

  .home-page .header-actions > a.btn {
    display: none;
  }

  .home-mobile-nav-toggle {
    display: inline-flex;
  }
}


/* ====================================BUTTONS==================================================================================== */

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white-color);
  cursor: pointer;
  padding: 0;
}

.icon-button i {
  font-size: 0.95rem;
}

/* ================================MOBILE NAV (SITE-WIDE)============================================= */
.mobile-nav-toggle {
  display: none;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9998;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: rgba(2, 31, 27, 0.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.25rem;
  box-sizing: border-box;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-title {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 0;
  overflow: auto;
}

.mobile-nav-link,
.mobile-nav-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
  font-size: 1rem;
}

.mobile-nav-link:hover,
.mobile-nav-summary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.mobile-nav-group {
  border-radius: 14px;
}

.mobile-nav-group > summary {
  list-style: none;
  cursor: pointer;
}

.mobile-nav-group > summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-summary i {
  font-size: 0.85rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.mobile-nav-group[open] .mobile-nav-summary i {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  padding: 0.25rem 0.1rem 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.mobile-nav-sublink {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.mobile-nav-sublink:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-cta-btn {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav {
  transform: translateX(0);
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .header-actions > a.btn {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 13px 1.75rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box !important;
}

.btn-primary {
  background: transparent;
  color: var(--white-color);
  border: 1px solid transparent;
  transition: background-color 0.2s ease;
  position: relative;
  z-index: 11;
  overflow: hidden;
}

.btn-primary:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  transition: opacity 0.3s ease;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-pill);
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.5s ease;
}

.btn-primary:hover:before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.btn-primary > * {
  position: relative !important;
  z-index: 15 !important;
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--black-color);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-ghost {
  background: transparent;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.32);
  position: relative;
  z-index: 11;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-ghost > * {
  position: relative;
  z-index: 15;
}

.btn-ghost:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  transition: opacity 0.3s ease;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-pill);
  z-index: 10;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-ghost:hover:before {
  transform: translateX(0);
}

.btn-ghost:hover {
  border: 1px solid transparent;
}

@media (max-width: 9768px) {
  .btn {
    max-width: fit-content !important;
    box-sizing: border-box !important;
  }

  .home-mobile-nav-cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* ================================FOOTER============================================= */

.site-footer {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
}

.footer-brand {
  width: 30%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 150px;
  width: auto;
  display: block;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.footer-social-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
}

.footer-column-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 3rem;
  width: 70%;
}

.footer-column-group .footer-column {
  width: 33.33%;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.95rem;
}

.footer-link {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--secondary-color);
}

.footer-contact {
  max-width: 220px;
}

.footer-contact-line {
  font-size: 0.9rem;
  color: var(--white-color);
  margin-bottom: 0.65rem;
}

.footer-contact-social {
  margin-top: 1.5rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: space-between; */
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  display: none !important;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 820px) {
  .footer-inner {
    flex-direction: column;
    gap: 2.25rem;
    align-items: stretch;
  }

  .footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo img {
    height: 120px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column-group {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }

  .footer-column-group .footer-column {
    width: 100%;
  }

  .footer-contact {
    max-width: none;
  }

  .footer-heading {
    margin-bottom: 0.75rem;
  }

  .footer-link {
    margin-bottom: 0.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding-top: 3rem;
  }

  .footer-logo {
    width: 80vw;
    margin: 0 auto;
  }

  .footer-logo img {
    height: auto;
    width: 100%;
    margin-right: auto;
  }

  .footer-column-group {
    gap: 1.5rem;
    width: 80vw;
    margin: 0 auto;
  }

  .footer-social {
    justify-content:flex-start;
  }

  .footer-bottom {
    padding: 1rem 0 1.75rem;
  }
}

/* ======================CTA section =======================*/

.cta {
  position: relative;
  padding: 2rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: var(--white-color);
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.about-page .cta { 
  background-position: 0% 30%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: #101410;
  opacity: 0.9;
}

.cta-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.cta-pill-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
}

.cta-content {
  width: calc(100% - 300px);
  max-width: 700px;
}

.cta-heading {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw + 1rem, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 100%;
}

.cta .divider {
  width: 100%;
  max-width: 60%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.cta-heading-accent {
  font-style: italic;
  font-weight: 400;
}

.cta-text {
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 100%;
  margin: 0;
  color: #e9f1ef;
}

.cta-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.25rem;
}

.cta-info-block {
  min-width: 210px;
}

.cta-info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.55rem;
}

.cta-info-value {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #ffffff;
}

.cta-info-accent {
  font-weight: 600;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
  margin-top: 2.2rem;
}

/* .cta-primary-btn {
  background-color: var(--secondary-color);
  color: var(--black-color);
} */

.cta-phone-btn {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(0, 0, 0, 0.35);
}

.cta-phone-btn i {
  font-size: 0.9rem;
}

.cta-contact-badge {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0rem;
  box-sizing: border-box;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
}
}

.cta-contact-badge img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  animation: cir36 12s linear infinite;
}

.cta-contact-text {
  position: relative;
  z-index: 2;
}

.cta-contact-badge i {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 1rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 0.5rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cta-contact-badge:hover i {
  transform: translate(-50%, -50%) rotate(-0deg) scale(1.2);
}

@media (max-width: 768px) {
  .cta {
    padding: 4rem 0;
    min-height: auto;
  }

  .cta-inner.container {
    padding: 0 1rem;
  }

  .cta-main-row {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .cta-content {
    width: 100%;
    max-width: 100%;
  }

  .cta .divider {
    max-width: 220px;
  }

  .cta-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cta-actions .btn {
    width: min(520px, 100%);
    max-width: 100%;
    justify-content: center;
  }

  .cta-info-grid {
    gap: 1.5rem;
  }

  .cta-info-block {
    min-width: 0;
    width: 100%;
  }

  .cta-contact-badge {
    align-self: center;
    margin-top: 2rem;
    width: 120px;
    height: 120px;
  }

  .cta-actions a {
    max-width: 100% !important;
  }
}

.hero-title {
  font-size: clamp(2.7rem, 4vw, 3.5rem) !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
  color: var(--text-muted) !important;
  max-width: 700px !important;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.05rem, 7vw, 2.6rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5rem !important;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 0.95rem !important;
    max-width: 36rem !important;
    text-align: center;
  }
}
