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

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

:root {
  --navy:        #0a1628;
  --navy-light:  #0f1f3d;
  --blue:        #1e5fd4;
  --blue-bright: #2d7aff;
  --cyan:        #00c6ff;
  --green:       #00e676;
  --white:       #ffffff;
  --gray:        #8899aa;
  --gold:        #ffb800;
  --red:         #ff4757;
  --card-bg:     rgba(255,255,255,0.035);
  --card-border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

a { text-decoration: none; }

/* ── LOCATION BANNER ── */
#location-banner {
  background: linear-gradient(90deg, rgba(0,198,255,0.12), rgba(45,122,255,0.12));
  border-bottom: 1px solid rgba(0,198,255,0.2);
  padding: 8px 2rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
  text-align: center;
}
.loc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
#loc-text { font-weight: 500; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
  gap: 1rem;
}
.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.header-call {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-number {
  font-family: 'Sora', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}
.btn-header {
  background: var(--green);
  color: #003d14;
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  padding: 8px 18px; border-radius: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-header:hover { background: #00f580; transform: scale(1.03); }

/* ── INDEPENDENT NOTICE BAR ── */
.independent-bar {
  background: rgba(255,183,0,0.08);
  border-bottom: 1px solid rgba(255,183,0,0.2);
  padding: 9px 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,220,100,0.9);
  line-height: 1.5;
}
.independent-bar strong { color: var(--gold); }

/* ── PAGE CONTENT WRAPPER ── */
.page-content {
  flex: 1;
  max-width: 860px; margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  width: 100%;
}
.page-hero {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.6rem;
}
.page-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.page-date { font-size: 0.8rem; color: var(--gray); }

.prose { line-height: 1.8; color: rgba(255,255,255,0.78); }
.prose h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin: 2rem 0 0.75rem;
  padding-left: 12px;
  border-left: 3px solid var(--blue-bright);
}
.prose h3 {
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 1.25rem 0 0.5rem;
}
.prose p { margin-bottom: 1rem; font-size: 0.92rem; }
.prose ul { margin: 0.5rem 0 1rem 1.25rem; }
.prose ul li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--cyan); }
.prose a:hover { text-decoration: underline; }

.notice-box {
  background: rgba(255,183,0,0.07);
  border: 1px solid rgba(255,183,0,0.2);
  border-radius: 10px; padding: 1.1rem 1.3rem;
  margin-bottom: 1.25rem; font-size: 0.88rem;
  color: rgba(255,220,100,0.9); line-height: 1.65;
}
.notice-box strong { color: var(--gold); }

.info-box {
  background: rgba(45,122,255,0.07);
  border: 1px solid rgba(45,122,255,0.2);
  border-radius: 10px; padding: 1.1rem 1.3rem;
  margin-bottom: 1.25rem; font-size: 0.88rem;
  color: rgba(180,210,255,0.9); line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { }
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.75rem;
}
.footer-about {
  font-size: 0.8rem; color: var(--gray);
  line-height: 1.7; max-width: 260px;
}
.footer-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); margin-bottom: 0.9rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: 0.82rem; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }

/* DISCLAIMER in footer */
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.38);
  line-height: 1.7;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.55); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem; color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: var(--cyan); }

/* ── CALL PULSE ── */
@keyframes callPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(0,230,118,0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .header-number { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  header { padding: 0 1rem; }
}

/* ── DARK MODE OVERRIDE FIXES ── */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
}
.page-title, .legal-title, h1.hero-h, h1.page-title {
  color: #ffffff !important;
}
.call-btn, .call-btn *, .cnum, .clbl, .call-text * {
  color: #003d14 !important;
}
.btn-call-main, .btn-call-main * {
  color: #003d14 !important;
}
.btn-call-cta, .btn-call-cta * {
  color: #003d14 !important;
}
.cta-btn, .cta-btn * {
  color: #003d14 !important;
}
.call-number, .call-label {
  color: #003d14 !important;
}
.hbtn {
  color: #003d14 !important;
}
.btn-header {
  color: #003d14 !important;
}

/* ═══ FOOTER ADDRESS ═══ */
.footer-address {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.8;
}
.footer-address .fa-title {
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.footer-address a {
  color: var(--cyan);
  text-decoration: none;
}
.footer-links li { list-style: none; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--cyan); }

/* ═══ PAGE SHARED HEADER ═══ */
.ibar {
  background: rgba(255,183,0,0.07);
  border-bottom: 1px solid rgba(255,183,0,0.2);
  padding: 9px 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,220,100,0.9);
  line-height: 1.5;
}
.ibar strong { color: var(--gold); }

/* ═══ ABOUT / SERVICES / CONTACT PAGE STYLES ═══ */
.page-hero-section {
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-section::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(45,122,255,0.12) 0%, transparent 70%);
  pointer-events:none;
}
.page-hero-section .ph-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.75rem;
}
.page-hero-section h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #ffffff !important;
  position: relative;
}
.page-hero-section h1 span {
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero-section .ph-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  max-width: 600px; margin: 0 auto 2rem; line-height: 1.75;
}

/* CARDS GRID */
.cards-section { padding: 4rem 2rem; }
.cards-inner { max-width: 1160px; margin: 0 auto; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color .25s, background .25s, transform .2s;
}
.info-card:hover {
  border-color: rgba(45,122,255,0.3);
  background: rgba(45,122,255,0.05);
  transform: translateY(-3px);
}
.ic-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(45,122,255,0.2), rgba(0,198,255,0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1rem;
}
.ic-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: #ffffff !important; margin-bottom: 0.5rem;
}
.ic-desc { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* ABOUT TEAM / VALUES SECTION */
.split-section {
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.split-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split-label { font-size: 0.7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: .6rem; }
.split-title { font-family: 'Sora',sans-serif; font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; color: #fff !important; }
.split-text { font-size: .93rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin-bottom: .9rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,0.72); line-height: 1.6; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.visual-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2rem;
}
.vb-stat { text-align: center; padding: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); }
.vb-stat:last-child { border-bottom: none; }
.vb-num { font-family: 'Sora',sans-serif; font-size: 2rem; font-weight: 800;
  background: linear-gradient(90deg,var(--blue-bright),var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vb-lbl { font-size: .8rem; color: var(--gray); margin-top: 4px; }

/* CONTACT PAGE */
.contact-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  padding: 0 2rem 5rem;
}
.contact-info-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem;
}
.cib-title { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1.1rem;
  color: #fff !important; margin-bottom: 1.5rem; }
.cib-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cib-row:last-child { border-bottom: none; }
.cib-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg,rgba(45,122,255,0.2),rgba(0,198,255,0.1));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.cib-label { font-size: .75rem; font-weight: 600; color: var(--cyan); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.cib-val { font-size: .9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.cib-val a { color: var(--cyan); text-decoration: none; }

/* CONTACT FORM */
.contact-form-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem;
}
.cfb-title { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1.1rem;
  color: #fff !important; margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,0.6); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 9px;
  padding: 11px 14px; font-size: .9rem; color: #fff !important;
  font-family: 'DM Sans',sans-serif; outline: none;
  transition: border-color .2s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: rgba(45,122,255,0.5); }
.form-row select option { background: #0f1f3d; color: #fff; }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg,#1e5fd4,#2d7aff);
  color: #fff !important; font-family: 'Sora',sans-serif;
  font-weight: 700; font-size: 1rem; padding: 14px;
  border: none; border-radius: 10px; cursor: pointer;
  transition: opacity .2s, transform .15s; margin-top: .5rem;
}
.btn-submit:hover { opacity: .88; transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 1.5rem;
  background: rgba(0,230,118,0.07); border: 1px solid rgba(0,230,118,0.2);
  border-radius: 10px; color: rgba(255,255,255,0.85); font-size: .95rem; line-height: 1.7;
}
.form-success .fs-icon { font-size: 2.5rem; margin-bottom: .75rem; }

/* MAP BOX */
.map-section { padding: 0 2rem 4rem; }
.map-inner { max-width: 1060px; margin: 0 auto; }
.map-box {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
}
.map-header { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 8px; }
.map-header span { font-weight: 600; font-size: .9rem; color: rgba(255,255,255,0.8); }
.map-embed { width: 100%; height: 280px; border: none; filter: brightness(.85) contrast(1.1); }

/* SERVICE DETAIL */
.service-detail {
  background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem;
}
.sd-inner { max-width: 1160px; margin: 0 auto; }
.sd-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.sd-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 1.5rem;
  display: flex; gap: 14px; align-items: flex-start;
}
.sd-card:hover { border-color: rgba(45,122,255,0.3); background: rgba(45,122,255,0.05); }
.sd-num { font-family: 'Sora',sans-serif; font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg,var(--blue-bright),var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  flex-shrink: 0; line-height: 1; margin-top: 4px; min-width: 30px; }
.sd-title { font-family: 'Sora',sans-serif; font-weight: 700; font-size: .95rem;
  color: #fff !important; margin-bottom: .4rem; }
.sd-text { font-size: .85rem; color: rgba(255,255,255,0.56); line-height: 1.65; }

/* SECTION TITLES */
.sec-head { margin-bottom: 2.5rem; }
.sec-head .s-label { font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: .5rem; }
.sec-head .s-title { font-family: 'Sora',sans-serif; font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800; letter-spacing: -.02em; color: #fff !important; }

/* CTA BOTTOM STRIP */
.cta-strip {
  padding: 3.5rem 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-strip h2 { font-family:'Sora',sans-serif; font-size:clamp(1.4rem,3vw,1.9rem);
  font-weight:800; color:#fff !important; margin-bottom:.75rem; }
.cta-strip p { color:rgba(255,255,255,0.52); font-size:.95rem; margin-bottom:1.5rem; }
.btn-cta-green {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg,#00c853,#00e676); color:#002a0d !important;
  font-family:'Sora',sans-serif; font-weight:800; font-size:1.15rem;
  padding:16px 36px; border-radius:12px; text-decoration:none;
  animation: callPulse 2.2s ease-in-out infinite;
  -webkit-text-fill-color: #002a0d !important;
}
.btn-cta-green:hover { animation:none; box-shadow:0 8px 30px rgba(0,230,118,0.4); }

@media(max-width:768px){
  .split-inner { grid-template-columns:1fr; }
  .cards-grid-3 { grid-template-columns:1fr; }
  .cards-grid-2 { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .sd-grid { grid-template-columns:1fr; }
  .form-grid-2 { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media(max-width:500px){
  .footer-top { grid-template-columns:1fr; }
}
