*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

.container{
  max-width: 85%;
  margin: 0 auto;
}

.section{
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
}

/* =========================
   HEADER
========================= */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 999;
  background: rgba(12, 34, 56, 0.197);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.281);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-dark{
  background: #0c2238;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}

.header-content{
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
}

.logo{ position: relative; z-index: 2; }

.logo img{
  max-width: 60%;
  display: block;
}

.nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.login{
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.nav a, .login{
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.nav a:hover, .login:hover{
  text-decoration: none;
  color: #6fb48d;
}

/* =========================
   HOME
========================= */
.home{
  background: #0a2232;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}

.home-bg{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(111, 180, 141, 0.09), transparent 55%),
    linear-gradient(rgba(12, 34, 56, 0.584), rgba(12, 34, 56, 0.253)),
              url("images/home2.png");
  background-size: cover;
  background-position: center;
}

.home-content{
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

.home-title{
  color: white;
  line-height: 1.3;
  margin: 0;
  font-size: 2.3em;
}

.home-subtitle{
  color: rgb(255, 255, 255);
  font-style: italic;
  margin-top: 12px;
  font-size: 20px;
}

.btn-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.btn-link span{
  color: #6fb48d;
  font-size: 2.5em;
  transform: translateY(-3px);
}

.btn-link:hover{
  text-decoration: none;
  color: #6fb48d;
}

/* =========================
   TWO COLUMNS
========================= */
.two-columns{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* IMAGES */
.image{
  width: 90%;
  background-size: cover;
  background-position: center;
}

/* =========================
   GOAL
========================= */
.goal-image{
  height: 70vh;
  background-image: url("images/goal.png");
}

.goal{
  background: white;
  height: 90vh;
}

.title{
  margin: 0 0 15px 0;
  font-size: 2em;
  color: #0c2238;
}

.text{
  margin: 0 0 15px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #0c2238;
}

.title-light{ color: white; }
.text-light{ color: rgba(255,255,255,0.9); }

/* =========================
   SERVICES
========================= */
.services{
  background: #0c2238;
  color: white;
  position: relative;
}

.services .shape-left{
  position: absolute;
  left: -370px;
  bottom: -200px;
  width: 700px;
  height: 700px;
  background-image: url("images/shape.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.55;
}

.services .container{ position: relative; z-index: 1; }
.services .two-columns{ align-items: flex-start; }

.service-list{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 0;
}

.service-item{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 80px;
  row-gap: 18px;
}

.service-number{
  grid-column: 1;
  grid-row: 1;
  font-size: 34px;
  font-weight: 500;
  color: #fff;
}

.service-name{
  grid-column: 1;
  grid-row: 2;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
}

.service-icon{
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 46px;
  color: #6fb48d;
}

.service-icon i{
  font-size: 42px;
  color: #6fb48d;
}

.btn-link-light{ align-self: flex-end; margin-top: 0; }

/* =========================
   ABOUT (HOME SECTION)
========================= */
.about{ background: #ffffff; }

.about-title{
  font-size: 28px;
  color: #0c2238;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-image{
  width: 100%;
  height: 420px;
  background-image: url("images/about2.png");
  background-size: cover;
  background-position: center;
}

.about-bottom{ display: flex; justify-content: flex-end; }

.about-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 720px;
  width: 100%;
}

.about-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #0c2238;
  text-decoration: none;
  margin-bottom: 10px;
}

.about-link span{
  font-size: 2.5em;
  color: #6fb48d;
  transform: translateY(-3px);
}

.about-link:hover{ color: #6fb48d; }

.about-text{
  font-size: 20px;
  line-height: 1.6;
  color: #0c2238;
  margin: 0;
  text-align: left;
}

/* =========================
   CONTACT
========================= */
.contact{
  background: #0c2238;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

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

.contact-box{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.center{ text-align: center; }

.form{ margin-top: 20px; }

.label{
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 15px;
}

.input{
  width: 100%;
  margin-top: 6px;
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: white;
  border-radius: 6px;
  outline: none;
}

.button{
  width: 100%;
  background: #6fb48d;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}

.note{
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-top: 10px;
}

.contact-shape{
  position: absolute;
  background-image: url("images/shape.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.contact-shape-left{
  width: 800px;
  height: 800px;
  left: -430px;
  top: -320px;
}

.contact-shape-right{
  width: 600px;
  height: 600px;
  right: -260px;
  bottom: -260px;
}

/* =========================
   AFFILIATES HOSPITALS
========================= */
.affiliates{
  background: white;
  position: relative;
}

.affiliates .two-columns{ align-items: flex-start; }

/* hospital list */
.hospitals{
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.hospitals li{ margin-bottom: 12px; }

.hospital{
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: #0c2238;
  cursor: pointer;
  text-align: left;
}

.hospital:hover{ color: #6fb48d; text-decoration: none; }

.hospital.active{
  color: #6fb48d;
  font-weight: 600;
  text-decoration: none;
}

.hospitals li::marker{ color: #6fb48d; }

/* map box */
.map-box{
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.map-box iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.affiliates-shape{
  position: absolute;
  top: -140px;
  right: -120px;
  width: 500px;
  height: 500px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* =========================
   FOOTER
========================= */
.footer{
  background: #0c2238;
  padding: 50px 0;
  color: white;
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo{ max-width: 50%; }

.footer-title{
  font-size: 18px;
  margin-bottom: 15px;
}

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

.footer-links li{ margin-bottom: 10px; }

.footer-links a{
  color: #6fb48d;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover{
  text-decoration: none;
  color: #fff;
}

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

.footer-social a{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6fb48d;
  border-radius: 50%;
  color: #6fb48d;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover{
  background: #6fb48d;
  color: #0c2238;
}

/* =========================
   RESPONSIVE (global)
========================= */
@media (max-width: 900px){
  .two-columns{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .nav{ display: none; }

  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social{ justify-content: center; }

  .affiliates .two-columns{ gap: 40px; }
  .map-box{ height: 300px; }
}

/* =========================================================
   ABOUT PAGE 
========================================================= */

/* HERO */
.aboutp-hero{
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: #0c2238;
  overflow: hidden;
}

.aboutp-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(111, 180, 141, 0.44), transparent 55%),
    linear-gradient(rgba(12, 34, 56, 0.584), rgba(12, 34, 56, 0.784)),
    url("images/about2.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

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

.aboutp-hero-text{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
    transform: translateY(40px);

}

.aboutp-hero-title{
  margin: 0;
  color: #fff;
  font-size: 2.6em;
  line-height: 1.15;
  letter-spacing: 1px;
}

.aboutp-hero-subtitle{
  margin: 12px 0 0;
  color: rgba(255,255,255,0.86);
  font-style: italic;
  font-size: 18px;
}

/* SECTION */
.aboutp-section{
  position: relative;
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.aboutp-shape{
  position: absolute;
  background-image: url("images/shape.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
}

.aboutp-shape-right{
  width: 760px;
  height: 760px;
  right: -360px;
  bottom: -340px;
}

.aboutp-section .container{
  position: relative;
  z-index: 1;
}

/* INTRO  */
.aboutp-intro{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.aboutp-lead{
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  color: #0c2238;
}

.aboutp-sublead{
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(12,34,56,0.85);
}

/* CARDS: 2 columns */
.aboutp-cards{
  max-width: 1100px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
}

.aboutp-card{
  padding: 26px 22px;
  border: 2px solid rgba(12, 31, 56, 0.125);
  background: rgba(255,255,255,0.70);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.aboutp-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #6fb48d;
  color: #6fb48d;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.aboutp-card-title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #0c2238;
}

.aboutp-card-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(12,34,56,0.90);
  max-width: 48ch;
}

/* TEAM */
.aboutp-team{
  position: relative;
  background: #0c2238;
  overflow: hidden;
  padding: 60px 0;
}

.aboutp-shape-team-left{
  width: 900px;
  height: 900px;
  left: -480px;
  bottom: -420px;
  opacity: 0.18;
}

.aboutp-team-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.aboutp-team-box{
  position: relative;
  border: 1px solid rgba(116, 255, 197, 0.452);
  padding: 26px;
  overflow: hidden;
}

.aboutp-team-box-icon{
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 50px;
  color:#6fb48d;
  opacity:1;
  pointer-events: none;
}

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

.aboutp-team-list li{
  padding: 16px 0;
  border-top: 1px solid rgba(116, 255, 197, 0.452);
}

.aboutp-team-list li:first-child{
  border-top: none;
  padding-top: 8px;
}

.aboutp-team-list strong{
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  display: block;
}

.aboutp-team-list span{
  color: rgba(255,255,255,0.70);
  display: block;
  margin-top: 6px;
}

/* =========================================================
   DOCTORS
========================================================= */

.aboutp-doctors{
  background: #ffffff;
  padding: 80px 0;
}

.aboutp-doctors .container{
  max-width: 1100px;
  margin: 0 auto;
}

.aboutp-doctor{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 40px 0;
  border-bottom: 2px solid rgba(12,34,56,0.12);
}

.aboutp-doctor:last-child{
  border-bottom: none;
}

.aboutp-doctor-photo{
  flex: 0 0 420px;
}

.aboutp-doctor-photo img{
  width: 90%;
  height: 380px;
  object-fit: cover;
  display: block;
}


.aboutp-doctor-info{
  flex: 1;
  max-width: 600px;
}

.aboutp-doctor-name{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
  color: #6fb48d;
}

.aboutp-doctor-role{
  margin: 0 0 22px;
  font-size: 17px;
  font-style: italic;
  color: #0c2238;
}

.aboutp-doctor-block{
  margin-bottom: 18px;
}

.aboutp-doctor-label{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0c2238;
}

.aboutp-doctor-text{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #1c2f40;
}


.aboutp-doctor--reverse{
  flex-direction: row-reverse;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){

  .aboutp-doctor{
    flex-direction: column;
    gap: 25px;
    text-align: left;
  }

  .aboutp-doctor--reverse{
    flex-direction: column;
  }

  .aboutp-doctor-photo{
    flex: none;
    width: 100%;
  }

  .aboutp-doctor-photo img{
    height: auto;
  }

}


/* =========================================================
   SERVICES PAGE
========================================================= */

/* Icon circle */
.icon-circle{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6fb48d;
  border-radius: 50%;
  color: #6fb48d;
  background: transparent;
  transition: 0.25s;
  text-decoration: none;
}

.icon-circle i{ font-size: 18px; }

.icon-circle--sm{ width: 34px; height: 34px; }
.icon-circle--sm i{ font-size: 15px; }


/* ============================================
SERVICES INTRO SECTION
============================================ */

.servicesp-intro{
position:relative;
background:#0c2238;
color:white;
overflow:hidden; 
}

.servicesp-intro-inner{
position:relative;
z-index:2;
display:flex;
align-items:center;
min-height:420px;
}

.servicesp-intro-text{
max-width:700px;
}

.servicesp-title{
font-size:48px;
line-height:1.15;
margin-bottom:20px;
}

.servicesp-desc{
font-size:17px;
line-height:1.7;
opacity:0.85;
}

.servicesp-shape{
position:absolute;
right:-70px;
bottom:-150px;
height:520px;
opacity:0.18;
pointer-events:none;
}


/* =========================================================
   EXPLORER
========================================================= */

.servicesp-explorer{
  padding: 55px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.servicesp-explorer-grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 55px;
}

/* Sticky nav */
.servicesp-nav{
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 14px;
  border: 2px solid rgba(12, 31, 56, 0.125);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.servicesp-nav-link,
.servicesp-nav-cta{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #0c2238;
  transition: 0.25s;
}

.servicesp-nav-link span strong,
.servicesp-nav-cta span strong{
  display: block;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.servicesp-nav-link span em,
.servicesp-nav-cta span em{
  display: block;
  font-size: 13px;
  opacity: 0.75;
  font-style: normal;
}

.servicesp-nav-link:hover,
.servicesp-nav-cta:hover{
  background: rgba(111, 180, 141, 0.12);
}

.servicesp-nav-link.is-active{
  background: rgba(111, 180, 141, 0.18);
}

.servicesp-nav-link:hover .icon-circle,
.servicesp-nav-link.is-active .icon-circle,
.servicesp-nav-cta:hover .icon-circle{
  background: #6fb48d;
  color: #0c2238;
}

.servicesp-nav-cta{
  margin-top: 10px;
  border-top: 1px solid rgba(12, 34, 56, 0.10);
  padding-top: 16px;
}

/* Content blocks */
.servicesp-content{
  display: grid;
  gap: 26px;
}

.servicesp-block{
  padding: 24px 22px;
  border-radius: 18px;
  border: 2px solid rgba(12, 31, 56, 0.125);
  background: #fff;
}

.servicesp-block:nth-child(even){
  background: rgba(255, 255, 255, 0.75);
}

.servicesp-block-head{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.servicesp-block-head h2{
  margin: 0;
  font-size: 22px;
  color: #0c2238;
}

.servicesp-block-head p{
  margin: 6px 0 0;
  color: #1c2f40;
  line-height: 1.7;
}

/* Bullets */
.servicesp-bullets{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
  color: #1c2f40;
}

.servicesp-bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.7;
}

.servicesp-bullets i{
  color: #6fb48d;
  margin-top: 4px;
}

.servicesp-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.servicesp-inline-cta{
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #0c2238;
  text-decoration: none;
  font-weight: 600;
}

.servicesp-inline-cta:hover .icon-circle{
  background: #6fb48d;
  color: #0c2238;
}
.servicesp-block{
  scroll-margin-top: 130px; 
}


#services{
  scroll-margin-top: 130px;
}

.servicesp-block{

  border: 2px solid rgba(12, 31, 56, 0.125);

  transition: 0.25s;

}

.servicesp-block.is-active{

  border-color: #6fb48d;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0),
    0 0 0 3px rgba(111, 180, 141, 0.049);

  background: #ffffff;

}


.servicesp-block.is-active .icon-circle{

  background: #6fb48d;
  color: #0c2238;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px){
  .servicesp-intro-inner{ grid-template-columns: 1fr; }
  .servicesp-intro-shape{ justify-content: flex-start; }
  .servicesp-intro-shape img{ transform: none; }

  .servicesp-intro-title{ font-size: 34px; }
  .servicesp-explorer-grid{ grid-template-columns: 1fr; }
  .servicesp-nav{ position: relative; top: auto; }
}

@media (max-width: 620px){
  .servicesp-intro-title{ font-size: 30px; }
  .servicesp-split{ grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT PAGE
========================================================= */

/* Top contact details */
.contactp-info{
  position: relative;
  background: #0c2238;
  color: #eaf2fb;
  overflow: hidden;
  padding: 90px 0 70px;
}

.contactp-shape{
  position: absolute;
  height: 520px;
  width: auto;
  opacity: 0.12;
  pointer-events: none;
  filter: saturate(0.95);
}

.contactp-shape--left{
  left: -220px;
  top: -180px;
}

.contactp-shape--right{
  right: -180px;
  bottom: -150px;
}

.contactp-info-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.contactp-info-head h2{
  margin: 0;
  font-size: 54px;
  line-height: 1.1;
  color: #ffffff;
}

.contactp-info-list{
  max-width: 760px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
}

.contactp-info-row{
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  padding: 18px 0;
}

.contactp-info-row > i{
  color: #6fb48d;
  font-size: 18px;
  margin-top: 2px;
}

.contactp-info-row h3{
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.contactp-info-row p{
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  color: #ffffff;
}

.contactp-info-row a{ color: #ffffff; text-decoration: none; }
.contactp-info-row a:hover{ text-decoration: underline; }

.contactp-divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.contactp-pill{
  margin-top: 26px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255,255,255,0.86);
  font-size: 20px;
}

/* Bottom form */
.contactp-formsection{
  position: relative;
  background: #0c2238;
  overflow: hidden;
  padding: 90px 0;
}

.contactp-form-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(111, 180, 141, 0.22), transparent 55%),
    linear-gradient(rgba(12, 34, 56, 0.86), rgba(12, 34, 56, 0.82)),
    url('images/home2.png');
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}

.contactp-form-inner{
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.contactp-form-title{
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 34px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
}

.contactp-formcard{
  width: min(780px, 100%);
  padding: 0 30px 30px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 34, 56, 0.384);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.contactp-formcard label{
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.contactp-formcard input,
.contactp-formcard textarea{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(8, 24, 40, 0.605);
  color: #ffffff;
  padding: 14px 14px;
  outline: none;
}

.contactp-formcard textarea{ resize: vertical; min-height: 160px; }

.contactp-formcard input:focus,
.contactp-formcard textarea:focus{ border-color: rgba(111, 180, 141, 0.9); }

.contactp-submit{
  margin-top: 24px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  background: #6fb48d;
  color: #0c2238;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.contactp-submit:hover{ transform: translateY(-1px); filter: brightness(1.03); }

.contactp-note{
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

@media (max-width: 980px){
  .contactp-info-head h2{ font-size: 38px; }
  .contactp-shape{ height: 420px; }
}

@media (max-width: 620px){
  .contactp-info{ padding: 70px 0 55px; }
  .contactp-formsection{ padding: 70px 0; }
  .contactp-formcard{ padding: 28px; }
  .contactp-form-title{ font-size: 28px; }
}

/* =========================
   LOGIN V2
========================= */
.loginv2{
  background: #0c2238;
}

.loginv2-hero{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
}

.loginv2-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(111, 180, 141, 0.28), transparent 30%),
    radial-gradient(circle at 82% 75%, rgba(111, 180, 141, 0.16), transparent 28%),
    url("images/home.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.loginv2-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 34, 56, 0.701) 0%, rgba(12, 34, 56, 0.674) 45%, rgba(12, 34, 56, 0.63) 100%);
}

.loginv2-wrap{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.loginv2-panel--info{
  color: #fff;
  padding-right: 40px;
}

.loginv2-kicker{
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #6fb48d;
}

.loginv2-title{
  margin: 0;
  font-size: 64px;
  line-height: 1.05;
  color: #fff;
}

.loginv2-description{
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

.loginv2-highlights{
  margin-top: 34px;
  display: grid;
  gap: 16px;
  max-width: 500px;
}

.loginv2-highlight{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-left: 3px solid #6fb48d;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.loginv2-highlight span{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(111,180,141,0.16);
  color: #6fb48d;
  font-size: 18px;
  flex-shrink: 0;
}

.loginv2-highlight p{
  margin: 0;
  font-size: 17px;
  color: #fff;
}

.loginv2-panel--form{
  justify-self: end;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 34px 34px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.25);
  position: relative;
}

.loginv2-title-row{
  display: flex;
  align-items: center;
  gap: 16px;
}

.loginv2-card-top{
  text-align: left;
  margin-bottom: 28px;
}

.loginv2-badge{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #0c2238;
  color: #6fb48d;
  font-size: 24px;
  margin-bottom: 18px;
}

.loginv2-card-top h2{
  margin: 0;
  font-size: 34px;
  color: #0c2238;
}

.loginv2-card-top p{
  margin: 10px 0 0;
  color: #4d5b68;
  font-size: 16px;
}

.loginv2-form{
  display: grid;
  gap: 18px;
}

.loginv2-field label{
  display: block;
  margin-bottom: 8px;
  color: #0c2238;
  font-size: 15px;
  font-weight: 700;
}

.loginv2-input{
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  border: 1px solid #d9e0e6;
  border-radius: 16px;
  padding: 0 16px;
  background: #f7f9fb;
  transition: 0.25s ease;
}

.loginv2-input:focus-within{
  border-color: #6fb48d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(111,180,141,0.12);
}

.loginv2-input i{
  color: #0c2238;
  font-size: 16px;
}

.loginv2-input input{
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #0c2238;
}

.loginv2-input input::placeholder{
  color: #8a97a3;
}

.loginv2-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.loginv2-remember{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #31404d;
  font-size: 15px;
}

.loginv2-remember input{
  accent-color: #6fb48d;
}

.loginv2-forgot{
  color: #0c2238;
  text-decoration: none;
  font-size: 15px;
}

.loginv2-forgot:hover{
  color: #6fb48d;
}

.loginv2-btn{
  height: 58px;
  border: none;
  border-radius: 16px;
  background: #0c2238;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.loginv2-btn:hover{
  background: #6fb48d;
  color: #0c2238;
}

.loginv2-demo{
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #6a7884;
}

@media (max-width: 1100px){
  .loginv2-wrap{
    grid-template-columns: 1fr;
  }

  .loginv2-panel--info{
    padding-right: 0;
  }

  .loginv2-panel--form{
    justify-self: start;
  }
}

@media (max-width: 768px){
  .loginv2-hero{
    padding: 130px 0 60px;
  }

  .loginv2-title{
    font-size: 44px;
  }

  .loginv2-description{
    font-size: 17px;
  }

  .loginv2-panel--form{
    padding: 30px 22px 24px;
    border-radius: 22px;
  }

  .loginv2-card-top h2{
    font-size: 28px;
  }
}


/* =========================================
   MOBILE HEADER
========================================= */
.hamburger{
  display: none;
  margin-left: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1002;
}

.hamburger span{
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-active span:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2){
  opacity: 0;
}

.hamburger.is-active span:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 900px){
  .header{
    overflow: visible;
  }

  .header-content{
    height: 90px;
    justify-content: space-between;
  }

  .logo img{
    max-width: 150px;
    width: 100%;
  }

  .login{
    display: none;
  }

  .hamburger{
    display: inline-flex;
  }

  .nav{
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
    background: rgba(12, 34, 56, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    z-index: 1001;
  }

  .nav.active{
    display: flex;
  }

  .nav a{
    display: block;
    width: 100%;
    padding: 16px 22px;
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a:last-child{
    border-bottom: none;
  }
}

@media (max-width: 480px){
  .container.header-content{
    max-width: 90%;
  }

  .logo img{
    max-width: 132px;
  }

  .nav a{
    font-size: 17px;
    padding: 15px 18px;
  }
}

