/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Nunito", system-ui, -apple-system, sans-serif;
  --heading-font: "Baloo 2", sans-serif;
  --nav-font: "Nunito", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #231F20;
  --heading-color: #231F20;
  --accent-color: #FF5108;
  --accent-deep: #E0440A;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --paper: #FFF6F0;
}

:root {
  --nav-color: #231F20;
  --nav-hover-color: #FF5108;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #231F20;
  --nav-dropdown-hover-color: #FF5108;
}

.light-background {
  --background-color: #FFF6F0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #231F20;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3a3435;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 600;
}

.rounded-30 {
  border-radius: 30px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 800;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255,255,255,0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
  font-weight: 700;
}

.header .header-container {
  background: var(--surface-color);
  padding: 6px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(255,81,8,0.10);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 4%);
}

.header .logo {
  line-height: 1;
  padding-left: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .logo img {
  max-height: 56px;
  margin-right: 4px;
}

.header .logo .wordmark {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.header .logo .wordmark .o { color: var(--accent-color); }

.header .logo .wordmark small {
  display: block;
  font-family: var(--nav-font);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #b09a8d;
  text-transform: uppercase;
  margin-top: 2px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 15px;
  padding: 10px 24px;
  margin: 0 0 0 24px;
  border-radius: 50px;
  transition: 0.3s;
  letter-spacing: -0.01em;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-deep);
}

@media (max-width: 1200px) {
  .header { padding-top: 10px; }
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 12px 10px 16px;
    border-radius: 12px;
  }
  .header .logo { order: 1; }
  .header .logo img { max-width: 44px; }
  .header .btn-getstarted {
    order: 2;
    margin: 0 8px 0 0;
    padding: 8px 16px;
    font-size: 14px;
  }
  .header .navmenu { order: 3; }
}

/*--------------------------------------------------------------
# Navigation — Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li { position: relative; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 14px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; }
  .navmenu li:last-child a { padding-right: 0; }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(255,81,8,0.12);
  }

  .navmenu .dropdown ul li { min-width: 200px; }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }

  .navmenu .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }
  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: -100%; visibility: visible; }
}

/*--------------------------------------------------------------
# Navigation — Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu { padding: 0; z-index: 9997; }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 8px 32px rgba(255,81,8,0.12);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-dropdown-hover-color); }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown > .dropdown-active { display: block; background-color: rgba(35,31,32,0.03); }

  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(35,31,32,0.85);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul { display: block; }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top { padding-top: 50px; }

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-weight: 700;
}

.footer .footer-links ul a:hover { color: var(--accent-color); }

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.footer .copyright p { margin-bottom: 0; font-weight: 700; }
.footer .credits { margin-top: 8px; font-size: 13px; font-weight: 600; }
.footer .credits a { color: var(--accent-color); }

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i { font-size: 24px; color: var(--contrast-color); line-height: 0; }
.scroll-top:hover { background-color: var(--accent-deep); color: var(--contrast-color); }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 66px; }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
}

.section-title p { margin-bottom: 0; font-weight: 600; }

/*--------------------------------------------------------------
# Trust Strip
--------------------------------------------------------------*/
.trust-strip {
  background: var(--accent-color);
  padding: 12px 0;
  overflow: hidden;
}

.trust-strip .trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-strip span {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.trust-strip .dot {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  line-height: 1;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 60px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent-color), transparent 93%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 97%) 50%,
    transparent 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 90% 10%,
    color-mix(in srgb, var(--accent-color), transparent 90%), transparent 40%);
  pointer-events: none;
}

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

.hero .hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero .hero-content h1 .accent-text { color: var(--accent-color); }

.hero .hero-content .lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 1.2rem;
}

.hero .company-badge i { font-size: 1.1rem; margin-right: 6px; }

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 2.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-family: var(--heading-font);
  font-size: 17px;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.hero .btn-primary:hover {
  background-color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.hero .btn-outline {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hero .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

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

.hero .price-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--accent-color);
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255,81,8,0.35);
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .price-badge .price-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hero .price-badge .price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 2px;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .hero .hero-content { text-align: center; margin-bottom: 2.5rem; }
  .hero .hero-content .hero-buttons { justify-content: center; }
  .hero .price-badge { display: none; }
}

/*--------------------------------------------------------------
# How It Works Steps
--------------------------------------------------------------*/
.how-it-works .step-card {
  text-align: center;
  padding: 32px 20px;
}

.how-it-works .step-num {
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.how-it-works .step-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.how-it-works .step-card p {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.55;
  margin: 0;
}

.how-it-works .step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 22px;
}

@media (max-width: 767px) {
  .how-it-works .step-connector { display: none; }
}

/*--------------------------------------------------------------
# Services / Why Cards
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 28px 26px;
  background: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.services .service-card:hover {
  box-shadow: 0 8px 28px rgba(255,81,8,0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card .icon {
  width: 56px;
  height: 56px;
  margin-right: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--accent-color);
  font-size: 26px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.services .service-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Pricing Card
--------------------------------------------------------------*/
.pricing .pricing-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 12px 36px rgba(255,81,8,0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .period { color: #fff; }

.pricing .pricing-card.popular .features-list li { color: #fff; }
.pricing .pricing-card.popular .features-list li i { color: rgba(255,255,255,0.85); }

.pricing .pricing-card.popular .btn-light {
  background: #fff;
  color: var(--accent-color);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(255,81,8,0.2);
  white-space: nowrap;
}

.pricing .pricing-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }

.pricing .pricing-card .price { margin-bottom: 1.2rem; }
.pricing .pricing-card .price .currency { font-size: 1.4rem; font-weight: 800; vertical-align: top; line-height: 1; }
.pricing .pricing-card .price .amount { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.pricing .pricing-card .price .period { font-size: 0.95rem; color: color-mix(in srgb, var(--default-color), transparent 40%); }

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.9rem;
  font-weight: 600;
  font-size: 14px;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  border-radius: 50px;
  font-size: 16px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: var(--accent-deep);
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px 24px;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.45;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 8px;
  font-weight: 800;
}

.faq .faq-container .faq-item h3:hover { color: var(--accent-color); }

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 { color: var(--accent-color); }

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle { transform: rotate(90deg); }

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p { color: var(--contrast-color); position: relative; z-index: 2; }

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 14px 42px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-family: var(--heading-font);
  font-size: 17px;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px; height: 300px;
  top: -100px; right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px; height: 200px;
  bottom: -50px; left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px; height: 150px;
  top: 20%; right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots-1 {
  width: 200px; height: 200px;
  top: -30px; left: 10%;
  opacity: 0.1;
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px; height: 150px;
  bottom: 20px; right: 15%;
  opacity: 0.15;
}

@keyframes shapes-float {
  0%, 100% { transform: scale(0.8) rotate(45deg) translateY(0); }
  50% { transform: scale(0.8) rotate(45deg) translateY(-20px); }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
}

.contact .info-box h3 { color: var(--contrast-color); font-size: 1.8rem; margin-bottom: 0.8rem; }
.contact .info-box p { opacity: 0.85; margin-bottom: 1.8rem; font-weight: 600; }
.contact .info-box a { color: var(--contrast-color); }

.contact .info-item { display: flex; gap: 1.2rem; margin-bottom: 1.8rem; }
.contact .info-item:last-child { margin-bottom: 0; }

.contact .info-item .icon-box {
  width: 3rem; height: 3rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 82%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i { font-size: 1.3rem; color: var(--contrast-color); }
.contact .info-item:hover .icon-box { background-color: color-mix(in srgb, var(--contrast-color), transparent 68%); }

.contact .info-item .content h4 { color: var(--contrast-color); font-size: 1.1rem; margin-bottom: 0.3rem; font-weight: 800; }
.contact .info-item .content p { margin-bottom: 0.2rem; font-size: 0.92rem; }

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact .contact-form h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.contact .contact-form p { color: color-mix(in srgb, var(--default-color), transparent 30%); margin-bottom: 0; font-weight: 600; }

@media (max-width: 992px) {
  .contact .info-box { padding: 1.8rem; }
  .contact .contact-form { padding: 1.8rem; }
}

/*--------------------------------------------------------------
# Page Title / Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 70px 0;
  text-align: center;
  position: relative;
}

.page-title h1 { font-size: 38px; font-weight: 800; margin-bottom: 10px; }

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0; margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.page-title .breadcrumbs ol li + li { padding-left: 10px; }
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Location switch (contact section)
--------------------------------------------------------------*/
.location-switch {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.location-btn {
  background-color: #fff;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.65rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-family: var(--heading-font);
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-btn.active,
.location-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Phase Banner
--------------------------------------------------------------*/
.phase-banner {
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.phase-banner a { color: #fff; text-decoration: underline; }

/*--------------------------------------------------------------
# Stats row
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 28px;
  text-align: center;
}

.stats .stats-item span {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 44px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  padding: 0; margin: 0;
  font-weight: 700;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.d-none { display: none !important; }

.map-wrapper iframe { border-radius: 20px; }