/*--------------------------------------------------------------
# TCP Global Variables and Base Styles
--------------------------------------------------------------*/
:root{
  --tcp-font: "Plus Jakarta Sans", sans-serif;

  --tcp-red: #e20935;
  --tcp-red-rgb: 226, 9, 53;
  --tcp-red-dark: #bd062b;
  --tcp-red-light: rgba(226, 9, 53, 0.10);

  --tcp-green: #01411c;
  --tcp-green-rgb: 1, 65, 28;
  --tcp-green-dark: #003316;
  --tcp-green-light: rgba(1, 65, 28, 0.10);

  --tcp-dark: #16171a;
  --tcp-gray: #727272;
  --tcp-white: #ffffff;
  --tcp-white-rgb: 255, 255, 255;
  --tcp-light: #f2edeb;
  --tcp-border: #e3dbd8;

  --tcp-shadow-sm: 0 8px 24px rgba(22, 23, 26, 0.07);
  --tcp-shadow: 0 14px 40px rgba(22, 23, 26, 0.10);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
  margin: 0;
  overflow-x: hidden;
  font-family: var(--tcp-font);
  color: var(--tcp-gray);
  background: var(--tcp-white);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.locked{
  overflow: hidden;
}

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

a,
a:hover,
a:focus,
a:visited{
  text-decoration: none;
}

a{
  color: var(--tcp-gray);
}

button,
input,
select,
textarea{
  font: inherit;
}

button,
a{
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6{
  margin: 0;
  color: var(--tcp-green);
  font-family: var(--tcp-font);
}

p,
dl,
ol,
ul{
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol{
  padding-left: 0;
}

::placeholder{
  color: inherit;
  opacity: 1;
}

.page-wrapper{
  position: relative;
  width: 100%;
  min-width: 300px;
  margin: 0 auto;
  overflow: hidden;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container{ max-width: 540px; }
}

@media (min-width: 768px) {
  .container{ max-width: 720px; }
}

@media (min-width: 992px) {
  .container{ max-width: 960px; }
}

@media (min-width: 1200px) {
  .container{ max-width: 1200px; }
}

.list-unstyled{
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Scroll to top */
.scroll-to-top{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tcp-red);
  text-align: center;
  box-shadow: var(--tcp-shadow-sm);
  transition: all 250ms ease;
}

.scroll-to-top i{
  position: relative;
  display: inline-block;
  color: var(--tcp-white);
  font-size: 18px;
  line-height: 50px;
  transform: none;
}

.scroll-to-top:hover{
  background: var(--tcp-green);
}

@media (max-width: 575px) {
  .scroll-to-top{
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .scroll-to-top i{
    line-height: 44px;
  }
}


/*--------------------------------------------------------------
# TCP Modern Header, Mobile Menu & Hero Slider
--------------------------------------------------------------*/

/* Duplicate sticky header clone disabled */


html,
body{
  overflow-x: hidden;
}

body.locked{
  overflow: hidden;
}

/* Clean list reset for header and mobile menu */
.tcp-header ul,
.tcp-header li,
.mobile-nav__content ul,
.mobile-nav__content li{
  list-style: none !important;
}

/*--------------------------------------------------------------
# Mobile Sticky WhatsApp Bar
--------------------------------------------------------------*/
.mobile-call-bar{
  display: none;
}

@media (max-width: 1199px) {
  .mobile-call-bar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--tcp-red);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    box-shadow: 0 8px 24px rgba(226, 9, 53, 0.25);
  }

  .mobile-call-bar a{
    color: var(--tcp-white) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
  }

  .mobile-call-bar i{
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .mobile-call-bar{
    height: 46px;
  }

  .mobile-call-bar a{
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Modern Desktop Header
--------------------------------------------------------------*/
.tcp-header{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--tcp-white);
  z-index: 999;
  box-shadow: 0 12px 34px rgba(22, 23, 26, 0.08);
}

.tcp-header__nav{
  position: relative;
  display: block;
  background: var(--tcp-white);
}

.tcp-header__inner{
  width: 100%;
  display: flex;
  align-items: stretch;
  background: var(--tcp-white);
}

.tcp-header__logo-box{
  width: 265px;
  min-width: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tcp-white);
  border-right: 1px solid var(--tcp-border);
  padding: 14px 24px;
}

.tcp-header__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tcp-header__logo img{
  width: 100%;
  max-width: 205px;
  height: auto;
  display: block;
}

.tcp-header__content{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tcp-header__top{
  min-height: 46px;
  background: var(--tcp-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(22, 23, 26, 0.05);
}

.tcp-header__contact,
.tcp-header__top-right,
.tcp-header__social,
.tcp-header__quick-links{
  display: flex;
  align-items: center;
}

.tcp-header__contact{
  gap: 22px;
  min-width: 0;
}

.tcp-header__contact a{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--tcp-gray);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  transition: all 250ms ease;
}

.tcp-header__contact a:hover{
  color: var(--tcp-red);
}

.tcp-header__contact i{
  color: var(--tcp-red);
  font-size: 15px;
}

.tcp-header__top-right{
  gap: 22px;
  flex-shrink: 0;
}

.tcp-header__social{
  gap: 9px;
}

.tcp-header__social a{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tcp-white);
  color: var(--tcp-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(22, 23, 26, 0.06);
  transition: all 250ms ease;
}

.tcp-header__social a:hover{
  background: var(--tcp-red);
  color: var(--tcp-white);
  transform: translateY(-2px);
}

.tcp-header__quick-links{
  gap: 16px;
}

.tcp-header__quick-links a{
  color: var(--tcp-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all 250ms ease;
}

.tcp-header__quick-links a:hover{
  color: var(--tcp-red);
}

.tcp-header__bottom{
  min-height: 76px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: var(--tcp-white);
}

.tcp-header__menu-box{
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: 26px;
}

.tcp-header .tcp-header__menu{
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tcp-header .tcp-header__menu > li{
  position: relative !important;
  margin: 0 !important;
  padding: 29px 0 !important;
}

.tcp-header .tcp-header__menu > li + li{
  margin-left: 0 !important;
}

.tcp-header .tcp-header__menu > li > a{
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  color: var(--tcp-dark) !important;
  font-size: 15.5px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  transition: all 250ms ease !important;
  text-shadow: none !important;
}

.tcp-header .tcp-header__menu > li > a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: var(--tcp-red);
  border-radius: 20px;
  transition: all 250ms ease;
}

.tcp-header .tcp-header__menu > li:hover > a,
.tcp-header .tcp-header__menu > li.current > a{
  color: var(--tcp-red) !important;
}

.tcp-header .tcp-header__menu > li:hover > a::after,
.tcp-header .tcp-header__menu > li.current > a::after{
  width: 100%;
}

.tcp-header .tcp-header__menu > li.tcp-menu-dropdown > a::before{
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 7px;
  font-size: 11px;
  color: var(--tcp-red);
  order: 2;
}

/* Desktop dropdown */
.tcp-header .tcp-header__menu > li > ul{
  display: block !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 320px !important;
  min-width: 320px !important;
  background: var(--tcp-white) !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(14px) !important;
  transition: all 250ms ease !important;
  box-shadow: 0 22px 55px rgba(22, 23, 26, 0.14) !important;
  border: 1px solid rgba(227, 219, 216, 0.70) !important;
  border-top: 3px solid var(--tcp-red) !important;
  border-radius: 0 0 14px 14px !important;
  z-index: 9999 !important;
}

.tcp-header .tcp-header__menu > li:hover > ul{
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.tcp-header .tcp-header__menu > li > ul > li{
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

.tcp-header .tcp-header__menu > li > ul > li > a{
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 12px 22px !important;
  background: var(--tcp-white) !important;
  color: var(--tcp-gray) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  border-bottom: 1px solid rgba(227, 219, 216, 0.65) !important;
  transition: all 250ms ease !important;
}

.tcp-header .tcp-header__menu > li > ul > li:last-child > a{
  border-bottom: none !important;
}

.tcp-header .tcp-header__menu > li > ul > li > a:hover{
  background: rgba(226, 9, 53, 0.07) !important;
  color: var(--tcp-red) !important;
  padding-left: 28px !important;
}

/* Appointment button */
.tcp-header__cta{
  width: 245px;
  min-width: 245px;
  display: flex;
  align-items: stretch;
}

.tcp-header__cta a{
  width: 100%;
  background: var(--tcp-red);
  color: var(--tcp-white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  transition: all 250ms ease;
}

.tcp-header__cta a:hover{
  background: var(--tcp-green-dark);
  color: var(--tcp-white) !important;
}

.tcp-header__menu-toggle{
  display: none;
}

/*--------------------------------------------------------------
# Header Responsive
--------------------------------------------------------------*/
@media (max-width: 1599px) {
  .tcp-header__logo-box{
    width: 270px;
    min-width: 270px;
    padding: 13px 22px;
  }

  .tcp-header__logo img{
    max-width: 170px;
  }

  .tcp-header__top{
    padding: 0 24px;
  }

  .tcp-header__menu-box{
    padding-left: 24px;
  }

  .tcp-header .tcp-header__menu{
    gap: 20px !important;
  }

  .tcp-header__cta{
    width: 225px;
    min-width: 225px;
  }
}

@media (max-width: 1399px) {
  .tcp-header__logo-box{
    width: 235px;
    min-width: 235px;
  }

  .tcp-header__logo img{
    max-width: 185px;
  }

  .tcp-header__contact{
    gap: 16px;
  }

  .tcp-header__contact a,
.tcp-header__quick-links a{
    font-size: 13px;
  }

  .tcp-header .tcp-header__menu{
    gap: 15px !important;
  }

  .tcp-header .tcp-header__menu > li > a{
    font-size: 14px !important;
  }

  .tcp-header__cta{
    width: 205px;
    min-width: 205px;
  }

  .tcp-header__cta a{
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .tcp-header{
    position: relative;
    margin-top: 48px;
    z-index: 999;
  }

  .tcp-header__inner{
    min-height: 82px;
    align-items: center;
  }

  .tcp-header__logo-box{
    width: auto;
    min-width: 0;
    flex: 1;
    justify-content: flex-start;
    border-right: none;
    padding: 14px 18px;
  }

  .tcp-header__logo img{
    max-width: 175px;
  }

  .tcp-header__content{
    flex: initial;
  }

  .tcp-header__top{
    display: none !important;
  }

  .tcp-header__bottom{
    min-height: 82px;
    align-items: center;
  }

  .tcp-header__menu-box{
    padding: 0 18px 0 0;
  }

  .tcp-header .tcp-header__menu{
    display: none !important;
  }

  .tcp-header__cta{
    display: none !important;
  }

  .tcp-header__menu-toggle,
.tcp-header .mobile-nav__toggler{
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--tcp-red);
    color: var(--tcp-white);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(226, 9, 53, 0.24);
  }

  .tcp-header .mobile-nav__toggler:hover{
    color: var(--tcp-white);
  }
}

@media (max-width: 575px) {
  .tcp-header{
    margin-top: 46px;
  }

  .tcp-header__inner,
.tcp-header__bottom{
    min-height: 76px;
  }

  .tcp-header__logo img{
    max-width: 158px;
  }

  .tcp-header__menu-toggle,
.tcp-header .mobile-nav__toggler{
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Mobile Offcanvas Menu
--------------------------------------------------------------*/
.mobile-nav__wrapper{
  display: block;
  position: fixed;
  top: 48px !important;
  left: 0;
  width: 100vw;
  height: calc(100vh - 48px) !important;
  z-index: 10001 !important;
  transform: translateX(-100%);
  transform-origin: left center;
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
}

.mobile-nav__wrapper.expanded{
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__overlay{
  position: absolute;
  inset: 0;
  background: #000000 !important;
  opacity: 0.65 !important;
  cursor: pointer;
}

.mobile-nav__content{
  width: min(390px, 88vw) !important;
  height: calc(100vh - 48px) !important;
  background: #101217 !important;
  z-index: 10;
  position: relative;
  overflow-y: auto;
  padding: 26px 18px 36px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.mobile-nav__wrapper.expanded .mobile-nav__content{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav__content .logo-box{
  margin-bottom: 22px !important;
  padding-right: 42px;
  display: flex;
  align-items: center;
}

.mobile-nav__content .logo-box img{
  max-width: 210px;
  height: auto;
}

.mobile-nav__close{
  position: absolute;
  top: 30px !important;
  right: 18px !important;
  color: var(--tcp-white) !important;
  font-size: 20px !important;
  cursor: pointer;
}

.mobile-nav__container{
  display: block !important;
  margin-top: 18px !important;
  margin-bottom: 22px !important;
  padding: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.mobile-nav__container .tcp-header__menu{
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.mobile-nav__container .tcp-header__menu > li{
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.mobile-nav__container .tcp-header__menu > li:last-child{
  border-bottom: none !important;
}

.mobile-nav__container .tcp-header__menu > li > a,
.mobile-nav__container .tcp-header__menu > li > ul > li > a,
.mobile-nav__container .tcp-header__menu > li > ul > li > ul > li > a{
  min-height: 48px !important;
  height: auto !important;
  color: var(--tcp-white) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: all 250ms ease !important;
}

.mobile-nav__container .tcp-header__menu > li > ul,
.mobile-nav__container .tcp-header__menu > li > ul > li > ul{
  display: none;
  margin: 0 !important;
  padding: 0 0 8px 14px !important;
  list-style: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.mobile-nav__container .tcp-header__menu > li > ul > li > a,
.mobile-nav__container .tcp-header__menu > li > ul > li > ul > li > a{
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  min-height: 42px !important;
}

.mobile-nav__container .tcp-header__menu li a:hover,
.mobile-nav__container .tcp-header__menu li a.expanded,
.mobile-nav__container .tcp-header__menu > li.open > a{
  color: var(--tcp-red) !important;
}

.mobile-nav__container .tcp-header__menu > li > a .mobile-dropdown-btn,
.mobile-nav__container .tcp-header__menu > li > a > button,
.mobile-nav__container .tcp-header__menu > li > ul > li > a > button{
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border: none !important;
  border-radius: 8px !important;
  background: var(--tcp-red) !important;
  color: var(--tcp-white) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin-left: 12px !important;
  font-size: 13px !important;
  transition: all 250ms ease !important;
}

.mobile-nav__container .tcp-header__menu > li > a .mobile-dropdown-btn.expanded,
.mobile-nav__container .tcp-header__menu > li > a > button.expanded,
.mobile-nav__container .tcp-header__menu > li > ul > li > a > button.expanded{
  background: var(--tcp-white) !important;
  color: var(--tcp-red) !important;
  transform: rotate(180deg);
}

.mobile-nav__contact{
  margin: 24px 0 !important;
  padding: 0 !important;
}

.mobile-nav__contact li{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: var(--tcp-white) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.mobile-nav__contact li + li{
  margin-top: 15px !important;
}

.mobile-nav__contact li i{
  width: 35px !important;
  height: 35px !important;
  min-width: 35px !important;
  border-radius: 50% !important;
  background: var(--tcp-red) !important;
  color: var(--tcp-white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  margin-right: 0 !important;
}

.mobile-nav__contact li a{
  color: var(--tcp-white) !important;
}

.mobile-nav__contact li a:hover{
  color: var(--tcp-red) !important;
}

.mobile-nav__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__social{
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
}

.mobile-nav__social a{
  color: var(--tcp-white) !important;
  font-size: 17px !important;
  margin-left: 0 !important;
  transition: all 250ms ease;
}

.mobile-nav__social a:hover{
  color: var(--tcp-red) !important;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login,
.mobile-nav__content .main-menu-border{
  display: none !important;
}

@media (max-width: 575px) {
  .mobile-nav__wrapper{
    top: 46px !important;
    height: calc(100vh - 46px) !important;
  }

  .mobile-nav__content{
    height: calc(100vh - 46px) !important;
    width: min(360px, 90vw) !important;
  }
}

/*--------------------------------------------------------------
# Modern Hero Slider
--------------------------------------------------------------*/
.tcp-hero{
  position: relative;
  background: #101217;
  overflow: hidden;
  z-index: 1;
}

.tcp-hero__slide{
  position: relative;
  min-height: 540px !important;
  height: 540px !important;
  padding: 70px 0 !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden;
  background: #101217;
  z-index: 1;
}

.tcp-hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -3;
}

.tcp-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 23, 0.92) 0%, rgba(16, 18, 23, 0.74) 45%, rgba(16, 18, 23, 0.38) 100%),
    radial-gradient(circle at 15% 30%, rgba(226, 9, 53, 0.25), transparent 34%);
  z-index: -2;
}

.tcp-hero .container{
  position: relative;
  z-index: 2;
}

.tcp-hero__content{
  position: relative;
  display: block;
  max-width: 720px !important;
  margin-left: 30px !important;
  text-align: left !important;
  z-index: 2;
}

.tcp-hero__tagline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tcp-white) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  margin: 0 0 14px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.tcp-hero__tagline::before{
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 30px;
  background: var(--tcp-red);
  display: inline-block;
}

.tcp-hero__title{
  color: var(--tcp-white) !important;
  font-size: 52px !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  margin: 0 0 18px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  max-width: 720px !important;
}

.tcp-hero__title span{
  display: block;
  color: var(--tcp-white);
  font-weight: 500 !important;
}

.tcp-hero__text{
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  font-weight: 500;
  margin: 0 0 22px !important;
}

.tcp-hero__points{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px !important;
  margin: 0 0 28px !important;
}

.tcp-hero__points span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px !important;
  padding: 8px 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: var(--tcp-white);
  font-size: 13px !important;
  line-height: 1;
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.tcp-hero__points i{
  color: var(--tcp-red);
  font-size: 15px;
}

.tcp-hero__btn-box{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.tcp-hero__btn{
  min-height: 52px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px !important;
  border-radius: 999px;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1;
  transition: all 250ms ease;
}

.tcp-hero__btn--primary{
  background: var(--tcp-red);
  color: var(--tcp-white) !important;
  box-shadow: 0 16px 34px rgba(226, 9, 53, 0.30);
}

.tcp-hero__btn--primary:hover{
  background: var(--tcp-white);
  color: var(--tcp-dark) !important;
}

.tcp-hero__btn--secondary{
  background: var(--tcp-white);
  color: var(--tcp-dark) !important;
}

.tcp-hero__btn--secondary:hover{
  background: var(--tcp-red);
  color: var(--tcp-white) !important;
}



/* Medium laptop */
@media (min-width: 1200px) and (max-width: 1399px) {
  .tcp-hero__slide{
    min-height: 500px !important;
    height: 500px !important;
    padding: 60px 0 !important;
  }

  .tcp-hero__content{
    max-width: 680px !important;
    margin-left: 28px !important;
  }

  .tcp-hero__title{
    font-size: 48px !important;
    line-height: 1.12 !important;
  }
}

/* Large desktop */
@media (min-width: 1600px) {
  .tcp-hero__slide{
    min-height: 580px !important;
    height: 580px !important;
    padding: 80px 0 !important;
  }

  .tcp-hero__title{
    font-size: 58px !important;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .tcp-hero__slide{
    min-height: 560px !important;
    height: auto !important;
    padding: 105px 0 90px !important;
  }

  .tcp-hero__content{
    max-width: 720px !important;
    margin-left: 0 !important;
  }

  .tcp-hero__title{
    font-size: clamp(38px, 7vw, 58px) !important;
    line-height: 1.15 !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .tcp-hero__slide{
    min-height: auto !important;
    height: auto !important;
    padding: 50px 0 60px !important;
  }

  .tcp-hero__overlay{
    background:
      linear-gradient(90deg, rgba(16, 18, 23, 0.94) 0%, rgba(16, 18, 23, 0.84) 62%, rgba(16, 18, 23, 0.62) 100%),
      radial-gradient(circle at 20% 20%, rgba(226, 9, 53, 0.24), transparent 36%);
  }

  .tcp-hero__content{
    max-width: 100% !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .tcp-hero__tagline{
    font-size: 12px !important;
    letter-spacing: 0.07em !important;
    margin-bottom: 14px !important;
  }

  .tcp-hero__tagline::before{
    width: 28px;
  }

  .tcp-hero__title{
    font-size: 36px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 16px !important;
  }

  .tcp-hero__text{
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }

  .tcp-hero__points{
    gap: 8px !important;
    margin-bottom: 26px !important;
  }

  .tcp-hero__points span{
    min-height: 36px !important;
    padding: 8px 11px !important;
    font-size: 12.5px !important;
  }

  .tcp-hero__btn-box{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .tcp-hero__btn{
    width: 100%;
    max-width: 310px;
    min-height: 54px !important;
    padding: 16px 22px !important;
  }
}

@media (max-width: 430px) {
  .tcp-hero__title{
    font-size: 32px !important;
  }

  .tcp-hero__btn{
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# TCP About Section
--------------------------------------------------------------*/

.tcp-about{
  position: relative;
  display: block;
  padding: 70px 0;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}

.tcp-about::before{
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 82, 49, 0.08);
  z-index: -1;
}

.tcp-about::after{
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(226, 9, 53, 0.08);
  z-index: -1;
}

.tcp-about__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.tcp-about__content{
  position: relative;
  display: block;
}

.tcp-section-title{
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.tcp-section-title__tagline{
  position: relative;
  display: inline-block;
  color: var(--tcp-gray);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 16px;
}

.tcp-section-title__tagline::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 3px;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--tcp-red), var(--tcp-green));
}

.tcp-section-title h2{
  margin: 20px 0 0;
  color: var(--tcp-green);
  font-size: 44px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.tcp-about__highlight{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.tcp-about__highlight-icon{
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 18px;
  background: var(--tcp-green-light);
  color: var(--tcp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.tcp-about__highlight h3{
  margin: 0;
  color: var(--tcp-red);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 750;
}

.tcp-about__text{
  max-width: 640px;
  color: var(--tcp-gray);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  margin: 0 0 26px;
}

.tcp-about__points{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tcp-about__points li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tcp-dark);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 750;
}

.tcp-about__points li i{
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--tcp-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.tcp-about__btn-box{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tcp-about__btn{
  min-height: 54px;
  padding: 17px 30px;
  border-radius: 999px;
  background: var(--tcp-red);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(226, 9, 53, 0.22);
  transition: all 300ms ease;
}

.tcp-about__btn:hover{
  background: var(--tcp-green);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.tcp-about__btn--outline{
  background: #ffffff;
  color: var(--tcp-green) !important;
  border: 1px solid rgba(0, 82, 49, 0.22);
  box-shadow: none;
}

.tcp-about__btn--outline:hover{
  background: var(--tcp-green);
  color: #ffffff !important;
}

.tcp-about__image-box{
  position: relative;
  display: block;
}

.tcp-about__image-card{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f7f7f7;
  box-shadow: 0 22px 55px rgba(22, 23, 26, 0.12);
}

.tcp-about__image-card img{
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet */
@media (max-width: 1199px) {
  .tcp-about__grid{
    gap: 38px;
  }

  .tcp-section-title h2{
    font-size: 38px;
  }

  .tcp-about__highlight h3{
    font-size: 21px;
  }
}

@media (max-width: 991px) {
  .tcp-about{
    padding: 60px 0;
  }

  .tcp-about__grid{
    grid-template-columns: 1fr;
  }

  .tcp-about__image-box{
    order: -1;
  }

  .tcp-about__image-card{
    max-width: 680px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tcp-about{
    padding: 50px 0;
  }

  .tcp-section-title h2{
    font-size: 30px;
    line-height: 1.3;
  }

  .tcp-about__highlight{
    align-items: flex-start;
  }

  .tcp-about__highlight-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 15px;
    font-size: 22px;
  }

  .tcp-about__highlight h3{
    font-size: 19px;
  }

  .tcp-about__text{
    font-size: 15px;
    line-height: 1.75;
  }

  .tcp-about__points{
    grid-template-columns: 1fr;
  }

  .tcp-about__btn-box{
    flex-direction: column;
    align-items: flex-start;
  }

  .tcp-about__btn{
    width: 100%;
    max-width: 310px;
  }

  .tcp-about__image-card{
    border-radius: 20px;
  }

}

/* =========================================================
   TCP Legal & Company Trust
   ========================================================= */

.tcp-trust {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(20, 122, 74, 0.08), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(214, 40, 40, 0.06), transparent 30%),
        #f7f9f8;
}

.tcp-trust *,
.tcp-trust *::before,
.tcp-trust *::after {
    box-sizing: border-box;
}

/* ---------------------------------
   Shared Eyebrow
   --------------------------------- */

.tcp-trust__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #147a4a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.tcp-trust__eyebrow::before {
    width: 28px;
    height: 2px;
    background: #d62828;
    content: "";
}

/* ---------------------------------
   Legal Support Card
   --------------------------------- */

.tcp-trust__legal {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 30px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 46px;
    overflow: hidden;
    border: 1px solid rgba(20, 122, 74, 0.16);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(20, 122, 74, 0.035), transparent 45%),
        #ffffff;
    box-shadow: 0 22px 58px rgba(18, 50, 39, 0.1);
}

.tcp-trust__legal::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, #147a4a, #d62828);
    content: "";
}

.tcp-trust__legal::after {
    position: absolute;
    right: -75px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(20, 122, 74, 0.06);
    content: "";
}

.tcp-trust__legal-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(145deg, #147a4a, #0f603a);
    color: #ffffff;
    font-size: 31px;
    box-shadow: 0 14px 30px rgba(20, 122, 74, 0.25);
}

.tcp-trust__legal-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.tcp-trust__legal-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 15px;
}

.tcp-trust__legal-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(20, 122, 74, 0.16);
    border-radius: 999px;
    background: rgba(20, 122, 74, 0.08);
    color: #147a4a;
    font-size: 12px;
    font-weight: 800;
}

.tcp-trust__legal h2,
.tcp-trust__company h2 {
    margin: 0;
    color: #14231d;
    font-size: clamp(30px, 3.7vw, 46px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.tcp-trust__legal h2 {
    max-width: 850px;
    margin-bottom: 19px;
}

.tcp-trust__legal p {
    max-width: 900px;
    margin: 0;
    color: #5e6964;
    font-size: 16px;
    line-height: 1.85;
}

.tcp-trust__legal p + p {
    margin-top: 13px;
}

.tcp-trust__legal strong {
    color: #14231d;
    font-weight: 800;
}

.tcp-trust__legal-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.tcp-trust__legal-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid #e1e9e5;
    border-radius: 10px;
    background: #f8fbf9;
    color: #34423c;
    font-size: 13px;
    font-weight: 700;
}

.tcp-trust__legal-points i {
    color: #147a4a;
}

/* ---------------------------------
   Company Trust Area
   --------------------------------- */

.tcp-trust__company {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
    gap: 44px;
    align-items: stretch;
    margin-top: 42px;
    padding: 48px;
    border-radius: 28px;
    background: #14231d;
    box-shadow: 0 24px 65px rgba(18, 50, 39, 0.18);
}

.tcp-trust__company .tcp-trust__eyebrow {
    margin-bottom: 14px;
    color: #54c98a;
}

.tcp-trust__company h2 {
    max-width: 790px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(29px, 3.2vw, 44px);
}

.tcp-trust__company-content > p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.85;
}

.tcp-trust__company-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tcp-trust__company-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.tcp-trust__company-points i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: #54c98a;
}

.tcp-trust__company-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.tcp-trust__company-logo {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 18px;
    background: #ffffff;
    color: #147a4a;
    font-size: 25px;
}

.tcp-trust__company-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.25;
}

.tcp-trust__company-card p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

.tcp-trust__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 20px;
    border-radius: 12px;
    background: #25d366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tcp-trust__btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 13px 28px rgba(37, 211, 102, 0.25);
}

.tcp-trust__website {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.tcp-trust__website:hover {
    color: #54c98a;
}

/* ---------------------------------
   Responsive
   --------------------------------- */

@media (max-width: 1199px) {
    .tcp-trust {
        padding: 85px 0;
    }

    .tcp-trust__company {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .tcp-trust__company-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tcp-trust {
        padding: 65px 0;
    }

    .tcp-trust__legal {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 34px 25px;
        border-radius: 22px;
    }

    .tcp-trust__legal-icon {
        width: 68px;
        height: 68px;
        border-radius: 18px;
        font-size: 25px;
    }

    .tcp-trust__legal-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .tcp-trust__legal h2 {
        font-size: 31px;
    }

    .tcp-trust__legal p {
        font-size: 15px;
        line-height: 1.75;
    }

    .tcp-trust__legal-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tcp-trust__company {
        gap: 34px;
        padding: 32px 24px;
        border-radius: 23px;
    }

    .tcp-trust__company-card {
        padding: 27px 21px;
    }
}

@media (max-width: 479px) {
    .tcp-trust__legal {
        padding: 30px 19px;
    }

    .tcp-trust__legal h2 {
        font-size: 27px;
    }

    .tcp-trust__company {
        padding: 27px 18px;
    }

    .tcp-trust__company-card h3 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tcp-trust__btn {
        transition: none;
    }
}

/*--------------------------------------------------------------
# TCP Services Section
--------------------------------------------------------------*/

.tcp-services{
  position: relative;
  display: block;
  padding: 60px 0 60px;
  background:
    radial-gradient(circle at 10% 10%, rgba(1, 65, 28, 0.08), transparent 28%),
    radial-gradient(circle at 90% 5%, rgba(226, 9, 53, 0.07), transparent 30%),
    linear-gradient(180deg, #f7f2f0 0%, #ffffff 100%);
  overflow: hidden;
  z-index: 1;
}

.tcp-services::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%);
  background-size: 90px 90px;
  opacity: 0.22;
  z-index: -1;
}

.tcp-services__top{
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 45px;
}

.tcp-services__heading{
  position: relative;
  display: block;
}

.tcp-services__tagline{
  position: relative;
  display: inline-block;
  color: var(--tcp-gray, #727272);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.tcp-services__tagline::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
}

.tcp-services__heading h2{
  margin: 0;
  color: var(--tcp-green, #01411c);
  font-size: 44px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.tcp-services__intro{
  margin: 0;
  max-width: 650px;
  color: var(--tcp-gray, #727272);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

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

.tcp-service-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(227, 219, 216, 0.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(22, 23, 26, 0.07);
  transition: all 300ms ease;
}

.tcp-service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(1, 65, 28, 0.20);
  box-shadow: 0 22px 55px rgba(22, 23, 26, 0.12);
}

.tcp-service-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
  z-index: 2;
}

.tcp-service-card__image{
  position: relative;
  display: block;
  height: 185px;
  overflow: hidden;
  background: #f2edeb;
}

.tcp-service-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 450ms ease;
}

.tcp-service-card:hover .tcp-service-card__image img{
  transform: scale(1.06);
}

.tcp-service-card__image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(1, 65, 28, 0.24) 100%);
}

.tcp-service-card__content{
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px 24px 24px;
  text-align: left;
}

.tcp-service-card__icon{
  position: absolute;
  top: -28px;
  left: 24px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--tcp-red, #e20935);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 24px rgba(226, 9, 53, 0.22);
  transition: all 300ms ease;
}

.tcp-service-card:hover .tcp-service-card__icon{
  background: var(--tcp-green, #01411c);
  box-shadow: 0 12px 24px rgba(1, 65, 28, 0.22);
}

.tcp-service-card h3{
  margin: 8px 0 14px;
  color: var(--tcp-green, #01411c);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.tcp-service-card h3 a{
  color: inherit;
  transition: all 250ms ease;
}

.tcp-service-card h3 a:hover{
  color: var(--tcp-red, #e20935);
}

.tcp-service-card p{
  margin: 0 0 20px;
  color: var(--tcp-gray, #727272);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.tcp-service-card__link{
  margin-top: auto;
  color: var(--tcp-green, #01411c);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 250ms ease;
}

.tcp-service-card__link i{
  font-size: 12px;
  transition: transform 250ms ease;
}

.tcp-service-card__link:hover{
  color: var(--tcp-red, #e20935);
}

.tcp-service-card__link:hover i{
  transform: translateX(4px);
}

/* Laptop / normal desktop: 3 cards */
@media (max-width: 1399px) {
  .tcp-services__grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .tcp-services__heading h2{
    font-size: 40px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .tcp-services{
    padding: 60px 0 65px;
  }

  .tcp-services__top{
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 35px;
  }

  .tcp-services__heading h2{
    font-size: 34px;
  }

  .tcp-services__intro{
    font-size: 16px;
    line-height: 1.75;
  }

  .tcp-services__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tcp-services{
    padding: 40px 0 45px;
  }

  .tcp-services__tagline{
    font-size: 12px;
    letter-spacing: 0.10em;
  }

  .tcp-services__heading h2{
    font-size: 29px;
    line-height: 1.3;
  }

  .tcp-services__intro{
    font-size: 15px;
  }

  .tcp-services__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tcp-service-card{
    border-radius: 18px;
  }

  .tcp-service-card__image{
    height: 205px;
  }

  .tcp-service-card__content{
    padding: 34px 22px 24px;
  }

  .tcp-service-card h3{
    font-size: 20px;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .tcp-service-card__image{
    height: 185px;
  }

  .tcp-service-card h3{
    font-size: 19px;
  }

  .tcp-service-card p{
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# TCP Property Section
--------------------------------------------------------------*/

.tcp-property{
  position: relative;
  display: block;
  padding: 60px 0 60px;
  background:
      radial-gradient(circle at 0% 8%, rgba(1, 65, 28, 0.14), transparent 34%),
      radial-gradient(circle at 100% 5%, rgba(226, 9, 53, 0.12), transparent 34%),
      linear-gradient(180deg, #f4eeeb 0%, #ffffff 44%, #f5efec 100%) !important;
  overflow: hidden;
  z-index: 1;
}

.tcp-property::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%);
  background-size: 90px 90px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.tcp-property__header{
  max-width: 1080px;
  margin: 0 auto 45px;
  text-align: center;
}

.tcp-property__tagline{
  position: relative;
  display: inline-block;
  color: var(--tcp-gray, #727272);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.tcp-property__tagline::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
  transform: translateX(-50%);
}

.tcp-property__header h2{
  margin: 0 0 16px;
  color: var(--tcp-green, #01411c);
  font-size: 44px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.tcp-property__header p{
  max-width: 1040px;
  margin: 0 auto;
  color: var(--tcp-gray, #727272);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

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

.tcp-property-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(227, 219, 216, 0.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(22, 23, 26, 0.07);
  transition: all 300ms ease;
}

.tcp-property-card:hover{
  transform: translateY(-8px);
  border-color: rgba(1, 65, 28, 0.22);
  box-shadow: 0 22px 55px rgba(22, 23, 26, 0.12);
}

.tcp-property-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
  z-index: 2;
}

.tcp-property-card__image{
  display: block;
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f2edeb;
}

.tcp-property-card__image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
  transition: transform 450ms ease;
}

.tcp-property-card:hover .tcp-property-card__image img{
  transform: scale(1.04);
}

.tcp-property-card__content{
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
  text-align: center;
}

.tcp-property-card h3{
  margin: 0 0 12px;
  color: var(--tcp-green, #01411c);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.tcp-property-card h3 a{
  color: inherit;
  transition: all 250ms ease;
}

.tcp-property-card h3 a:hover{
  color: var(--tcp-red, #e20935);
}

.tcp-property-card p{
  margin: 0 0 18px;
  color: var(--tcp-gray, #727272);
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 500;
}

.tcp-property-card__link{
  margin-top: auto;
  color: var(--tcp-green, #01411c);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 250ms ease;
}

.tcp-property-card__link i{
  font-size: 12px;
  transition: transform 250ms ease;
}

.tcp-property-card__link:hover{
  color: var(--tcp-red, #e20935);
}

.tcp-property-card__link:hover i{
  transform: translateX(4px);
}

/* Laptop / Normal Desktop */
@media (max-width: 1399px) {
  .tcp-property__grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .tcp-property__header h2{
    font-size: 40px;
  }

  .tcp-property-card__image{
    height: 245px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .tcp-property{
    padding: 60px 0 60px;
  }

  .tcp-property__header{
    margin-bottom: 35px;
  }

  .tcp-property__header h2{
    font-size: 34px;
  }

  .tcp-property__header p{
    font-size: 16px;
    line-height: 1.75;
  }

  .tcp-property__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .tcp-property-card__image{
    height: 250px;
  }
}

/* Mobile - 2 Cards Per Row + Strong Card Shade */
@media (max-width: 575px) {
  .tcp-property{
    padding: 35px 0 40px;
    background:
      radial-gradient(circle at 0% 8%, rgba(1, 65, 28, 0.14), transparent 34%),
      radial-gradient(circle at 100% 5%, rgba(226, 9, 53, 0.12), transparent 34%),
      linear-gradient(180deg, #f4eeeb 0%, #ffffff 44%, #f5efec 100%) !important;
  }

  .tcp-property::before{
    background-size: 58px 58px;
    opacity: 0.32;
  }

  .tcp-property__header{
    margin-bottom: 28px;
  }

  .tcp-property__tagline{
    font-size: 11px;
    letter-spacing: 0.09em;
    padding-bottom: 13px;
    margin-bottom: 16px;
  }

  .tcp-property__header h2{
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .tcp-property__header p{
    font-size: 14px;
    line-height: 1.65;
  }

  .tcp-property__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tcp-property-card{
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(1, 65, 28, 0.13);
    box-shadow:
      0 14px 28px rgba(22, 23, 26, 0.13),
      0 4px 12px rgba(1, 65, 28, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.70) inset;
  }

  .tcp-property-card:hover{
    transform: translateY(-4px);
    box-shadow:
      0 18px 32px rgba(22, 23, 26, 0.16),
      0 6px 16px rgba(1, 65, 28, 0.10);
  }

  .tcp-property-card::before{
    height: 4px;
  }

  .tcp-property-card__image{
    height: 155px;
    background: #f7f1ee;
  }

  .tcp-property-card__image img{
    padding: 10px;
    object-fit: contain;
  }

  .tcp-property-card__content{
    padding: 14px 10px 15px;
    text-align: center;
    background: #ffffff;
  }

  .tcp-property-card h3{
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 38px;
  }

  .tcp-property-card p{
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .tcp-property-card__link{
    font-size: 12px;
    justify-content: center;
    gap: 5px;
  }

  .tcp-property-card__link i{
    font-size: 10px;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .tcp-property__grid{
    gap: 10px;
  }

  .tcp-property-card__image{
    height: 135px;
  }

  .tcp-property-card__content{
    padding: 12px 8px 14px;
  }

  .tcp-property-card h3{
    font-size: 13px;
    min-height: 36px;
  }

  .tcp-property-card p{
    font-size: 11.5px;
  }
}

/*--------------------------------------------------------------
# Turkish Citizenship Steps
--------------------------------------------------------------*/

.tcp-citizenship-steps{
    position: relative;
    display: block;
    padding: 70px 0 35px;
    background-color: #ffffff;
    z-index: 1;
}

.tcp-citizenship-steps__inner{
    position: relative;
    display: block;
    overflow: hidden;
    padding: 58px 45px 52px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
    border: 1px solid rgba(232, 0, 44, 0.13);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    z-index: 1;
}

.tcp-citizenship-steps__inner::before{
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(232, 0, 44, 0.08);
    z-index: -1;
}

.tcp-citizenship-steps__inner::after{
    content: "";
    position: absolute;
    bottom: -115px;
    left: -95px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(0, 82, 49, 0.08);
    z-index: -1;
}

.tcp-citizenship-steps__header{
    position: relative;
    display: block;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.tcp-citizenship-steps__tagline{
    position: relative;
    display: inline-block;
    color: #e8002c;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 15px;
}

.tcp-citizenship-steps__title{
    margin: 0;
    color: var(--tcp-green, #01411c);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
}

.tcp-citizenship-steps__text{
    max-width: 780px;
    margin: 18px auto 0;
    color: var(--tcp-gray, #727272);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
}

.tcp-citizenship-steps__list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 44px 0 0;
    padding: 0;
}

.tcp-citizenship-steps__item{
    position: relative;
    display: block;
}

.tcp-citizenship-steps__card{
    position: relative;
    display: block;
    height: 100%;
    min-height: 285px;
    padding: 34px 28px 30px;
    border-radius: 22px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: all 500ms ease;
    overflow: hidden;
}

.tcp-citizenship-steps__card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e8002c 0%, #005231 100%);
}

.tcp-citizenship-steps__card:hover{
    transform: translateY(-8px);
    border-color: rgba(232, 0, 44, 0.25);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
}

.tcp-citizenship-steps__number{
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(232, 0, 44, 0.10);
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}

.tcp-citizenship-steps__icon{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 18px;
    background-color: rgba(232, 0, 44, 0.08);
    margin-bottom: 24px;
    transition: all 500ms ease;
}

.tcp-citizenship-steps__icon i{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e8002c;
    font-size: 44px;
    line-height: 1;
    transition: all 500ms ease;
}

.tcp-citizenship-steps__card:hover .tcp-citizenship-steps__icon{
    background-color: #e8002c;
}

.tcp-citizenship-steps__card:hover .tcp-citizenship-steps__icon i{
    color: #ffffff;
}

.tcp-citizenship-steps__card h4{
    margin: 0 0 13px;
    color: var(--tcp-green, #01411c);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.tcp-citizenship-steps__card p{
    margin: 0;
    color: var(--tcp-gray, #727272);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.tcp-citizenship-steps__btn-box{
    position: relative;
    display: block;
    text-align: center;
    margin-top: 42px;
}

.tcp-citizenship-steps__btn{
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    background-color: #e8002c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    border-radius: 6px;
    text-decoration: none;
    transition: all 400ms ease;
    box-shadow: 0 10px 25px rgba(232, 0, 44, 0.22);
}

.tcp-citizenship-steps__btn:hover{
    background-color: #005231;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 82, 49, 0.22);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media only screen and (max-width: 1199px) {
    .tcp-citizenship-steps__inner{
        padding: 52px 30px 48px;
    }

    .tcp-citizenship-steps__title{
        font-size: 38px;
    }

    .tcp-citizenship-steps__list{
        gap: 20px;
    }

    .tcp-citizenship-steps__card{
        padding: 32px 22px 28px;
    }

    .tcp-citizenship-steps__card h4{
        font-size: 21px;
    }
}

@media only screen and (max-width: 991px) {
    .tcp-citizenship-steps{
        padding: 60px 0 30px;
    }

    .tcp-citizenship-steps__list{
        grid-template-columns: repeat(2, 1fr);
    }

    .tcp-citizenship-steps__title{
        font-size: 34px;
    }

    .tcp-citizenship-steps__text{
        font-size: 17px;
    }
}

@media only screen and (max-width: 767px) {
    .tcp-citizenship-steps{
        padding: 50px 0 25px;
    }

    .tcp-citizenship-steps__inner{
        padding: 40px 12px 38px;
        border-radius: 20px;
    }

    .tcp-citizenship-steps__tagline{
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }

    .tcp-citizenship-steps__title{
        font-size: 27px;
        line-height: 1.35;
    }

    .tcp-citizenship-steps__title br{
        display: none;
    }

    .tcp-citizenship-steps__text{
        font-size: 15px;
        line-height: 1.6;
        margin-top: 14px;
    }

    .tcp-citizenship-steps__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .tcp-citizenship-steps__card{
        min-height: 250px;
        padding: 25px 12px 20px;
        text-align: center;
        border-radius: 18px;
    }

    .tcp-citizenship-steps__number{
        top: 13px;
        right: 13px;
        font-size: 34px;
    }

    .tcp-citizenship-steps__icon{
        width: 60px;
        height: 60px;
        border-radius: 14px;
        margin-bottom: 17px;
    }

    .tcp-citizenship-steps__icon i{
        font-size: 32px;
    }

    .tcp-citizenship-steps__card h4{
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 9px;
    }

    .tcp-citizenship-steps__card p{
        font-size: 13px;
        line-height: 1.45;
    }

    .tcp-citizenship-steps__btn-box{
        margin-top: 34px;
    }

    .tcp-citizenship-steps__btn{
        padding: 15px 28px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 380px) {
    .tcp-citizenship-steps__inner{
        padding: 36px 14px 35px;
    }

    .tcp-citizenship-steps__list{
        grid-template-columns: 1fr;
    }

    .tcp-citizenship-steps__card{
        min-height: auto;
        padding: 28px 20px 24px;
    }

    .tcp-citizenship-steps__card h4{
        font-size: 20px;
    }

    .tcp-citizenship-steps__card p{
        font-size: 15px;
        line-height: 1.55;
    }

    .tcp-citizenship-steps__icon{
        width: 68px;
        height: 68px;
    }

    .tcp-citizenship-steps__icon i{
        font-size: 38px;
    }
}


/*--------------------------------------------------------------
# TCP Passport Guides Section
--------------------------------------------------------------*/

.tcp-passport{
  position: relative;
  display: block;
  padding: 60px 0 80px;
  background:
    radial-gradient(circle at 10% 12%, rgba(1, 65, 28, 0.10), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(226, 9, 53, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f1ee 100%);
  overflow: hidden;
  z-index: 1;
}

.tcp-passport::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%);
  background-size: 90px 90px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.tcp-passport__header{
  max-width: 1120px;
  margin: 0 auto 45px;
  text-align: center;
}

.tcp-passport__tagline{
  position: relative;
  display: inline-block;
  color: var(--tcp-gray, #727272);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.tcp-passport__tagline::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
  transform: translateX(-50%);
}

.tcp-passport__header h2{
  margin: 0 0 16px;
  color: var(--tcp-green, #01411c);
  font-size: 44px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.tcp-passport__header p{
  max-width: 1050px;
  margin: 0 auto;
  color: var(--tcp-gray, #727272);
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
}

.tcp-passport__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tcp-passport-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(227, 219, 216, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(22, 23, 26, 0.08);
  transition: all 300ms ease;
}

.tcp-passport-card:hover{
  transform: translateY(-8px);
  border-color: rgba(1, 65, 28, 0.22);
  box-shadow: 0 24px 58px rgba(22, 23, 26, 0.13);
}

.tcp-passport-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
  z-index: 2;
}

.tcp-passport-card__image{
  position: relative;
  display: block;
  height: 285px;
  overflow: hidden;
  background: #ffffff;
}

.tcp-passport-card__image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
  transition: transform 450ms ease;
}

.tcp-passport-card:hover .tcp-passport-card__image img{
  transform: scale(1.04);
}

.tcp-passport-card__content{
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 38px 28px 28px;
  text-align: center;
  background: #ffffff;
}

.tcp-passport-card__icon{
  position: absolute;
  top: -32px;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--tcp-red, #e20935);
  color: #ffffff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 24px rgba(226, 9, 53, 0.22);
  transition: all 300ms ease;
}

.tcp-passport-card:hover .tcp-passport-card__icon{
  background: var(--tcp-green, #01411c);
  box-shadow: 0 12px 24px rgba(1, 65, 28, 0.22);
}

.tcp-passport-card h3{
  margin: 4px 0 14px;
  color: var(--tcp-green, #01411c);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.tcp-passport-card h3 a{
  color: inherit;
  transition: all 250ms ease;
}

.tcp-passport-card h3 a:hover{
  color: var(--tcp-red, #e20935);
}

.tcp-passport-card p{
  margin: 0 0 22px;
  color: var(--tcp-gray, #727272);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
}

.tcp-passport-card__link{
  margin-top: auto;
  color: var(--tcp-green, #01411c);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 250ms ease;
}

.tcp-passport-card__link i{
  font-size: 12px;
  transition: transform 250ms ease;
}

.tcp-passport-card__link:hover{
  color: var(--tcp-red, #e20935);
}

.tcp-passport-card__link:hover i{
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 991px) {
  .tcp-passport{
    padding: 60px 0 65px;
  }

  .tcp-passport__header{
    margin-bottom: 35px;
  }

  .tcp-passport__header h2{
    font-size: 34px;
  }

  .tcp-passport__header p{
    font-size: 16px;
    line-height: 1.75;
  }

  .tcp-passport__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .tcp-passport-card__image{
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tcp-passport{
    padding: 40px 0 50px;
    background:
      radial-gradient(circle at 0% 8%, rgba(1, 65, 28, 0.14), transparent 34%),
      radial-gradient(circle at 100% 5%, rgba(226, 9, 53, 0.12), transparent 34%),
      linear-gradient(180deg, #f4eeeb 0%, #ffffff 44%, #f5efec 100%) !important;
  }

  .tcp-passport::before{
    background-size: 58px 58px;
    opacity: 0.32;
  }

  .tcp-passport__header{
    margin-bottom: 28px;
  }

  .tcp-passport__tagline{
    font-size: 11px;
    letter-spacing: 0.09em;
    padding-bottom: 13px;
    margin-bottom: 16px;
  }

  .tcp-passport__header h2{
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .tcp-passport__header p{
    font-size: 14px;
    line-height: 1.65;
  }

  .tcp-passport__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tcp-passport-card{
    border-radius: 18px;
    box-shadow:
      0 14px 28px rgba(22, 23, 26, 0.13),
      0 4px 12px rgba(1, 65, 28, 0.08);
  }

  .tcp-passport-card:hover{
    transform: translateY(-4px);
  }

  .tcp-passport-card__image{
    height: 235px;
  }

  .tcp-passport-card__image img{
    padding: 14px;
  }

  .tcp-passport-card__content{
    padding: 34px 20px 24px;
  }

  .tcp-passport-card__icon{
    width: 58px;
    height: 58px;
    top: -29px;
    font-size: 22px;
  }

  .tcp-passport-card h3{
    font-size: 20px;
  }

  .tcp-passport-card p{
    font-size: 14.5px;
    line-height: 1.65;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .tcp-passport-card__image{
    height: 205px;
  }

  .tcp-passport-card h3{
    font-size: 19px;
  }

  .tcp-passport-card p{
    font-size: 14px;
  }
}

/* ==========================================
TCP Gulf Investment & Citizenship Section
========================================== */
.tcp-gulf{
padding:60px 0;
background:#f8f5f3;
}
/* Header */
.tcp-gulf__header{
max-width:900px;
margin:0 auto 45px;
text-align:center;
}
.tcp-gulf__tag{
display:inline-block;
color:var(--tcp-red);
font-size:13px;
font-weight:700;
letter-spacing:1.2px;
text-transform:uppercase;
}
.tcp-gulf__header h2{
margin:15px 0 18px;
color:var(--tcp-green);
font-size:42px;
line-height:1.2;
font-weight:800;
}
.tcp-gulf__header p{
color:var(--tcp-gray);
font-size:16px;
line-height:1.8;
margin:0 auto;
}
/* Cards Grid */
.tcp-gulf__grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:22px;
align-items:stretch;
}
/* Card */
.tcp-gulf-card{
background:#ffffff;
border-radius:22px;
padding:30px 20px 25px;
text-align:center;
border:1px solid var(--tcp-border);
box-shadow:0 10px 30px rgba(22,23,26,.07);
display:flex;
flex-direction:column;
height:350px;
position:relative;
overflow:hidden;
transition:all .35s ease;
}
/* Top Line */
.tcp-gulf-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,var(--tcp-red),var(--tcp-green));
}
.tcp-gulf-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(22,23,26,.12);
border-color:var(--tcp-green);
}
/* Icon */
.tcp-gulf-card__icon{
width:65px;
height:65px;
margin:0 auto 18px;
background:var(--tcp-red);
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:25px;
flex-shrink:0;
box-shadow:0 12px 30px rgba(226,9,53,.25);
}
/* Title */
.tcp-gulf-card h3{
font-size:18px;
line-height:1.35;
font-weight:700;
margin:0 0 12px;
min-height:55px;
display:flex;
align-items:center;
justify-content:center;
}
.tcp-gulf-card h3 a{
color:var(--tcp-green);
text-decoration:none;
}
/* Description */
.tcp-gulf-card p{
color:var(--tcp-gray);
font-size:14px;
line-height:1.65;
margin:0;
}
/* Button */
.tcp-gulf-card__link{
margin-top:auto;
padding-top:15px;
color:var(--tcp-red);
font-size:14px;
font-weight:700;
display:flex;
justify-content:center;
align-items:center;
gap:7px;
text-decoration:none;
}
/* ==========================================
Tablet
========================================== */
@media(max-width:1200px){
.tcp-gulf__grid{
grid-template-columns:repeat(3,1fr);
}
.tcp-gulf-card{
height:360px;
}
}
/* ==========================================
Mobile
========================================== */
@media(max-width:767px){
.tcp-gulf{
padding:40px 0;
}
.tcp-gulf__header{
margin-bottom:35px;
}
.tcp-gulf__header h2{
font-size:30px;
}
.tcp-gulf__header p{
font-size:14px;
}
.tcp-gulf__grid{
grid-template-columns:repeat(2,1fr);
gap:12px;
}
.tcp-gulf-card{
height:320px;
padding:25px 12px 20px;
border-radius:18px;
}
.tcp-gulf-card__icon{
width:55px;
height:55px;
font-size:22px;
margin-bottom:15px;
}
.tcp-gulf-card h3{
font-size:15px;
min-height:48px;
}
.tcp-gulf-card p{
font-size:12px;
line-height:1.55;
}
.tcp-gulf-card__link{
font-size:13px;
}
}
/*--------------------------------------------------------------
# TCP HTML Wrapper Helpers
--------------------------------------------------------------*/
.tcp-contact__left,
.tcp-contact__right,
.tcp-contact__panels{
  min-width: 0;
}

.tcp-contact__panels{
  position: relative;
}

.tcp-citizenship-steps__list{
  list-style: none;
}

/*--------------------------------------------------------------
# TCP Contact Section - Final Fixed Version
--------------------------------------------------------------*/

.tcp-contact{
  position: relative;
  isolation: isolate;
  padding: 72px 0;
  overflow: visible;
  background:
    radial-gradient(circle at 8% 12%, rgba(1, 65, 28, 0.08), transparent 30%),
    radial-gradient(circle at 94% 8%, rgba(226, 9, 53, 0.07), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #f7f1ee 100%);
}

.tcp-contact::before,
.tcp-contact::after{
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.tcp-contact::before{
  top: -130px;
  left: -130px;
  width: 300px;
  height: 300px;
  background: rgba(1, 65, 28, 0.05);
}

.tcp-contact::after{
  right: -150px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  background: rgba(226, 9, 53, 0.05);
}

.tcp-contact .container{
  position: relative;
  z-index: 1;
}

.tcp-contact *,
.tcp-contact *::before,
.tcp-contact *::after{
  box-sizing: border-box;
}

.tcp-contact__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.96fr);
  gap: 54px;
  align-items: center;
}

.tcp-contact__left,
.tcp-contact__right,
.tcp-contact__panels{
  min-width: 0;
}

.tcp-contact__right{
  position: relative;
  z-index: 20;
}

/* Left content */
.tcp-contact__tagline{
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 14px;
  color: var(--tcp-gray, #727272);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tcp-contact__tagline::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--tcp-red, #e20935),
    var(--tcp-green, #01411c)
  );
}

.tcp-contact__left h2{
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--tcp-green, #01411c);
  font-size: 44px;
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.tcp-contact__intro{
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--tcp-gray, #727272);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.78;
}

/* Office tabs */
.tcp-contact__tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tcp-contact__tab{
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 13px 27px;
  border: 1px solid rgba(1, 65, 28, 0.08);
  border-radius: 999px;
  outline: none;
  background: #ffffff;
  color: var(--tcp-green, #01411c);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22, 23, 26, 0.08);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.tcp-contact__tab:hover,
.tcp-contact__tab.active,
.tcp-contact__tab[aria-selected="true"]{
  border-color: var(--tcp-red, #e20935);
  background: var(--tcp-red, #e20935);
  color: #ffffff;
  transform: translateY(-1px);
}

.tcp-contact__tab:focus-visible{
  outline: 3px solid rgba(226, 9, 53, 0.22);
  outline-offset: 3px;
}

/* Office panels */
.tcp-contact__panels{
  position: relative;
}

.tcp-contact__panel{
  display: none;
  padding: 26px;
  border: 1px solid rgba(227, 219, 216, 0.95);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(22, 23, 26, 0.08);
}

.tcp-contact__panel.active{
  display: block;
}

.tcp-contact__panel[hidden]{
  display: none !important;
}

.tcp-contact__panel p{
  margin: 0 0 20px;
  color: var(--tcp-gray, #727272);
  font-size: 15.5px;
  line-height: 1.7;
}

.tcp-contact__panel ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.tcp-contact__panel li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--tcp-gray, #727272);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.58;
}

.tcp-contact__panel li + li{
  margin-top: 15px;
}

.tcp-contact__panel li i{
  display: flex;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tcp-red, #e20935);
  color: #ffffff;
  font-size: 15px;
}

.tcp-contact__panel li a,
.tcp-contact__panel li span{
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--tcp-gray, #727272);
}

.tcp-contact__panel li a:hover{
  color: var(--tcp-red, #e20935);
}

/* Form card */
.tcp-contact__form-card{
  position: relative;
  z-index: 20;
  overflow: visible;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 24px 65px rgba(22, 23, 26, 0.12),
    0 0 0 1px rgba(227, 219, 216, 0.55);
}

.tcp-contact__form-head{
  padding: 30px 40px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(
    100deg,
    var(--tcp-red, #e20935) 0%,
    #8e2632 48%,
    var(--tcp-green, #01411c) 100%
  );
}

.tcp-contact__form-head h3{
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tcp-contact__form{
  position: relative;
  overflow: visible;
  padding: 38px 40px 40px;
  border-radius: 0 0 28px 28px;
  background: #ffffff;
}

.tcp-contact__row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.tcp-field{
  position: relative;
  min-width: 0;
  margin-bottom: 14px;
}

.tcp-contact__row .tcp-field{
  margin-bottom: 0;
}

.tcp-field__label{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Form controls */
.tcp-contact__form input:not([type="hidden"]),
.tcp-contact__form select,
.tcp-contact__form textarea,
.tcp-contact__form .tcp-select__button{
  width: 100%;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  outline: none;
  background: var(--tcp-light, #f2edeb);
  color: var(--tcp-dark, #16171a);
  font-family: var(--tcp-font, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  font-weight: 650;
  box-shadow: none;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.tcp-contact__form input:not([type="hidden"]),
.tcp-contact__form select,
.tcp-contact__form .tcp-select__button{
  height: 56px;
  min-height: 56px;
  padding: 0 20px;
}

.tcp-contact__form textarea{
  display: block;
  min-height: 138px;
  padding: 18px 20px;
  resize: vertical;
  line-height: 1.65;
}

.tcp-contact__form input::placeholder,
.tcp-contact__form textarea::placeholder{
  color: #4d4d4d;
  opacity: 1;
}

.tcp-contact__form input:not([type="hidden"]):focus,
.tcp-contact__form select:focus,
.tcp-contact__form textarea:focus,
.tcp-contact__form .tcp-select__button:focus,
.tcp-select.is-open .tcp-select__button{
  border-color: rgba(1, 65, 28, 0.34);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(1, 65, 28, 0.08);
}

/* Custom service dropdown */
.tcp-select{
  position: relative;
  z-index: 100;
  width: 100%;
}

.tcp-select.is-open{
  z-index: 9999;
}

.tcp-contact__form .tcp-select__button{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-right: 20px;
  text-align: left;
  cursor: pointer;
  transform: none;
}

.tcp-contact__form .tcp-select__button:hover{
  border-color: rgba(1, 65, 28, 0.16);
  background: #eee7e4;
  color: var(--tcp-dark, #16171a);
  transform: none;
}

.tcp-select__text{
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--tcp-dark, #16171a);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tcp-select__placeholder{
  color: #4d4d4d;
}

.tcp-select__button i{
  flex: 0 0 auto;
  color: var(--tcp-green, #01411c);
  font-size: 13px;
  transition: transform 220ms ease;
}

.tcp-select.is-open .tcp-select__button i{
  transform: rotate(180deg);
}

.tcp-select__menu{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 10000;
  display: none;
  max-height: 286px;
  margin: 0;
  padding: 7px;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  border: 1px solid rgba(1, 65, 28, 0.16);
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(22, 23, 26, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.tcp-select.is-open .tcp-select__menu{
  display: block;
}

.tcp-select__option{
  display: flex;
  min-height: 46px;
  align-items: center;
  margin: 0;
  padding: 11px 14px;
  border-radius: 9px;
  outline: none;
  background: transparent;
  color: var(--tcp-dark, #16171a);
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    padding-left 180ms ease;
}

.tcp-select__option + .tcp-select__option{
  margin-top: 2px;
}

.tcp-select__option:hover,
.tcp-select__option:focus,
.tcp-select__option.is-focused{
  padding-left: 18px;
  background: rgba(1, 65, 28, 0.08);
  color: var(--tcp-green, #01411c);
}

.tcp-select__option[aria-selected="true"]{
  background: var(--tcp-green, #01411c);
  color: #ffffff;
}

.tcp-select__option[aria-selected="true"]:hover,
.tcp-select__option[aria-selected="true"]:focus{
  background: var(--tcp-green-dark, #003316);
  color: #ffffff;
}

/* Error and counter */
.tcp-field__error{
  display: none;
  margin: 7px 4px 0;
  color: #c91936;
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.45;
}

.tcp-field.has-error .tcp-field__error{
  display: block;
}

.tcp-field.has-error input:not([type="hidden"]),
.tcp-field.has-error textarea,
.tcp-field.has-error .tcp-select__button{
  border-color: #d62828 !important;
  background: #fffafb !important;
  box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.09) !important;
}

.tcp-field__counter{
  display: block;
  margin: 7px 4px 0;
  color: #747474;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

/* Honeypot */
.tcp-contact__honeypot{
  position: absolute !important;
  top: -10000px !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Submit */
.tcp-contact__form .tcp-contact__submit{
  display: inline-flex;
  min-width: 220px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  outline: none;
  background: var(--tcp-green, #01411c);
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(1, 65, 28, 0.20);
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.tcp-contact__form .tcp-contact__submit:hover{
  background: var(--tcp-red, #e20935);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(226, 9, 53, 0.20);
}

.tcp-contact__form .tcp-contact__submit:focus-visible{
  outline: 3px solid rgba(226, 9, 53, 0.25);
  outline-offset: 3px;
}

.tcp-contact__submit-loading{
  display: none;
}

.tcp-contact__submit.is-loading .tcp-contact__submit-text{
  display: none;
}

.tcp-contact__submit.is-loading .tcp-contact__submit-loading{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tcp-contact__form .tcp-contact__submit:disabled{
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

/* Result message */
.tcp-contact .result{
  min-height: 0;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.tcp-contact .result:empty{
  display: none;
}

.tcp-contact .result.is-success,
.tcp-contact .result.is-error{
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
}

.tcp-contact .result.is-success{
  border: 1px solid rgba(1, 65, 28, 0.18);
  background: rgba(1, 65, 28, 0.07);
  color: var(--tcp-green, #01411c);
}

.tcp-contact .result.is-error{
  border: 1px solid rgba(214, 40, 40, 0.18);
  background: rgba(214, 40, 40, 0.06);
  color: #c91936;
}

/* Tablet */
@media (max-width: 1199px){
  .tcp-contact__grid{
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.95fr);
    gap: 38px;
  }

  .tcp-contact__left h2{
    font-size: 38px;
  }

  .tcp-contact__form-head{
    padding: 28px 32px;
  }

  .tcp-contact__form{
    padding: 34px 32px 36px;
  }
}

@media (max-width: 991px){
  .tcp-contact{
    padding: 60px 0;
  }

  .tcp-contact__grid{
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .tcp-contact__right{
    width: 100%;
    max-width: 720px;
  }

  .tcp-contact__left h2{
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 575px){
  .tcp-contact{
    padding: 50px 0;
  }

  .tcp-contact__left h2{
    font-size: 30px;
    line-height: 1.3;
  }

  .tcp-contact__intro{
    font-size: 15px;
    line-height: 1.72;
  }

  .tcp-contact__tabs{
    display: grid;
    grid-template-columns: 1fr;
  }

  .tcp-contact__tab{
    width: 100%;
  }

  .tcp-contact__panel{
    padding: 22px;
    border-radius: 20px;
  }

  .tcp-contact__panel li{
    gap: 12px;
    font-size: 14.5px;
  }

  .tcp-contact__panel li i{
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .tcp-contact__form-card{
    border-radius: 22px;
  }

  .tcp-contact__form-head{
    padding: 24px 22px;
    border-radius: 22px 22px 0 0;
  }

  .tcp-contact__form-head h3{
    font-size: 24px;
  }

  .tcp-contact__form{
    padding: 28px 22px 30px;
    border-radius: 0 0 22px 22px;
  }

  .tcp-contact__row{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .tcp-contact__form input:not([type="hidden"]),
  .tcp-contact__form select,
  .tcp-contact__form .tcp-select__button{
    height: 52px;
    min-height: 52px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .tcp-contact__form textarea{
    min-height: 125px;
    padding: 16px 17px;
  }

  .tcp-select__menu{
    max-height: 250px;
  }

  .tcp-select__option{
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .tcp-contact__form .tcp-contact__submit{
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px){
  .tcp-contact__form-head{
    padding: 22px 18px;
  }

  .tcp-contact__form{
    padding: 25px 18px 27px;
  }

  .tcp-contact__form-head h3{
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce){
  .tcp-contact *,
  .tcp-contact *::before,
  .tcp-contact *::after{
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   TCP Contact Offices Section
   ========================================================= */

.tcp-offices {
    position: relative;
    overflow: hidden;
    padding: 55px 0;
    background:
        radial-gradient(circle at 10% 12%, rgba(20, 122, 74, 0.07), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(214, 40, 40, 0.05), transparent 30%),
        #f7f9f8;
}

.tcp-offices *,
.tcp-offices *::before,
.tcp-offices *::after {
    box-sizing: border-box;
}

.tcp-offices__header {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.tcp-offices__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #147a4a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tcp-offices__tagline::before,
.tcp-offices__tagline::after {
    width: 28px;
    height: 2px;
    background: #d62828;
    content: "";
}

.tcp-offices__header h2 {
    margin: 0 0 17px;
    color: #14231d;
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.tcp-offices__header p {
    margin: 0;
    color: #5e6964;
    font-size: 16px;
    line-height: 1.82;
}

.tcp-offices__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tcp-offices__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e0e8e4;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(18, 50, 39, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.tcp-offices__card::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: 72px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #147a4a, #d62828);
    content: "";
}

.tcp-offices__card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 122, 74, 0.25);
    box-shadow: 0 22px 52px rgba(18, 50, 39, 0.12);
}

.tcp-offices__card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tcp-offices__icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: rgba(20, 122, 74, 0.1);
    color: #147a4a;
    font-size: 22px;
}

.tcp-offices__country {
    display: block;
    margin-bottom: 3px;
    color: #d62828;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tcp-offices__card h3 {
    margin: 0;
    color: #14231d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.tcp-offices__description {
    margin: 0 0 22px;
    color: #66716c;
    font-size: 15px;
    line-height: 1.72;
}

.tcp-offices__details {
    display: grid;
    gap: 15px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.tcp-offices__details li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: #53605a;
    font-size: 14px;
    line-height: 1.65;
}

.tcp-offices__details i {
    margin-top: 4px;
    color: #147a4a;
    text-align: center;
}

.tcp-offices__details a {
    overflow-wrap: anywhere;
    color: #34423c;
    font-weight: 700;
    text-decoration: none;
}

.tcp-offices__details a:hover {
    color: #147a4a;
}

.tcp-offices__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 49px;
    margin-top: auto;
    padding: 12px 17px;
    border-radius: 11px;
    background: #147a4a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.tcp-offices__btn:hover {
    transform: translateY(-2px);
    background: #10653d;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 122, 74, 0.22);
}

.tcp-offices__note {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 18px;
    background: #14231d;
    box-shadow: 0 16px 38px rgba(18, 50, 39, 0.14);
}

.tcp-offices__note-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #54c98a;
    font-size: 22px;
}

.tcp-offices__note h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.tcp-offices__note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
}

.tcp-offices__note > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.tcp-offices__note > a:hover {
    color: #54c98a;
}

@media (max-width: 1199px) {
    .tcp-offices {
        padding: 85px 0;
    }

    .tcp-offices__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tcp-offices__card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .tcp-offices__note {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .tcp-offices__note > a {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .tcp-offices {
        padding: 65px 0;
    }

    .tcp-offices__header {
        margin-bottom: 36px;
        text-align: left;
    }

    .tcp-offices__tagline::after {
        display: none;
    }

    .tcp-offices__grid {
        grid-template-columns: 1fr;
    }

    .tcp-offices__card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .tcp-offices__card {
        padding: 27px 22px;
        border-radius: 18px;
    }

    .tcp-offices__note {
        grid-template-columns: 1fr;
        padding: 24px 22px;
    }

    .tcp-offices__note > a {
        grid-column: auto;
    }
}

@media (max-width: 479px) {
    .tcp-offices__header h2 {
        font-size: 31px;
    }

    .tcp-offices__card-top {
        align-items: flex-start;
    }

    .tcp-offices__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tcp-offices__card,
    .tcp-offices__btn {
        transition: none;
    }
}

/* =========================================================
   TCP Clean Google Map
   ========================================================= */

.tcp-map-clean {
    padding: 0 0 90px;
    background: #f7f9f8;
}

.tcp-map-clean *,
.tcp-map-clean *::before,
.tcp-map-clean *::after {
    box-sizing: border-box;
}

.tcp-map-clean__box {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(20, 122, 74, 0.14);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(18, 50, 39, 0.10);
}

.tcp-map-clean__box::before {
    position: absolute;
    top: 0;
    left: 34px;
    z-index: 2;
    width: 90px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #147a4a, #d62828);
    content: "";
}

.tcp-map-clean iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
    filter: saturate(0.92) contrast(1.02);
}

.tcp-map-clean__action {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
}

.tcp-map-clean__action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid rgba(20, 122, 74, 0.18);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    color: #147a4a;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(18, 50, 39, 0.15);
    backdrop-filter: blur(8px);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.tcp-map-clean__action a:hover {
    transform: translateY(-2px);
    background: #147a4a;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(20, 122, 74, 0.22);
}

@media (max-width: 767px) {
    .tcp-map-clean {
        padding-bottom: 65px;
    }

    .tcp-map-clean__box {
        min-height: 380px;
        border-radius: 18px;
    }

    .tcp-map-clean iframe {
        height: 380px;
    }

    .tcp-map-clean__action {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .tcp-map-clean__action a {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .tcp-map-clean__box {
        min-height: 330px;
    }

    .tcp-map-clean iframe {
        height: 330px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tcp-map-clean__action a {
        transition: none;
    }
}

/*--------------------------------------------------------------
# TCP Footer
--------------------------------------------------------------*/

.tcp-footer{
    position: relative;
    background: #151619;
    color: #ffffff;
    padding-top: 0;
    overflow: hidden;
}

.tcp-footer a{
    text-decoration: none;
    transition: all 300ms ease;
}

.tcp-footer__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.tcp-footer__cta p{
    margin: 0;
    color: #8f9197;
    font-size: 16px;
    font-weight: 500;
}

.tcp-footer__cta a{
    color: #ffffff;
    font-weight: 700;
    border-bottom: 1px solid #e8002c;
}

.tcp-footer__cta a:hover{
    color: #e8002c;
}

.tcp-footer__whatsapp{
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcp-footer__whatsapp-icon{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e8002c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.tcp-footer__whatsapp span{
    display: block;
    color: #8f9197;
    font-size: 14px;
  line-height: 1.2;
}

.tcp-footer__whatsapp a{
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.tcp-footer__whatsapp a:hover{
    color: #e8002c;
}

.tcp-footer__middle{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
    gap: 38px;
    padding: 48px 0;
}

.tcp-footer__logo{
    display: inline-block;
    margin-bottom: 22px;
}

.tcp-footer__logo img{
    max-width: 200px;
    height: auto;
}

.tcp-footer__about p{
    margin: 0;
    color: #8f9197;
    font-size: 15px;
    line-height: 1.8;
    max-width: 360px;
}

.tcp-footer__social{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.tcp-footer__social a{
    width: 40px;
    height: 40px;
    border: 1px solid #e8002c;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.tcp-footer__social a:hover{
    background: #e8002c;
    color: #ffffff;
}

.tcp-footer__col h3{
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.tcp-footer__col ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.tcp-footer__col ul li{
    margin-bottom: 10px;
}

.tcp-footer__col ul li a,
.tcp-footer__contact ul li span{
    color: #8f9197;
    font-size: 15px;
    line-height: 1.6;
}

.tcp-footer__col ul li a:hover{
    color: #ffffff;
    padding-left: 4px;
}

.tcp-footer__contact ul li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.tcp-footer__contact ul li i{
    color: #e8002c;
    font-size: 15px;
    line-height: 25px;
    min-width: 16px;
}

.tcp-footer__bottom{
    background: #101113;
    padding: 22px 0;
    text-align: center;
}

.tcp-footer__bottom p{
    margin: 0;
    color: #8f9197;
    font-size: 15px;
}

.tcp-footer__bottom a{
    color: #ffffff;
    font-weight: 600;
}

.tcp-footer__bottom a:hover{
    color: #e8002c;
}

/* Responsive */

@media only screen and (max-width: 1199px) {
    .tcp-footer__middle{
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .tcp-footer__contact{
        grid-column: span 3;
    }
}

@media only screen and (max-width: 991px) {
    .tcp-footer__top{
        flex-direction: column;
        align-items: flex-start;
    }

    .tcp-footer__middle{
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 28px;
    }

    .tcp-footer__contact{
        grid-column: auto;
    }
}

@media only screen and (max-width: 575px) {
    .tcp-footer__top{
        padding: 32px 0;
    }

    .tcp-footer__middle{
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .tcp-footer__logo img{
        max-width: 210px;
    }

    .tcp-footer__whatsapp{
        align-items: flex-start;
    }

    .tcp-footer__whatsapp a{
        font-size: 15px;
        line-height: 1.5;
    }

    .tcp-footer__cta p{
        font-size: 15px;
        line-height: 1.7;
    }
}


/*--------------------------------------------------------------
# TCP Page Header - Final Gradient Version
--------------------------------------------------------------*/

.page-header{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 340px;
  background:
    radial-gradient(circle at 18% 25%, rgba(226, 9, 53, 0.26), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.10), transparent 28%),
    linear-gradient(120deg, #01411c 0%, #013516 55%, #e20935 135%);
  overflow: hidden;
  z-index: 1;
}

.page-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%);
  background-size: 90px 90px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.page-header__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 65, 28, 0.92) 0%, rgba(1, 65, 28, 0.72) 58%, rgba(226, 9, 53, 0.42) 100%);
  z-index: -1;
}

.page-header .container{
  position: relative;
  max-width: 1320px;
  z-index: 3;
}

.page-header__inner{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 85px 0 75px;
  text-align: center;
}

.page-header__tagline{
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.page-header__tagline::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), #ffffff, var(--tcp-green, #01411c));
  transform: translateX(-50%);
}

.page-header__inner h1{
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.page-header__breadcrumb{
  margin-top: 24px;
}

.thm-breadcrumb{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.thm-breadcrumb li{
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.thm-breadcrumb li a{
  color: rgba(255, 255, 255, 0.88);
  transition: all 250ms ease;
}

.thm-breadcrumb li a:hover{
  color: #ffffff;
}

.thm-breadcrumb li span{
  color: rgba(255, 255, 255, 0.58);
}

.thm-breadcrumb li.active{
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .page-header{
    min-height: 310px;
  }

  .page-header__inner{
    padding: 72px 0 62px;
  }

  .page-header__inner h1{
    font-size: 40px;
    line-height: 1.18;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .page-header{
    min-height: 270px;
  }

  .page-header__inner{
    padding: 56px 0 48px;
  }

  .page-header__tagline{
    font-size: 11px;
    letter-spacing: 0.10em;
    margin-bottom: 14px;
  }

  .page-header__tagline::after{
    width: 70px;
  }

  .page-header__inner h1{
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .page-header__breadcrumb{
    margin-top: 18px;
  }

  .thm-breadcrumb{
    gap: 6px;
  }

  .thm-breadcrumb li,
.thm-breadcrumb li a,
.thm-breadcrumb li span{
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# TCP Detail Page - Soft Modern SEO Style
--------------------------------------------------------------*/

.tcp-detail-page{
  position: relative;
  background: #ffffff;
}

.tcp-detail__tagline{
  position: relative;
  display: inline-block;
  color: var(--tcp-gray, #727272);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding-bottom: 13px;
  margin-bottom: 18px;
}

.tcp-detail__tagline::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tcp-red, #e20935), var(--tcp-green, #01411c));
}

/* Intro */
.tcp-detail-intro{
  position: relative;
  padding: 58px 0 48px;
  background:
    radial-gradient(circle at 8% 12%, rgba(1, 65, 28, 0.07), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(226, 9, 53, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8f3f1 100%);
  overflow: hidden;
}

.tcp-detail-intro__grid{
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
}

.tcp-detail-intro__image{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(227, 219, 216, 0.9);
  box-shadow: 0 14px 36px rgba(22, 23, 26, 0.08);
}

.tcp-detail-intro__image img{
  width: 100%;
  display: block;
}

.tcp-detail-intro__content h2{
  margin: 0 0 20px;
  color: var(--tcp-green, #01411c);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.tcp-detail-intro__content p{
  color: var(--tcp-gray, #727272);
  font-size: 16px;
  line-height: 1.82;
  font-weight: 500;
  margin: 0 0 16px;
}

/* Main Content */
.tcp-detail-content{
  padding: 56px 0 68px;
}

.tcp-detail-content__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 40px;
  align-items: start;
}

.tcp-detail-content__main{
  min-width: 0;
}

.tcp-detail-content__main h2{
  color: var(--tcp-green, #01411c);
  font-size: 31px;
  line-height: 1.3;
  font-weight: 820;
  letter-spacing: -0.025em;
  margin: 38px 0 14px;
}

.tcp-detail-content__main h2:first-child{
  margin-top: 0;
}

.tcp-detail-content__main h3{
  color: var(--tcp-red, #e20935);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 780;
  margin: 26px 0 10px;
}

.tcp-detail-content__main p{
  color: var(--tcp-gray, #727272);
  font-size: 16px;
  line-height: 1.84;
  font-weight: 500;
  margin: 0 0 17px;
}

.tcp-detail-intro__content a,
.tcp-detail-content__main a{
  color: var(--tcp-red, #e20935);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 250ms ease;
}

.tcp-detail-intro__content a:hover,
.tcp-detail-content__main a:hover{
  color: var(--tcp-green, #01411c);
}

.tcp-detail-content__main ul{
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.tcp-detail-content__main ul li{
  position: relative;
  color: var(--tcp-dark, #16171a);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 620;
  padding-left: 30px;
  margin-bottom: 9px;
}

.tcp-detail-content__main ul li::before{
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--tcp-green, #01411c);
  color: #ffffff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tables */
.tcp-detail-table{
  overflow-x: auto;
  margin: 24px 0 28px;
  border-radius: 16px;
  border: 1px solid rgba(227, 219, 216, 0.95);
  box-shadow: 0 10px 28px rgba(22, 23, 26, 0.06);
}

.tcp-detail-table table{
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #ffffff;
}

.tcp-detail-table th,
.tcp-detail-table td{
  padding: 15px 17px;
  border-bottom: 1px solid rgba(227, 219, 216, 0.95);
  color: var(--tcp-gray, #727272);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.tcp-detail-table th{
  width: 255px;
  background: rgba(1, 65, 28, 0.07);
  color: var(--tcp-green, #01411c);
  font-weight: 800;
}

.tcp-detail-table thead th{
  background: var(--tcp-green, #01411c);
  color: #ffffff;
}

.tcp-detail-table tr:last-child th,
.tcp-detail-table tr:last-child td{
  border-bottom: none;
}

/* Sidebar */
.tcp-detail-sidebar{
  position: sticky;
  top: 105px;
}

.tcp-detail-sidebar__card{
  padding: 26px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 16% 12%, rgba(226, 9, 53, 0.14), transparent 34%),
    linear-gradient(145deg, #01411c, #003416);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(22, 23, 26, 0.12);
}

.tcp-detail-sidebar__card h3{
  color: #ffffff;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 820;
  margin: 0 0 11px;
}

.tcp-detail-sidebar__card p{
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.tcp-detail-sidebar__card a{
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--tcp-red, #e20935);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(226, 9, 53, 0.18);
  transition: all 250ms ease;
}

.tcp-detail-sidebar__card a:hover{
  background: #ffffff;
  color: var(--tcp-green, #01411c) !important;
}

/* FAQ */
.tcp-detail-faq{
  position: relative;
  padding: 62px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(1, 65, 28, 0.08), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(226, 9, 53, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f1ee 100%);
}

.tcp-detail-faq__grid{
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.tcp-detail-faq__left h2{
  color: var(--tcp-green, #01411c);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: -0.03em;
  margin: 0 0 15px;
}

.tcp-detail-faq__left p{
  color: var(--tcp-gray, #727272);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 21px;
}

.tcp-detail-faq__call{
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--tcp-green, #01411c);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(1, 65, 28, 0.16);
  transition: all 250ms ease;
}

.tcp-detail-faq__call:hover{
  background: var(--tcp-red, #e20935);
}

.tcp-detail-faq__item{
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(227, 219, 216, 0.95);
  box-shadow: 0 8px 22px rgba(22, 23, 26, 0.055);
  overflow: hidden;
}

.tcp-detail-faq__item + .tcp-detail-faq__item{
  margin-top: 12px;
}

.tcp-detail-faq__item summary{
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 18px 55px 18px 20px;
  color: var(--tcp-green, #01411c);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
}

.tcp-detail-faq__item summary::-webkit-details-marker{
  display: none;
}

.tcp-detail-faq__item summary::after{
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tcp-red, #e20935);
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease;
}

.tcp-detail-faq__item[open] summary::after{
  transform: rotate(180deg);
  background: var(--tcp-green, #01411c);
}

.tcp-detail-faq__item p{
  padding: 0 20px 20px;
  margin: 0;
  color: var(--tcp-gray, #727272);
  font-size: 15px;
  line-height: 1.72;
}

/* Responsive */
@media (max-width: 991px) {
  .tcp-detail-intro{
    padding: 52px 0 42px;
  }

  .tcp-detail-intro__grid,
.tcp-detail-content__grid,
.tcp-detail-faq__grid{
    grid-template-columns: 1fr;
  }

  .tcp-detail-sidebar{
    position: relative;
    top: auto;
  }

  .tcp-detail-intro__content h2{
    font-size: 34px;
  }

  .tcp-detail-content__main h2{
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .tcp-detail-intro{
    padding: 42px 0 34px;
  }

  .tcp-detail-intro__grid{
    gap: 28px;
  }

  .tcp-detail-intro__image{
    border-radius: 18px;
  }

  .tcp-detail-intro__content h2{
    font-size: 28px;
    line-height: 1.28;
  }

  .tcp-detail-intro__content p,
.tcp-detail-content__main p{
    font-size: 15px;
    line-height: 1.74;
  }

  .tcp-detail-content{
    padding: 42px 0 52px;
  }

  .tcp-detail-content__main h2{
    font-size: 25px;
    line-height: 1.32;
    margin-top: 32px;
  }

  .tcp-detail-content__main h3{
    font-size: 20px;
  }

  .tcp-detail-content__main ul li{
    font-size: 15px;
  }

  .tcp-detail-table th,
.tcp-detail-table td{
    padding: 12px 13px;
    font-size: 14px;
  }

  .tcp-detail-faq{
    padding: 48px 0;
  }

  .tcp-detail-faq__left h2{
    font-size: 28px;
  }

  .tcp-detail-faq__item summary{
    font-size: 15px;
    padding: 17px 52px 17px 17px;
  }

  .tcp-detail-faq__item p{
    padding: 0 17px 18px;
    font-size: 14.5px;
  }
}


/*--------------------------------------------------------------
# TCP-Only Mobile Dropdown Controls
--------------------------------------------------------------*/
.mobile-nav__container .tcp-header__menu > li.tcp-menu-dropdown {
  position: relative !important;
}

.mobile-nav__container .tcp-header__menu > li.tcp-menu-dropdown > a {
  padding-right: 46px !important;
}

.mobile-nav__container .mobile-dropdown-btn {
  position: absolute;
  top: 8px;
  right: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--tcp-red);
  color: var(--tcp-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 250ms ease;
}

.mobile-nav__container .mobile-dropdown-btn[aria-expanded="true"] {
  background: var(--tcp-white);
  color: var(--tcp-red);
  transform: rotate(180deg);
}

.mobile-nav__container .tcp-menu-dropdown.open > ul {
  display: block !important;
}

/* Semantic submenu reset used by the TCP navigation markup. */
.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*--------------------------------------------------------------
# Accessibility, Validation and Resilience
--------------------------------------------------------------*/
:where(a, button, input, select, textarea):focus-visible{
  outline: 3px solid rgba(var(--tcp-red-rgb), 0.35);
  outline-offset: 3px;
}

.tcp-contact__form .is-invalid{
  border-color: var(--bs-danger, #dc3545) !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.10) !important;
}

.tcp-contact .result{
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.tcp-contact .result.is-success{
  color: var(--tcp-green);
}

.tcp-contact .result.is-error{
  color: var(--tcp-red);
}

.tcp-contact__form button[disabled]{
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }

  *,
  *::before,
  *::after{
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   TCP FAQ Page
   ========================================================= */

.tcp-faq-page {
    background: #ffffff;
}

.tcp-faq-page *,
.tcp-faq-page *::before,
.tcp-faq-page *::after {
    box-sizing: border-box;
}

/* Shared elements */

.tcp-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #147a4a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.tcp-faq__eyebrow::before {
    width: 28px;
    height: 2px;
    background: #d62828;
    content: "";
}

.tcp-faq__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 12px;
    background: #147a4a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.tcp-faq__btn:hover {
    transform: translateY(-2px);
    background: #10653d;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(20, 122, 74, 0.22);
}

/* FAQ introduction */

.tcp-faq-intro {
    padding: 90px 0 55px;
    background:
        radial-gradient(circle at 12% 15%, rgba(20, 122, 74, 0.07), transparent 30%),
        #f7f9f8;
}

.tcp-faq-intro__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: center;
    padding: 44px 48px;
    border: 1px solid rgba(20, 122, 74, 0.14);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(18, 50, 39, 0.08);
}

.tcp-faq-intro__content h2 {
    max-width: 820px;
    margin: 0 0 18px;
    color: #14231d;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.tcp-faq-intro__content p {
    max-width: 860px;
    margin: 0;
    color: #5e6964;
    font-size: 16px;
    line-height: 1.82;
}

.tcp-faq-intro__content p + p {
    margin-top: 12px;
}

.tcp-faq-intro__action {
    min-width: 225px;
    padding: 25px;
    border-radius: 18px;
    background: #f1f7f4;
    text-align: center;
}

.tcp-faq-intro__action > span {
    display: block;
    margin-bottom: 14px;
    color: #34423c;
    font-size: 14px;
    font-weight: 700;
}

/* Main FAQ layout */

.tcp-faq-content {
    padding: 70px 0 95px;
}

.tcp-faq-content__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.33fr) minmax(0, 0.67fr);
    gap: 46px;
    align-items: start;
}

.tcp-faq-sidebar {
    position: sticky;
    top: 110px;
}

.tcp-faq-sidebar__card {
    padding: 32px;
    border: 1px solid #e1e8e4;
    border-radius: 22px;
    background: #14231d;
    box-shadow: 0 18px 45px rgba(18, 50, 39, 0.13);
}

.tcp-faq-sidebar__card .tcp-faq__eyebrow {
    color: #54c98a;
}

.tcp-faq-sidebar__card h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.22;
}

.tcp-faq-sidebar__card > p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

.tcp-faq-sidebar__points {
    display: grid;
    gap: 12px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.tcp-faq-sidebar__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.tcp-faq-sidebar__points i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: #54c98a;
}

.tcp-faq-sidebar__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.tcp-faq-sidebar__link:hover {
    color: #54c98a;
}

.tcp-faq-list__heading {
    margin-bottom: 24px;
}

.tcp-faq-list__heading h2 {
    margin: 0;
    color: #14231d;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

/* FAQ items */

.tcp-faq-item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #dfe7e3;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(18, 50, 39, 0.045);
}

.tcp-faq-item[open] {
    border-color: rgba(20, 122, 74, 0.28);
    box-shadow: 0 15px 34px rgba(18, 50, 39, 0.08);
}

.tcp-faq-item summary {
    position: relative;
    padding: 21px 58px 21px 22px;
    color: #14231d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.tcp-faq-item summary::-webkit-details-marker {
    display: none;
}

.tcp-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 21px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(20, 122, 74, 0.09);
    color: #147a4a;
    font-family: "Font Awesome 5 Free";
    font-size: 13px;
    font-weight: 900;
    content: "\f067";
    transform: translateY(-50%);
}

.tcp-faq-item[open] summary::after {
    background: #147a4a;
    color: #ffffff;
    content: "\f068";
}

.tcp-faq-item__answer {
    padding: 0 22px 22px;
}

.tcp-faq-item__answer p {
    margin: 0;
    color: #5e6964;
    font-size: 15px;
    line-height: 1.8;
}

.tcp-faq-item__answer p + p {
    margin-top: 10px;
}

.tcp-faq-item__answer a {
    color: #147a4a;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tcp-faq-item__answer a:hover {
    color: #d62828;
}

/* CTA */

.tcp-faq-cta {
    padding: 0 0 95px;
}

.tcp-faq-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 42px 46px;
    border-radius: 24px;
    background: #147a4a;
    box-shadow: 0 20px 50px rgba(20, 122, 74, 0.2);
}

.tcp-faq-cta__inner .tcp-faq__eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.tcp-faq-cta__inner .tcp-faq__eyebrow::before {
    background: #ffffff;
}

.tcp-faq-cta__inner h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.17;
}

.tcp-faq-cta__inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.tcp-faq__btn--light {
    background: #ffffff;
    color: #147a4a;
}

.tcp-faq__btn--light:hover {
    background: #f4f8f6;
    color: #10653d;
}

/* Responsive */

@media (max-width: 991px) {
    .tcp-faq-intro__card,
    .tcp-faq-cta__inner {
        grid-template-columns: 1fr;
    }

    .tcp-faq-intro__action {
        min-width: 0;
        text-align: left;
    }

    .tcp-faq-content__grid {
        grid-template-columns: 1fr;
    }

    .tcp-faq-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .tcp-faq-intro {
        padding: 65px 0 40px;
    }

    .tcp-faq-intro__card {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .tcp-faq-content {
        padding: 55px 0 70px;
    }

    .tcp-faq-sidebar__card {
        padding: 27px 22px;
    }

    .tcp-faq-item summary {
        padding: 19px 54px 19px 18px;
        font-size: 16px;
    }

    .tcp-faq-item__answer {
        padding: 0 18px 19px;
    }

    .tcp-faq-cta {
        padding-bottom: 70px;
    }

    .tcp-faq-cta__inner {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 20px;
    }

    .tcp-faq__btn {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .tcp-faq-intro__card,
    .tcp-faq-cta__inner {
        padding: 29px 18px;
    }

    .tcp-faq-intro__content h2 {
        font-size: 29px;
    }

    .tcp-faq-list__heading h2 {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tcp-faq__btn {
        transition: none;
    }
}

/* =========================================================
   TCP 404 Error Page
   ========================================================= */

.tcp-error {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(20, 122, 74, 0.08), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(214, 40, 40, 0.07), transparent 30%),
        #f7f9f8;
}

.tcp-error *,
.tcp-error *::before,
.tcp-error *::after {
    box-sizing: border-box;
}

.tcp-error__card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 46px;
    overflow: hidden;
    border: 1px solid rgba(20, 122, 74, 0.14);
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 24px 60px rgba(18, 50, 39, 0.1);
}

.tcp-error__card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 130px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(90deg, #147a4a, #d62828);
    content: "";
    transform: translateX(-50%);
}

.tcp-error__card::after {
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(20, 122, 74, 0.05);
    content: "";
}

.tcp-error__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #147a4a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tcp-error__eyebrow::before,
.tcp-error__eyebrow::after {
    width: 28px;
    height: 2px;
    background: #d62828;
    content: "";
}

.tcp-error__code {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: #14231d;
    font-size: clamp(90px, 15vw, 170px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.08em;
    text-shadow: 0 10px 28px rgba(18, 50, 39, 0.08);
}

.tcp-error h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #14231d;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.tcp-error p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    color: #5e6964;
    font-size: 16px;
    line-height: 1.8;
}

.tcp-error__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.tcp-error__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.tcp-error__btn:hover {
    transform: translateY(-2px);
}

.tcp-error__btn--primary {
    background: #147a4a;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(20, 122, 74, 0.2);
}

.tcp-error__btn--primary:hover {
    background: #10653d;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(20, 122, 74, 0.26);
}

.tcp-error__btn--secondary {
    border: 1px solid rgba(20, 122, 74, 0.22);
    background: #ffffff;
    color: #147a4a;
}

.tcp-error__btn--secondary:hover {
    background: rgba(20, 122, 74, 0.06);
    color: #10653d;
}

@media (max-width: 767px) {
    .tcp-error {
        padding: 70px 0;
    }

    .tcp-error__card {
        padding: 48px 24px;
        border-radius: 22px;
    }

    .tcp-error__eyebrow::after {
        display: none;
    }

    .tcp-error__code {
        font-size: 110px;
    }

    .tcp-error p {
        font-size: 15px;
        line-height: 1.75;
    }

    .tcp-error__actions {
        flex-direction: column;
    }

    .tcp-error__btn {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .tcp-error__card {
        padding: 42px 18px;
    }

    .tcp-error__code {
        font-size: 90px;
    }

    .tcp-error h1 {
        font-size: 29px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tcp-error__btn {
        transition: none;
    }
}