/* ============================================
   SERENI CARE — BRAND STYLESHEET
   Designed & Marketed by AR Digital Solutions
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --navy:       #1A2B4A;
  --royal:      #1E4FA3;
  --teal:       #1A7A8A;
  --teal-dark:  #0F5F6E;
  --teal-light: #4FA8B8;
  --purple:     #5B4FAE;
  --green:      #2EBA6A;
  --green-dark: #1E9A52;
  --green-light:#5DD68A;
  --light:      #F5F8FF;
  --cream:      #EAF0F8;
  --border:     #D8E4EF;
  --mid:        #5A6E80;
  --charcoal:   #1C2B3A;

  --grad-brand: linear-gradient(135deg,#5B4FAE 0%,#1A2B4A 38%,#1A7A8A 68%,#2EBA6A 100%);
  --grad-hero:  linear-gradient(135deg,#1A2B4A 0%,#1A7A8A 58%,#2EBA6A 100%);
  --grad-btn:   linear-gradient(135deg,#1E4FA3,#1A7A8A);
  --grad-purple:linear-gradient(135deg,#5B4FAE 0%,#1A2B4A 100%);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: var(--navy); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; }
ul { list-style: none; }

/* ---- NAVIGATION ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(26,43,74,0.07);
  padding: 0 40px;
  height: 95px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 80px; width: 80px; object-fit: contain; border-radius: 50%; }
.nav-logo-fallback {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.nav-brand strong {
  display: block; font-size: 19px; font-weight: 700; line-height: 1.1;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-brand small {
  font-size: 9.5px; color: var(--mid); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 15px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--mid);
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy); background: var(--cream);
}
.nav-cta {
  background: var(--grad-btn); color: #fff !important;
  padding: 10px 30px; border-radius: 100px;
  font-size: 16px; font-weight: 600; border: none;
  box-shadow: 0 4px 16px rgba(26,122,138,0.28);
  transition: all 0.2s;
}
.nav-cta:hover { color: #1c5e9a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,138,0.35); opacity: 0.92; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(26,43,74,0.12);
  z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 10px;
  font-size: 15px; font-weight: 500; color: var(--navy);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--cream); color: #1c6697; }
.mobile-menu .m-cta {
  margin-top: 8px;
  background: var(--grad-btn); color: #fff;
  padding: 13px 20px; border-radius: 100px;
  text-align: center; font-weight: 600; font-size: 14px;
}
.m-cta

/* ---- BUTTONS ---- */

  .btn-primary {
  display: inline-block;
  background: var(--grad-btn) !important; color: #fff;
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600; border: none;
  box-shadow: 0 6px 20px rgba(26,122,138,0.28);
  transition: all 0.25s; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,122,138,0.35); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--navy); transition: all 0.25s; cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white {
  display: inline-block;
  background: #fff; color: var(--navy);
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600; border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.25s; cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ---- SECTION HELPERS ---- */
.sec { padding: 72px 40px; }
.sec-sm { padding: 48px 40px; }
.sec-cream { background: var(--cream); }
.sec-navy  { background: var(--navy); }
.sec-grad  { background: var(--grad-hero); }

.sec-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.sec-tag::before { content: ''; width: 22px; height: 2px; background: var(--green); border-radius: 2px; flex-shrink: 0; }
.sec-tag.light { color: var(--green-light); }
.sec-tag.light::before { background: var(--green); }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 600; line-height: 1.14;
  color: var(--navy); margin-bottom: 16px;
}
.sec-title em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-title.white { color: #fff; }
.sec-title.white em { -webkit-text-fill-color: var(--green-light); background: none; }
.sec-body { font-size: 15px; color: var(--mid); line-height: 1.85; max-width: 620px; }

/* ---- GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-2-start { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--grad-hero);
  padding: 72px 40px 64px;
  position: relative; overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(46,186,106,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 60%, rgba(91,79,174,0.12) 0%, transparent 55%);
}
/*.page-hero-inner { position: relative; z-index: 1;  }*/
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 600; line-height: 1.1; color: #fff;
  max-width: 1000px; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--green-light); }
.page-hero .hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.72);
  max-width: 580px; line-height: 1.82;
  margin: 0px auto;
}

/* ---- INFO BOX (dark gradient card) ---- */
.info-box {
  background: var(--grad-hero); border-radius: 20px;
  padding: 36px; color: #fff; position: relative; overflow: hidden;
}
.info-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(46,186,106,0.14);
}
.info-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; margin-bottom: 14px; }
.info-box p  { font-size: 14px; color: rgba(255,255,255,0.74); line-height: 1.82; margin-bottom: 12px; }
.info-box p:last-child { margin-bottom: 0; }

/* ---- SUPPORT ITEMS ---- */
.sup-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.sup-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; padding: 14px 18px; border-radius: 12px;
  border-left: 3px solid var(--teal);
  box-shadow: 0 2px 8px rgba(26,43,74,0.05);
}
.sup-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }
.sup-item p { font-size: 14px; color: var(--navy); line-height: 1.6; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 800px; margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 15px; font-weight: 500; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q .arr {
  font-size: 22px; color: var(--teal); font-weight: 300;
  transition: transform 0.3s; flex-shrink: 0; line-height: 1;
}
.faq-item.open .arr { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 16px; }
.faq-a p { font-size: 14px; color: var(--mid); line-height: 1.82; }

/* ---- SERVICE CARDS ---- */
.svc-card {
  background: #fff; border-radius: 18px; padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-btn); transform: scaleX(0); transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(26,43,74,0.1); border-color: var(--teal-light); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.svc-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin: 20px 0px 15px 0px; line-height: 1.3; }
.svc-card p  { font-size: 13px; color: var(--mid); line-height: 1.75; }
.svc-link { display: inline-block; margin: 15px 0px; font-size: 12px; font-weight: 600; color: var(--teal); transition: gap 0.2s; }
.svc-card.dark { background: var(--grad-hero); border-color: transparent; }
.svc-card.dark h3 { color: #fff; }
.svc-card.dark p  { color: rgba(255,255,255,0.7); }
.svc-card.dark .svc-icon { background: rgba(255,255,255,0.12); }
.svc-card.dark .svc-link { color: var(--green-light); }

/* ---- CONDITION TAGS ---- */
.cond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.cond-tag {
  background: #fff; border-radius: 10px; padding: 13px 16px;
  font-size: 13px; color: var(--navy); border-left: 3px solid var(--teal);
  line-height: 1.4; box-shadow: 0 2px 8px rgba(26,43,74,0.05);
}

/* ---- SUBURB TAGS ---- */
.suburb-box {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px; padding: 28px;
}
.suburb-box h4 { font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; font-weight: 400; margin-bottom: 8px; }
.suburb-box p  { font-size: 13px; color: rgba(255,255,255,0.58); margin-bottom: 16px; line-height: 1.7; }
.suburb-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.stag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.82); padding: 5px 13px; border-radius: 100px; font-size: 11px; }

/* ---- FEATURE DOTS ---- */
.feat-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.feat-item { display: flex; gap: 12px; align-items: flex-start; }
.feat-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }
.feat-item p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.72; }

/* ---- VALUE CARDS ---- */
.value-card {
  background: #fff; border-radius: 16px; padding: 24px;
  text-align: center; border-top: 3px solid var(--teal);
  box-shadow: 0 2px 12px rgba(26,43,74,0.06);
}
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--mid); line-height: 1.72; }

/* ---- MISSION CARDS ---- */
.mission-card {
  background: var(--cream); border-radius: 14px; padding: 22px;
  border-left: 3px solid var(--teal); margin-bottom: 14px;
}
.mission-card:last-child { margin-bottom: 0; }
.mission-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.mission-card p  { font-size: 13px; color: var(--mid); line-height: 1.72; }

/* ---- CTA BAR ---- */
.cta-bar {
  background: var(--charcoal); padding: 56px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-bar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 400; color: #fff; line-height: 1.25;
}
.cta-bar h3 em { font-style: italic; color: var(--green-light); }

/* ---- HERO SPLIT ---- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; padding: 72px 40px;  background: var(--light) }
.hero-split-left {display: flex; flex-direction: column; justify-content: center; padding-right: 30px;}
.hero-split-right {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
}
.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--green); border-radius: 2px; }
.hero-split-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px; font-weight: 600; line-height: 1.1;
  color: var(--navy); margin-bottom: 18px;
}
.hero-split-left h1 em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-split-left p { font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: 30px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right-card {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 18px; padding: 26px;
  z-index: 2;
}
.hero-right-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; margin-bottom: 8px; font-weight: 400; }
.hero-right-card p  { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.72; }
.hero-stats { display: flex; gap: 24px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14); }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 30px; color: #fff; font-weight: 400; line-height: 1; }
.hero-stat span   { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-badge { display: inline-block; background: rgba(46,186,106,0.2); color: var(--green-light); padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; margin-top: 14px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: start; }
.c-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.c-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-btn); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.c-item h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.c-item p, .c-item a { font-size: 15px; color: var(--navy); line-height: 1.65; }
.svc-list-links { margin-top: 28px; }
.svc-list-links h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.svc-list-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--navy); transition: color 0.2s;
}
.svc-list-links a:last-child { border-bottom: none; }
.svc-list-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.svc-list-links a:hover { color: var(--teal); }

.form-card {
  background: #fff; border-radius: 20px; padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 28px rgba(26,43,74,0.07);
}
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.form-sub { font-size: 14px; color: var(--mid); margin-bottom: 26px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
.fg input, .fg select, .fg textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--navy);
  background: var(--light); outline: none; transition: border-color 0.2s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); }
.fg textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 100px;
  background: var(--grad-btn); color: #fff; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; margin-top: 4px;
  box-shadow: 0 6px 20px rgba(26,122,138,0.28);
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(26,122,138,0.35); }
.form-note { font-size: 11px; color: var(--mid); text-align: center; margin-top: 12px; line-height: 1.65; }

/* ---- ACTIVITY CARDS ---- */
.act-card {
  background: var(--cream); border-radius: 12px; padding: 18px;
  border-top: 3px solid var(--teal);
}
.act-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.act-card p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ---- FOOTER ---- */
.footer-main {
  background: var(--charcoal); color: #fff;
  padding: 56px 40px 32px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 36px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.footer-logo img { height: 42px; border-radius: 50%; filter: brightness(0) invert(1) opacity(0.85); }
.footer-logo strong { font-size: 17px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  background: #111E33; padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-bottom .designer { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-bottom .designer a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom .designer a:hover { color: #fff; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--grad-hero); padding: 48px 40px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 40px; color: #fff; font-weight: 400; line-height: 1; }
.stat-item span { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; display: block; }

/* ---- WHY LIST ---- */
.why-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.why-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; }
.why-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 14px; }

footer .cta-bar { background: #111E33 !important; padding: 17px; gap: 20px;}
.footer_box{background: #1c2b3a; padding: 30px 40px 32px; gap: 20px !important;}
footer .cta-bar img{width: 150px; border-radius: 10px;}
footer .cta-bar h3 { font-size: 26px; margin-bottom: 10px;}

/*Referral css start*/
#referral .form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}
#referral .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

#referral .radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
#referral .radio-group input{width: auto;}
#referral .radio-group {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--navy);
    background: var(--light);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.logo-rp img {height: 38px; border-radius: 3px;}
.top-con, #logo_rp{display: none !important;} 

/*Referral css end*/
/* ============================================
   RESPONSIVE — TABLET (max 1025px)
   ============================================ */
   
@media (max-width: 1025px) {
    footer .cta-bar h3 { font-size: 20px;}
    .hero-split-left h1 { font-size: 37px;}
    .nav-links {gap: 10px;}
    .nav-links a {font-size: 13px;}
    .nav-cta {padding: 10px 22px; font-size: 14px;}
}
@media (max-width: 960px) {
    .top-con, #logo_rp{display: block !important;}
    #logo_rp img { height: 55px;}
    .logo-rp{display: none;}
    .footer_box { padding: 0px 24px 28px;}
  .navbar { padding: 0px 24px; }
  .top-bar { padding: 10px 18px !important; }
  .nav-links, .nav-cta { display: none; }
  .mobile-submenu{ display: inline-grid;}
  .hamburger { display: flex; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-left { padding: 30px 20px 30px; }
  .hero-split-left h1 { font-size: 38px; }
  .hero-split-right { min-height: 360px; }

  .sec, .sec-sm { padding: 52px 24px; }
  .page-hero { padding: 52px 24px 48px; }
  .page-hero h1 { font-size: 38px; }

  .grid-2, .grid-2-start { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cond-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-bar { flex-direction: column; text-align: center; padding: 40px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 24px 28px; }
  .footer-bottom { padding: 14px 24px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .sec-title { font-size: 30px; }
  footer .cta-bar { flex-direction: row; text-align: left; padding: 20px 24px;}
}
@media (max-width: 767px) {
#referral .form-row-3, #referral .form-row, #careers .form-row, #contact .form-row {grid-template-columns: 1fr;}}
/* ============================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================ */
@media (max-width: 600px) {
   .logo_grid { flex-wrap: wrap;}
  .logo-div { width: 60px !important;}
  .navbar { padding: 0 18px; }
  .top-bar { padding: 10px 18px !important; }
  .nav-brand strong { font-size: 16px; }
  .mobile-menu { top: 96px; padding: 16px 18px; }
  .hero-split { padding: 60px 22px;}
  .hero-split-left { padding: 0px 0px 20px;}
  .hero-split-left h1 { font-size: 30px; }
  .hero-split-left p { font-size: 14px; }
  .hero-split-right { min-height: 300px; }
  .hero-right-card { bottom: 18px; left: 18px; right: 18px; padding: 20px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 22px; }

  .sec, .sec-sm { padding: 44px 18px; }
  .page-hero { padding: 44px 18px 40px; }
  .page-hero h1 { font-size: 30px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 36px 18px; }
  .stat-item strong { font-size: 30px; }

  .sec-title { font-size: 26px; }
  .form-card { padding: 24px 18px; }
  .info-box { padding: 24px 20px; }
  .cta-bar { padding: 36px 18px; }
  .cta-bar h3 { font-size: 22px; }

  .footer-main, .footer_box { padding: 36px 18px 24px !important; }
  .footer-bottom { padding: 12px 18px; }
   footer .cta-bar h3 { font-size: 18px;}
   footer .cta-bar {padding: 15px 15px; gap: 15px;}
   footer .cta-bar img { width: 90px;}
   .footer-desc {font-size: 12px; line-height: 16px;}
}
@media (max-width: 500px) {   footer .cta-bar h3 { font-size: 14px;}}

.c-icon img{width: 25px;}
.img-round{border-radius: 15px;}
.mb_20 {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.drop-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: auto;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.3s;
}

.dropdown.active .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu a {
    display: flex;
    padding: 10px 15px;
}
/* MOBILE */
.mobile-menu {
  display: none;
  flex-direction: column;
}

.mobile-menu.show {
  display: flex;
}

.mobile-dropdown {
  margin-top: 10px;
}

.mobile-drop-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 0;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 300px;
}
.success-msg {
  color: #155724;
  background: #d4edda;
  padding: 10px;
  margin-top: 15px;
  border-radius: 6px;
}

.error-msg {
  color: #721c24;
  background: #f8d7da;
  padding: 10px;
  margin-top: 15px;
  border-radius: 6px;
}

.logo-div {
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    width: 100px;
    justify-content: center;
    display: flex;
}

.top-bar { padding: 10px 40px; background: #105589;}
.top-bar a {
    font-size: 14px;
    color: #FFF;
    display: flex;
    align-items: center;
}
.top-con a svg {margin-right: 8px;}
.cont_detail {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.logo_grid .logo-rp img{height: 55px; margin-bottom: 15px;}
.logo_grid {
    display: flex;
    gap: 15px;
}
EOF
echo "style.css done"