@import url('https://fonts.googleapis.com/css2?family=Basic&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&display=swap');

html{
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0%;
}

h1 {
    font-family: Manrope;
    font-weight: 800;
    font-style: normal;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: -0.04em;
   
}

h2 {
    font-family: Manrope;
    font-weight: 800;
    font-style: normal;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

h3 {
    font-family: Manrope;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 1.2;        /* 120% */
    letter-spacing: -0.02em; /* -2% */
}


p {
    font-family: Manrope;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;       /* 160% */
    letter-spacing: 0;      /* 0% is invalid */
}

a {
     font-family: Manrope;
}
section {
    padding: 100px 0;
}

.btn-view-all {
    padding: 14px 22px;
    border-radius: 999px;
    background: #ff6b6b;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;        /* 100% */
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.08em; /* 8% */
}


.btn-view-all:hover {
    background: #fff;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    transform: scale(1.1);
}

/* ===============================
   HEADER (DESKTOP)
================================ */
.site-header {
    position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 1000;
}

.header-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-inner > a:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo img { height:44px; }

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border-radius: 999px;
    backdrop-filter: blur(6.1px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 2px solid #FFFFFF;
    font-family: Manrope;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-align: right;
    text-transform: uppercase;
}

.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}


.btn-primary-pill {
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    font-size:14px;
    font-weight: 600;
    border-radius:999px;
    background:#ff6b6b;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    transition:transform .3s;
    text-transform: uppercase;
}
.btn-primary-pill:hover { transform:scale(1.05); }

/* ===============================
   STICKY NAV (DESKTOP)
================================ */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top: 16px;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.nav-pill {
    background: #FFFFFFD9;
    border-radius: 92px;
    padding: 5px 8px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0px 3px 31.9px 6px #0000001A;
    backdrop-filter: blur(16.799999237060547px);
}

.nav-pill a {
    padding:6px 14px;
    border-radius:999px;
    font-size:16px;
    text-decoration:none;
    color:#111;
}
.nav-pill a:hover {
    background:rgba(0,0,0,.08);
}

/* ===============================
   MOBILE HEADER
================================ */
.mobile-header {
    position:fixed;
    top:16px;
    inset-x:16px;
    z-index:2000;
    background:#fff;
    border-radius:999px;
    padding:10px 16px;
    display:none;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}


.check-list-cicle {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.check-list-cicle li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    font-family: Manrope;
}

.check-list-cicle li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #FF6868;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  }


/* ===============================
   MOBILE MENU
================================ */
.mobile-menu {
    position:fixed;
    inset:0;
    background:#ffefef;
    transform:translateX(-100%);
    transition:.35s ease;
    z-index:3000;
}
.mobile-menu.active { transform:translateX(0); }

.mobile-menu header {
    display:flex;
    justify-content:space-between;
    padding:18px;
    border-bottom:1px solid #ddd;
}

/* ===============================
   RESPONSIVE VISIBILITY FIX
================================ */

/* ===============================
   MOBILE HEADER
================================ */

.mobile-header {
    position: fixed;
    top: 14px;
    left: 14px;
    right: 14px;

    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;

    display: none;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 4000;
}

.mobile-menu-btn {
    border: 1px solid #ddd;
    background: transparent;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
}

/* ===============================
   MOBILE MENU
================================ */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffefef;

    transform: translateX(-100%);
    transition: transform .35s ease;

    z-index: 5000;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #ddd;
}

.close-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
}

.mobile-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    text-decoration: none;
    color: #111;
    padding: 14px 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    font-family: 'Manrope';
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-cta {
    margin-top: auto;
    padding: 20px;
}


/* Mobile only (<768px) */
@media (max-width: 767px) {
    .site-header,
    .sticky-nav {
        display: none !important;
    }

    .mobile-header {
        display: flex;
    }
}


/* ===============================
   RESPONSIVE VISIBILITY (FIXED)
================================ */

/* Desktop only (≥992px) */
@media (min-width: 992px) {
    .mobile-header,
    .mobile-menu {
        display: none !important;
    }
}

/* Mobile & Tablet (<992px) */
@media (max-width: 991px) {
    .site-header,
    .sticky-nav {
        display: none !important;
    }

    .mobile-header {
        display: flex;
    }
}

/* ===============================
   FOOTER BASE
================================ */

.site-footer {
    background: #fff;
    margin-top: 100px;
    position: relative;
}

/* ===============================
   TOP CTA AREA
================================ */

/* ===============================
   FOOTER TOP (FIGMA MATCH)
================================ */

.footer-top {
    background: #FF6868;
    padding: 0 0 42px 0;
    position: relative;
}

/* Layout */
.footer-top-inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 32px;
}

/* ===============================
   LOGO CUTOUT (KEY PART)
================================ */

.footer-logo-wrap {
   border-radius: 0 0 32px 0;
    --s: 24px;
    --d: 55px;
    background: #fff;
    padding: 26px 40px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -60px;
    border: var(--s) solid transparent;
    border-top-left-radius: var(--d);
    border-top-right-radius: var(--d);
    mask: radial-gradient(90% 90% at 0 0, transparent 99%, #000 102%) 1% calc(100% - var(--s)) / var(--s) var(--s) no-repeat, radial-gradient(90% 90% at 100% 0, transparent 99%, #000 102%) 99% calc(100% - var(--s)) / var(--s) var(--s) no-repeat, linear-gradient(#000 0 0) padding-box;
    z-index: 3;
    top: 70px;
    box-shadow: 0px -10px 11.9px 6px #0000001A;
}

.footer-logo-wrap img {
    height: 40px;
    margin-top: 20px;
}

/* ===============================
   CTA TEXT
================================ */

.footer-cta-text {
    color: #ffff;
    margin: 0;
    font-weight: 800;
    font-size: 35px;
    line-height: 120%;
    text-align: center;
}


/* ===============================
   CTA TEXT
================================ */

/* ===============================
   CTA BUTTON
================================ */

.footer-cta-btn {
    background: #fff;
    color: #ff6b6b;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;

    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.footer-cta-btn:hover {
    transform: scale(1.05);
    background-color: #ff6b6b;
    color: #fff;
}

.footer-cta-btn:hover::after {
    background-color: #fff;
}



/* ===============================
   MAIN FOOTER
================================ */

.footer-main {
    padding: 50px 0 50px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.footer-col h4 {
    letter-spacing: 1px;
    color: #ff6b6b;
    font-weight: 800;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 12.5%;
    text-decoration-skip-ink: auto;
    text-underline-offset: 4px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}

.footer-col li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #2b2b2b;
}

/* ===============================
   BOTTOM BAR (PILL)
================================ */

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    max-width: 1350px;
    margin: 0 auto;
    background: #2b2b2b;
    color: #fff;
    border-radius: 40px;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

/* ===============================
   FOOTER COLUMN ALIGNMENT FIX
================================ */

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Reserve space for heading (even if missing) */
.footer-col h4 {
    min-height: 22px;   /* SAME height everywhere */
    margin-bottom: 18px;
}

/* If h4 does not exist, create spacing automatically */
.footer-col:not(:has(h4))::before {
    content: "";
    display: block;
    min-height: 22px;
    margin-bottom: 18px;
}


/* ===============================
   HERO
================================ */
.hero {
    position:relative;
    height:60vh;
    overflow:hidden;
}
.page-template-page-home .hero {
    height:100vh;
}
.hero img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}


/* ===============================
   TOOLTIP CARD
================================ */
.hero-tooltip {
   --s: 50px;
    --d: 100px;
    position: absolute;
    bottom: -55px;
    left: 282px;
    max-width: 950px;
    padding: 32px;
    background: #fff;
    border: var(--s) solid transparent;
    border-top-left-radius: var(--d);
    border-top-right-radius: var(--d);
    mask: radial-gradient(90% 90% at 0 0, transparent 99%, #000 102%) 1% calc(100% - var(--s)) / var(--s) var(--s) no-repeat, radial-gradient(90% 90% at 100% 0, transparent 99%, #000 102%) 99% calc(100% - var(--s)) / var(--s) var(--s) no-repeat, linear-gradient(#000 0 0) padding-box;
    z-index: 5; }

.hero-tooltip h2 {
    font-size:32px;
    font-weight:700;
    margin-bottom:16px;
}
.hero-tooltip p {
    font-size:14px;
    color:#555;
}

.footer-ctext a {
        color: #fff;
    text-decoration: none;
}

.hero {
    position: relative;
    padding: 120px 0;
}

/* Image version */
.hero.has-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* No image fallback */
.hero.no-image {
    background: #E6D0D0;
}



/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .footer-cta {
        margin-left: 0;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo-block {
        position: static;
        margin: 0 auto 20px;
    }

    .footer-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .footer-top-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

    .footer-logo-wrap {
        margin: -60px auto 0;
        border-radius: 0 0 32px 32px;
    }

    .footer-cta-text {
        font-size: 22px;
    }
}


/* ===============================
   ABOUT SECTION
================================ */
/* Image wrapper */
.about-img {
  border-radius: 25px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   STICKY NAV – DEFAULT STATE
================================ */

.sticky-nav {
    position: relative;   /* normal flow on load */
    width: 100%;
    display: flex;
    justify-content: center;
    transition: transform 0.35s ease;
}

/* ===============================
   AFTER SCROLL (FIXED)
================================ */

.sticky-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateY(-120%);
}

/* Visible when scrolling up */
.sticky-nav.is-sticky.is-visible {
    transform: translateY(0);
}


@media (max-width: 993px) { 

.nav-pill a {
    font-size: 15px;
}

.btn-glass {
    font-size: 12px;
}
.btn-primary-pill {
    font-size: 11px;
}
h1 {
    font-size: 35px;
}

h2 {
    font-size: 28px;
}
.btn-view-all {
    font-size: 12px;
}

p {
    font-size: 14px;
}

h3 {
    font-size: 18px;
}

.footer-cta-text {
    font-size: 20px;
}
.footer-cta-btn {
    font-size: 12px;
}
.footer-col h4 {
    line-height: 2;
}
}

@media (max-width: 768px) {

    /* Section padding for mobile */
    section {
        padding: 50px 0;
    }

    .footer-logo-wrap img {
        margin-top: 0;
    }
    .footer-cta-btn {
    justify-content: center;
    width: 50%;
    margin: auto;
}

.footer-logo-wrap {
        margin: -60px auto 0;
        border-radius: 0 0 32px 32px;
        top: 0;
        border-radius: 40px;
        --s: 0;
        position: inherit;
    }

.hero-tooltip {
        left: 0;
    }
}

@media (max-width: 575px) { 

        h1 {
        font-size: 22px;
    }

 h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .footer-cta-btn {
        width: 100%;
    }

     .hero-tooltip {
        --s: 31px;
        --d: 56px;
        left: 0;
        bottom: -34px;
    }
    .hero {
    height: 100%;
}

.footer-bottom-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-bottom-inner {
    padding: 5px 10px;
    font-size: 12px;

}
.footer-wrapper {
    gap: 10px;
}
.footer-main {
    padding: 20px 0;
}
}

/* ===============================
   NAV WRAPPER
================================ */
.mega-wrapper {
  position: relative;
}

/* ===============================
   PARENT ITEM
================================ */
.mega-menu-parent {
  position: relative;
  padding-top: 6px;
}

/* ===============================
   MEGA PANEL (CENTERED)
================================ */
.mega-menu {
  position: absolute;
  top: 60px;
  left: 0;
  transform: translateX(0%);
  width: 960px;
  max-width: 1020px;
  background: #FFFFFF;
  backdrop-filter: blur(16px);
  border-radius: 19px;
  padding: 28px 35px;
  backdrop-filter: blur(16.799999237060547px);
    box-shadow: 0px 3px 31.9px 6px #0000001A;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 999;
}

/* SHOW MENU */
.mega-menu-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   GRID LAYOUT
================================ */
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}


/* ===============================
   LINKS
================================ */
.mega-menu-link {
  display: block;
  font-size: 15px;
  color: #2b2b2b;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: 0.2s ease;

}

a.mega-menu-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    padding: 10px 12px;
    border-radius: 12px;
}
a.mega-menu-link:hover { 
background: #FF68681C;
}
.mega-menu-link:hover {
  background: #f3f4f6;
}



.mobile-item {
  border-bottom: 1px solid #e5e5e5;
}

.mobile-link {
  padding: 14px 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    font-family: 'Manrope';
}

.mobile-submenu {
  display: none;
  padding-left: 10px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border: none;
  padding-left: 12px;
}

.active .mobile-submenu {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 10px;
}

.mobile-submenu a:hover {
  color: #ff5a5f;
}

/* arrow rotate */
.mobile-item.active .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: 0.3s;
}
