:root {
  --red: #E52222;
  --blue: #1565C0;
  --green: #2E7D32;
  --yellow: #F9A825;
  --dark: #0D0D0D;
  --dark2: #111827;
  --gray: #6B7280;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --grad1: linear-gradient(135deg, var(--red), #FF6B35);
  --grad2: linear-gradient(135deg, var(--blue), #4FC3F7);
  --grad3: linear-gradient(135deg, var(--green), #81C784);
  --grad4: linear-gradient(135deg, var(--yellow), #FFD54F);
  --grad-main: linear-gradient(135deg, var(--red) 0%, var(--blue) 50%, var(--green) 100%);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
}

*, *::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: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* TOP ANNOUNCEMENT */
.top-announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #202244, #32378d);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
}
.top-announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: announcementScroll 18s linear infinite;
}
.top-announcement-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 70px;
}
@keyframes announcementScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 125px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all .3s ease;
}
@media (max-width: 1366px) and (min-width: 1025px) {
  nav {
    padding: 0 2%;
  }
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.nav-logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  text-decoration: none;
}
.logo-img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;

}.logo-text { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.logo-text span { color: var(--red); }
.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links li a {
  padding: 8px 20px; border-radius: 8px;
   font-weight: 500; color: var(--dark);
  text-decoration: none; cursor: pointer;
  transition: all .25s;
}
@media (max-width: 1366px) and (min-width: 1025px) {
  .nav-links li a {
    padding: 7px 15px;
  }
}
.nav-links li a:hover, .nav-links li a.active {
  background: var(--red); color: #fff;
}
.nav-cta {
  background: var(--grad1); color: #fff;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600; font-size: .875rem;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(229,34,34,.35);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229,34,34,.45); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone i { color: #000; font-size: .9rem; }
.nav-location { position: relative; }
.nav-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #2f80ed, #62c8ff);  color: #ffffff;
  padding: 11px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0,0,0,.1);
}

@media (max-width: 1366px) and (min-width: 1025px) {
  .nav-location-btn {
    padding: 10px 10px;
  }
}
.nav-location-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-location.open .nav-location-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-location-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--dark);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-location-menu a:hover { background: var(--light); color: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: 126px; left: 0; right: 0;
  background: #fff; z-index: 999;
  padding: 20px 5%;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500; color: var(--dark); cursor: pointer;
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--red); }
.nav-phone{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #cfcfcf; /* Change color as needed */
    border-radius: 6px;
    text-decoration: none;
    background: transparent;
}
@media (max-width: 1366px) and (min-width: 1025px) {
    .nav-phone{
        padding: 10px 10px;
    }
}
/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  border: none; cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-red { background: var(--grad1); color: #fff; box-shadow: 0 4px 20px rgba(229,34,34,.35); }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(229,34,34,.45); }
.btn-blue { background: var(--grad2); color: #fff; box-shadow: 0 4px 20px rgba(21,101,192,.35); }
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(21,101,192,.45); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--red); border-radius: 2px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 560px; margin-top: 12px; line-height: 1.7; }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark2);
}
.hero-bg {
  position: absolute; inset: 0;
  background: #07111f;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
background: linear-gradient(
    90deg,
    rgba(4,12,24,.25) 0%,
    rgba(4,12,24,.12) 44%,
    rgba(4,12,24,.05) 100%
);
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .08;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--red); top: -150px; left: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--blue); bottom: -100px; right: 10%; animation: float 8s ease-in-out infinite; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--green); top: 30%; right: 30%; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; width: 100%;
  display: grid; grid-template-columns: minmax(0, 720px) 1fr; gap: 60px; align-items: center;
  padding-top: 134px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,34,34,.15); border: 1px solid rgba(229,34,34,.3);
  color: #FF6B6B; padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp .8s .2s both;
}
.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600;
  color: #fff; line-height: 1.05;
  animation: fadeUp .8s .4s both;
}
.hero-h1 .accent {
  background: var(--grad-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-p {
  color: rgba(255,255,255,.65); font-size: 1.1rem; line-height: 1.75;
  max-width: 500px; margin: 24px 0 40px;
  animation: fadeUp .8s .6s both;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s .8s both; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeUp .8s 1s both;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hero-visual {
  display: none;
}
.hero-card-stack { position: relative; height: 500px; }
.hero-main-card {
  position: absolute; right: 0; top: 20px;
  width: 85%; height: 420px; border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
}
.hero-main-card .building-icon { font-size: 8rem; opacity: .15; color: #fff; }
.hero-badge {
  position: absolute; left: 0; bottom: 80px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 16px 20px;
  color: #fff; min-width: 200px;
}
.hero-badge-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--yellow); }
.hero-badge-text { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero-pill {
  position: absolute; right: 10px; top: 10px;
  background: rgba(46,125,50,.2); border: 1px solid rgba(46,125,50,.4);
  color: #81C784; padding: 8px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #81C784; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── SCROLL INDICATOR ── */
.scroll-ind {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: .75rem;
}
.scroll-dot {
  width: 2px; height: 40px; background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden; position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 50%; background: #fff;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{top:-50%} 100%{top:100%} }

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--dark); padding: 50px 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; overflow: hidden;
}
.strip-item {
  padding: 30px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.strip-item:hover { background: rgba(229,34,34,.08); }
.strip-item:last-child { border-right: none; }
.strip-num {
  font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800;
  background: var(--grad-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.strip-label { color: rgba(255,255,255,.55); font-size: .85rem; margin-top: 4px; }

/* ── SECTION COMMON ── */
.section { padding: 55px 5%; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark2); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── ABOUT HOME ── */
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  width: 100%; height: 480px; border-radius: 24px;
  background: linear-gradient(135deg, #e8f4fd, #fce4ec);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.about-img-box img.about-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-box .big-icon { font-size: 10rem; opacity: .15; }
.about-float-card {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  min-width: 180px;
}
.about-float-card .num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--red); }
.about-float-card .txt { font-size: .8rem; color: var(--gray); margin-top: 4px; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--light); border: 1px solid #e5e7eb;
  border-radius: 50px; padding: 8px 16px;
  font-size: .83rem; font-weight: 500; color: var(--dark);
}
.chip i { color: var(--green); }

/* ── FUTURE SECTION ── */
.future-section {
  background:
    linear-gradient(135deg, rgba(5, 18, 32, .9), rgba(10, 35, 58, .78)),
    url("image/advp banner.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.future-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.2), transparent 70%);
  pointer-events: none;
}
.future-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.future-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: all .35s ease;
  position: relative; overflow: hidden;
}
.future-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .3s;
}
.future-card:nth-child(1)::before { background: var(--grad1); }
.future-card:nth-child(2)::before { background: var(--grad2); }
.future-card:nth-child(3)::before { background: var(--grad3); }
.future-card:nth-child(4)::before { background: var(--grad4); }
.future-card:nth-child(5)::before { background: var(--grad1); }
.future-card:nth-child(6)::before { background: var(--grad2); }
.future-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.3); }
.future-card:hover::before { opacity: 1; }
.future-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.future-icon.red { background: rgba(229,34,34,.2); color: #FF6B6B; }
.future-icon.blue { background: rgba(21,101,192,.2); color: #4FC3F7; }
.future-icon.green { background: rgba(46,125,50,.2); color: #81C784; }
.future-icon.yellow { background: rgba(249,168,37,.2); color: #FFD54F; }
.future-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.future-card p { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.65; }

/* ── SERVICES ── */
.services-section {
  background: linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.94));
  position: relative;
}

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service-card {
  border-radius: 20px; overflow: hidden;
  background: #fff; border: 1px solid #f0f0f0;
  transition: all .35s ease;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,.12); }
.service-card-header {
  height: 180px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,.5);
  overflow: hidden;
}
.service-card-header img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-card-header.s1 { background: var(--grad1); }
.service-card-header.s2 { background: var(--grad2); }
.service-card-header.s3 { background: var(--grad3); }
.service-card-header.s4 { background: var(--grad4); }
.service-card-header.s5 { background: linear-gradient(135deg, #7B1FA2, #E91E63); }
.service-card-header.s6 { background: linear-gradient(135deg, #00796B, #009688); }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card-body p { color: var(--gray); font-size: .875rem; line-height: 1.6; margin-bottom: 18px; }
.service-tag {
  display: inline-block; background: var(--light);
  border-radius: 6px; padding: 4px 10px;
  font-size: .75rem; font-weight: 600; color: var(--gray);
  margin-right: 6px; margin-bottom: 6px;
}
.service-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600; font-size: .875rem;
  margin-top: 8px; transition: gap .2s;
}
.service-card:hover .service-arrow { gap: 12px; }

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--dark); position: relative;
  padding: 100px 5%; overflow: hidden;
}
.video-section::before {
  content: ''; position: absolute; inset: 0;

}
.video-wrapper {
  max-width: 800px; margin: 0 auto; position: relative;
}
.video-thumb {
  width: 100%; aspect-ratio: 16/9; border-radius: 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden; position: relative;
}
.video-thumb .play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(229,34,34,.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; cursor: pointer;
  transition: transform .3s, background .3s;
  z-index: 2;
}
.video-thumb:hover .play-btn { transform: scale(1.1); background: var(--red); }
.video-thumb .bg-text {
  position: absolute; font-size: 12rem; font-weight: 800;
  color: rgba(255,255,255,.03); user-select: none; letter-spacing: -5px;
}
.video-stats { display: flex; justify-content: center; gap: 60px; margin-top: 50px; }
.v-stat { text-align: center; }
.v-stat-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--yellow); }
.v-stat-label { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 4px; }

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

/* Laptop View */
@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.price-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px; overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all .35s ease; position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,.12); }
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(229,34,34,.2);
}
.price-card-top { padding: 32px; }
.price-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 50px; padding: 4px 14px;
  margin-bottom: 16px;
}
.price-badge.blue { background: var(--blue); }
.price-badge.green { background: var(--green); }
.price-name { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; }
.price-amount { margin: 16px 0; }
.price-currency { font-size: 1.2rem; font-weight: 600; color: var(--red); vertical-align: top; margin-top: 8px; display: inline-block; }
.price-num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 700; color: var(--red); line-height: 1; }
.price-unit { color: var(--gray); font-size: .85rem; margin-left: 4px; }
.price-desc { color: var(--gray); font-size: .85rem; line-height: 1.6; }
.price-accordion { padding: 0 32px 24px; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid #f0f0f0; border-radius: 18px; overflow: hidden; background: #fff; }
.accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border: none; background: #ffffff; color: #111; font-weight: 700; cursor: pointer; text-align: left; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.accordion-header:hover,
.accordion-header:focus-visible {
  background: linear-gradient(135deg, rgba(47,128,237,.14), rgba(98,200,255,.22));
  color: #0e4f95;
  box-shadow: inset 0 0 0 1px rgba(47,128,237,.22);
}
.accordion-header.active {
  background: linear-gradient(135deg, rgba(47,128,237,.2), rgba(98,200,255,.3));
  color: #0b457f;
}
.accordion-header .accordion-icon { font-size: 1.1rem; transition: transform .25s ease; }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 20px; }
.accordion-body.open { max-height: 1000px; padding: 18px 20px 20px; }
.accordion-list { list-style: disc; margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.accordion-list li { font-size: .92rem; color: var(--gray); line-height: 1.6; }
.price-cta { padding: 0 32px 32px; margin-top: auto; }
.price-featured-tag {
  position: absolute; top: 16px; right: -30px;
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  padding: 6px 40px; transform: rotate(45deg);
}

/* ── TESTIMONIALS ── */
.testimonial-section { background: var(--dark2); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-6px); }
.testi-stars { color: var(--yellow); margin-bottom: 16px; font-size: 1rem; }
.testi-text { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #fff;
}
.testi-name { font-weight: 600; color: #fff; font-size: .9rem; }
.testi-loc { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ── PROJECTS ── */
.filter-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 10px 24px; border-radius: 50px;
  border: 1.5px solid #e5e7eb; background: #fff;
  font-weight: 500; font-size: .875rem; cursor: pointer;
  transition: all .25s;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--red); color: #fff; border-color: var(--red);
}
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  border-radius: 20px; overflow: hidden;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all .35s ease; cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,.12); }
.project-img {
  height: 220px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,.4);
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.project-img.p1 { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.project-img.p2 { background: linear-gradient(135deg, #2E7D32, #66BB6A); }
.project-img.p3 { background: linear-gradient(135deg, #E52222, #FF8A65); }
.project-img.p4 { background: linear-gradient(135deg, #F9A825, #FFCA28); }
.project-img.p5 { background: linear-gradient(135deg, #6A1B9A, #AB47BC); }
.project-img.p6 { background: linear-gradient(135deg, #00838F, #26C6DA); }
.project-img .overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.project-card:hover .overlay { opacity: 1; }
.project-body { padding: 20px; }
.project-status {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 4px; padding: 3px 10px; margin-bottom: 10px;
}
.status-done { background: rgba(46,125,50,.1); color: var(--green); }
.status-ongoing { background: rgba(21,101,192,.1); color: var(--blue); }
.status-upcoming { background: rgba(249,168,37,.1); color: #B8860B; }
.project-body h3 { font-size: 1rem; margin-bottom: 6px; }
.project-body p { color: var(--gray); font-size: .82rem; }
.project-meta { display: flex; align-items: center; gap: 6px; color: var(--gray); font-size: .8rem; margin-top: 10px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: 20px; overflow: hidden;
  background: #fff; border: 1px solid #f0f0f0;
  transition: all .35s ease; cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,.1); }
.blog-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,.5);
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.blog-img.b1 { background: linear-gradient(135deg, #1565C0, #0D47A1); }
.blog-img.b2 { background: linear-gradient(135deg, #2E7D32, #1B5E20); }
.blog-img.b3 { background: linear-gradient(135deg, #F57F17, #E65100); }
.blog-body { padding: 24px; }
.blog-cat { font-size: .75rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; }
.blog-body p { color: var(--gray); font-size: .85rem; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--gray); }
.blog-read { color: var(--red); font-weight: 600; font-size: .85rem; display: flex; align-items: center; gap: 6px; margin-top: 12px; transition: gap .2s; }
.blog-card:hover .blog-read { gap: 10px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-icon.red { background: rgba(229,34,34,.1); color: var(--red); }
.contact-icon.blue { background: rgba(21,101,192,.1); color: var(--blue); }
.contact-icon.green { background: rgba(46,125,50,.1); color: var(--green); }
.contact-detail-text strong { font-weight: 600; display: block; margin-bottom: 2px; }
.contact-detail-text span { color: var(--gray); font-size: .875rem; }
.contact-form { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: .875rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  transition: border-color .25s, box-shadow .25s;
  outline: none; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 4px rgba(229,34,34,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-section { margin-top: 60px; }
.map-box {
  width: 100%; height: 350px; border-radius: 20px;
  background: linear-gradient(135deg, #e8f0fe, #fce4ec);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(0,0,0,.15); overflow: hidden;
  position: relative;
}
.map-box iframe { width: 100%; height: 100%; border: none; border-radius: 20px; }

/* ── ABOUT PAGE ── */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--red), var(--blue), var(--green));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-bottom: 60px; align-items: center;
}
.timeline-item:nth-child(even) .timeline-content { order: 2; }
.timeline-item:nth-child(even) .timeline-visual { order: 1; }
.timeline-content { padding: 32px; }
.timeline-year {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  background: var(--grad-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.timeline-content h3 { font-size: 1.4rem; margin: 8px 0 12px; }
.timeline-content p { color: var(--gray); line-height: 1.7; }
.timeline-visual {
  height: 350px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.timeline-visual img.timeline-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tv1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.tv2 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.tv3 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.tv4 { background: linear-gradient(135deg, #fffde7, #fff9c4); }
.timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--red);
}

/* ── PRICING CALCULATOR ── */
.calc-wrapper {
  background: var(--dark2); border-radius: 28px; padding: 48px;
  margin-top: 60px;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.calc-form h3 { color: #fff; font-size: 1.5rem; margin-bottom: 28px; }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; color: rgba(255,255,255,.7); font-size: .875rem; margin-bottom: 8px; font-weight: 500; }
.calc-field input, .calc-field select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: .9rem; outline: none; transition: border-color .25s;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--red); }
.calc-field select option { background: #1a1a2e; }
.calc-result {
  background: rgba(229,34,34,.1); border: 1px solid rgba(229,34,34,.3);
  border-radius: 20px; padding: 36px; text-align: center;
}
.calc-result h3 { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 16px; }
.calc-price { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.calc-price-range { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: 8px; }
.calc-breakdown { margin-top: 24px; text-align: left; }
.calc-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: .875rem; }
.calc-line:last-child { border-bottom: none; font-weight: 700; color: #fff; font-size: 1rem; }

/* ── FOOTER ── */
footer {
  background:
    linear-gradient(135deg, rgba(5, 18, 32, .92), rgba(10, 35, 58, .82)),
    url("image/advp banner.png") center / cover no-repeat;
  padding: 70px 5% 30px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-main);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .875rem;
  cursor: pointer; transition: all .25s; text-decoration: none;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,.5); font-size: .875rem;
  text-decoration: none; cursor: pointer;
  transition: color .25s;
}
.footer-links li a:hover { color: var(--red); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-text { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; color: #fff; }
.footer-logo-text span { color: var(--red); }

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  text-decoration: none; transition: transform .25s;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-call { background: var(--blue); }

/* ── PAGE HERO ── */
.page-hero {
  height: 340px; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a, #0D1B2A);
  padding: 0 5%; margin-top: 126px;
}
.page-hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px; background: linear-gradient(to bottom, transparent, var(--white));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.6); margin-top: 12px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: .85rem; }
.breadcrumb span.active { color: var(--red); }
.breadcrumb i { color: rgba(255,255,255,.3); font-size: .7rem; }

/* ── ACHIEVEMENT CARDS ── */
.achievement-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.achievement-card {
  background: #fff; border-radius: 20px; padding: 32px;
  text-align: center; border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  transition: all .3s;
}
.achievement-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.ach-icon { font-size: 2.5rem; margin-bottom: 16px; }
.ach-img { width: 60px; height: 60px; margin-bottom: 16px; object-fit: cover; border-radius: 16px; display: inline-block; }
.ach-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; }
.ach-num.red { color: var(--red); }
.ach-num.blue { color: var(--blue); }
.ach-num.green { color: var(--green); }
.ach-num.yellow { color: var(--yellow); }
.ach-label { color: var(--gray); font-size: .875rem; margin-top: 4px; }

/* ── MISSION VISION ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 60px; }
.mv-card {
  border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
}
.mv-card.mission { background: linear-gradient(135deg, #fce4ec, #fff); border: 1px solid #f8bbd0; }
.mv-card.vision { background: linear-gradient(135deg, #e3f2fd, #fff); border: 1px solid #bbdefb; }
.mv-card .mv-icon { font-size: 3rem; margin-bottom: 20px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.mv-card p { color: var(--gray); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-home-grid { grid-template-columns: 1fr; }
  .future-cards { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 60px auto 0; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .achievement-grid { grid-template-columns: repeat(2,1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-actions { display: none; }
  .hamburger { display: flex; }
  #page-contact .section {
    padding: 46px 20px;
    overflow: hidden;
  }
  #page-contact .page-hero {
    height: 280px;
  }
  #page-contact .contact-grid {
    gap: 34px;
    min-width: 0;
  }
  #page-contact .contact-info,
  #page-contact .contact-form {
    min-width: 0;
  }
  #page-contact .contact-info h2 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }
  #page-contact .contact-info p {
    font-size: .98rem;
    margin-bottom: 24px;
  }
  #page-contact .contact-detail {
    display: grid;
    grid-template-columns: 48px minmax(1, 1fr);
    gap: 12px 16px;
    margin-bottom: 22px;
  }
  #page-contact .contact-addresses .contact-icon {
    grid-row: 1 / -1;
  }
  #page-contact .contact-addresses .contact-detail-text {
    padding-bottom: 12px;
    border-bottom: 1px solid #eef3f8;
  }
  #page-contact .contact-addresses .contact-detail-text:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  #page-contact .contact-detail-text {
    min-width: 0;
  }
  #page-contact .contact-detail-text span {
    display: block;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
  #page-contact .contact-form {
    padding: 24px 18px;
    border-radius: 18px;
  }
  #page-contact .map-section {
    margin-top: 36px;
  }
  #page-contact .map-box {
    min-height: 260px;
  }
  .about-strip { grid-template-columns: repeat(2,1fr); }
  .future-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .video-stats { flex-wrap: wrap; gap: 30px; }
  .timeline { overflow: hidden; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 50px; }
  .timeline-item:nth-child(even) .timeline-content { order: 1; }
  .timeline-item:nth-child(even) .timeline-visual { order: 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .achievement-grid { grid-template-columns: repeat(2,1fr); }
  .calc-wrapper { padding: 28px 10px; }
  .calc-grid { gap: 24px; }
  .calc-form, .calc-result { width: 100%; }
  .calc-result { padding: 28px; text-align: left; }
  .calc-result h3 { text-align: left; }
  .calc-price { font-size: 2.5rem; }
  .calc-price-range { font-size: .85rem; }
  .calc-line { font-size: .85rem; }
  .calc-field { margin-bottom: 16px; }
}

/* ── ANIMATE ON SCROLL ── */
.aos {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s, transform .7s; }
.aos-left.visible { opacity: 1; transform: translateX(0); }
.aos-right { opacity: 0; transform: translateX(30px); transition: opacity .7s, transform .7s; }
.aos-right.visible { opacity: 1; transform: translateX(0); }

/* delay variants */
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── ACTIVE NAV INDICATOR ── */
.nav-indicator {
  height: 3px; background: var(--grad1); position: absolute; bottom: 0;
  border-radius: 3px 3px 0 0; transition: all .3s;
}

/* ── WHATSAPP BAR ── */
.wa-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: #25D366; padding: 14px 20px;
  display: none; align-items: center; justify-content: center; gap: 10px;
  color: #fff; font-weight: 600; cursor: pointer;
  transform: translateY(100%); transition: transform .5s;
}
.wa-bar.show { display: flex; transform: translateY(0); }

/* ── COUNTER ANIMATION ── */
.counter { display: inline-block; }

/* LIGHT THEME OVERRIDES */
:root {
  --red: #2f80ed;
  --blue: #5bbcff;
  --green: #45a67a;
  --yellow: #f3b23c;
  --dark: #122033;
  --dark2: #f4f9ff;
  --gray: #5d6b7a;
  --light: #f7fbff;
  --white: #ffffff;
  --grad1: linear-gradient(135deg, #4aa3ff, #9bd7ff);
  --grad2: linear-gradient(135deg, #dff3ff, #ffffff);
  --grad3: linear-gradient(135deg, #e8f7ef, #ffffff);
  --grad4: linear-gradient(135deg, #fff7df, #ffffff);
  --grad-main: linear-gradient(135deg, #2f80ed 0%, #62c8ff 52%, #94d8ff 100%);
  --glass: rgba(255,255,255,.78);
  --glass-border: rgba(72,139,191,.18);
}

body {
  background: #ffffff;
  color: #122033;
}
.map-box{
    height:350px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:100%;
    display:block;
}
.top-announcement {
  background: linear-gradient(90deg, #dff3ff, #f7fbff);
  color: #18395b;
  border-bottom: 1px solid #c9e8fb;
}

nav {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #dbeaf5;
  box-shadow: 0 6px 24px rgba(47,128,237,.08);
}

.nav-links li a:hover,
.nav-links li a.active,
.nav-cta,
.btn-red {
  background: linear-gradient(135deg, #2f80ed, #62c8ff);
  color: #fff;
  box-shadow: 0 8px 24px rgba(47,128,237,.22);
}

.hero,

.page-hero {
  background: linear-gradient(135deg, #f7fbff 0%, #eaf7ff 48%, #ffffff 100%) !important;
}

.hero-grid {
  opacity: .5;
  background-image:
    linear-gradient(rgba(91,188,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,188,255,.16) 1px, transparent 1px);
}

.hero-orb {
  filter: blur(90px);
  opacity: .18;
}

.hero-h1,
.hero-stat-num,
.page-hero h1,
.testimonial-section .section-title,
.video-section .section-title {
  color: #122033 !important;
}

.hero-p,
.hero-stat-label,
.page-hero p,
.video-section .section-sub,
.process-content p,
.breadcrumb span,
.breadcrumb i {
  color: #5d6b7a !important;
}

.hero .hero-h1,
.hero .hero-stat-num {
  color: #ffffff !important;
}

.hero .hero-p,
.hero .hero-stat-label {
  color: rgba(255,255,255,.78) !important;
}

.hero {
  background: #07111f !important;
}

.hero .hero-grid {
  opacity: .12;
  
}

.hero .hero-tag {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #ffffff;
  margin-top: 30px;
}

.hero-tag {
  background: #e9f6ff;
  border-color: #b9e1fb;
  color: #2f80ed;
}

.btn-outline {
  background: #ffffff;
  color: #2f80ed;
  border-color: #b9e1fb;
  box-shadow: 0 8px 24px rgba(47,128,237,.1);
}

.btn-outline:hover {
  background: #edf8ff;
  border-color: #62c8ff;
}

.hero-main-card {
  background: linear-gradient(135deg, #ffffff, #e9f6ff);
  border-color: #c9e8fb;
  box-shadow: 0 28px 70px rgba(47,128,237,.14);
}

.hero-main-card .building-icon {
  color: #2f80ed;
  opacity: .14;
}

.hero-badge,
.v-stat,
.future-card,
.testi-card,
.calc-wrapper {
  background: #ffffff !important;
  border: 1px solid #dbeaf5 !important;
  box-shadow: 0 18px 45px rgba(47,128,237,.1);
  color: #122033 !important;
}

.hero-badge-text,
.future-card p,
.testi-text,
.testi-loc,
.v-stat-label,
.calc-price-range,
.calc-line,
.footer-brand p,
.footer-contact-item span,
.footer-links li a,
.footer-bottom p {
  color: #5d6b7a !important;
}

.about-strip,
.testimonial-section,
.section-dark,
.page-hero {
  background: linear-gradient(146deg, #d5ebff 0%, #ecf8ff 100%) !important
}

.section-light {
  background: #f7fbff;
}

.about-strip {
  border-top: 1px solid #dbeaf5;
  border-bottom: 1px solid #dbeaf5;
}

.strip-item {
  border-right-color: #dbeaf5;
}

.strip-label,
.scroll-ind {
  color: #5d6b7a;
}

.scroll-dot {
  background: #d3eaf8;
}

.scroll-dot::after {
  background: #2f80ed;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 13, 24, .78), rgba(5, 13, 24, .42) 58%, rgba(5, 13, 24, .18)),
}

.about-page-hero::before {
  inset: 0;
  height: auto;
  background: linear-gradient(to bottom, transparent 68%, var(--white));
  z-index: 1;
}

.about-page-hero .hero-orb {
  display: none;
}

.about-page-hero h1 {
  color: #fff !important;
}

.about-page-hero p,
.about-page-hero .breadcrumb span,
.about-page-hero .breadcrumb i {
  color: rgba(255,255,255,.72) !important;
}

.about-page-hero .breadcrumb span.active {
  color: #ff4b4b !important;
}

.mv-bg-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 16, 30, .78), rgba(6, 16, 30, .82)),
    url("https://images.pexels.com/photos/8961008/pexels-photo-8961008.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat !important;
}

.mv-bg-section > * {
  position: relative;
  z-index: 1;
}

.mv-bg-section .section-title {
  color: #fff !important;
}

.mv-bg-section .section-label {
  color: #ff6b6b;
}

.mv-bg-section .mv-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.future-card h3,
.testi-name,
.calc-form h3,
.calc-line:last-child,
.footer-col h4,
.footer-logo-text {
  color: #122033 !important;
}

.video-thumb {
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(47,128,237,.12);
}

.video-thumb .bg-text,
.bg-text {
  color: rgba(47,128,237,.08) !important;
}

.calc-field label,
.calc-result h3 {
  color: #5d6b7a !important;
}

.calc-wrapper p {
  color: #5d6b7a !important;
}

.calc-field input,
.calc-field select {
  background: #f7fbff;
  border-color: #dbeaf5;
  color: #122033;
}

.calc-field select option {
  background: #ffffff;
}

footer {
  border-top: 1px solid #dbeaf5;
}

footer::before {
  background: linear-gradient(90deg, #2f80ed, #9bd7ff);
}

.social-btn {
  background: #ffffff;
  border-color: #dbeaf5;
  color: #2f80ed;
}

.footer-logo-img {
  width: fit-content;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top-color: #dbeaf5;
}

footer .footer-brand p,
footer .footer-contact-item span,
footer .footer-links li a,
footer .footer-bottom p {
  color: rgba(255,255,255,.68) !important;
}

footer .footer-col h4,
footer .footer-logo-text {
  color: #ffffff !important;
}

footer .social-btn {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
}

footer .footer-bottom {
  border-top-color: rgba(255,255,255,.16);
}

footer .footer-phone-list a,
footer .footer-phone-list a:visited,
footer .footer-phone-list a:hover,
footer .footer-phone-list a:active,
footer .footer-contact-item a[href^="tel"],
footer .footer-contact-item a[href^="tel"]:visited,
footer .footer-contact-item a[href^="tel"]:hover,
footer .footer-contact-item a[href^="tel"]:active {
  color: rgba(255,255,255,.68) !important;
  text-decoration: none;
}

.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 22px;
  background: rgba(6, 16, 30, .58);
}

.quote-popup.open {
  display: flex;
}
.mobile-dropdown {
    width: 100%;
}

.dropdown-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.dropdown-content {
    display: none;
    padding-left: 20px;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
}
.quote-popup-panel {
  position: relative;
  width: min(300px, 100%);
  min-height: 300px;
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}
.dropdown-content a {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
}
.quote-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 32, 51, .88);
  color: #ffffff;
  cursor: pointer;
}

  .nav-location-btn {
    text-decoration: none;
}

.nav-location-btn:hover {
    text-decoration: none;
}

.quote-popup-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  background: #f2f7fb;
}

.quote-popup-media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.quote-popup-form {
  padding: 15px 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-popup-kicker {
  width: fit-content;
  padding: 8px 13px;
  background: #f6c343;
  color: #122033;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quote-popup-form h2 {
  margin: 0 0 3px;
  color: #122033;
  font-size: 1.45rem;
  line-height: 1.18;
}

.quote-popup-form label {
  display: grid;
  gap: 6px;
  color: #122033;
  font-size: .86rem;
  font-weight: 700;
}

.quote-popup-form input {
  width: 100%;
  height: 42px;
  border: 1px solid #dbeaf5;
  border-radius: 4px;
  padding: 0 12px;
  color: #122033;
  background: #f7fbff;
  font: inherit;
}

.quote-popup-form input:focus {
  outline: 2px solid rgba(47,128,237,.18);
  border-color: #2f80ed;
}

.quote-popup-submit {
  height: 44px;
  margin-top: 4px;
  border: 0;
  border-radius: 4px;
  background: #122033;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.quote-popup-submit i {
  margin-right: 7px;
  color: #35d46a;
}

body.quote-popup-lock {
  overflow: hidden;
}

@media (max-width: 640px) {
  .quote-popup {
    align-items: center;
    justify-content: center;
    padding: 18px;
  }

  .quote-popup-panel {
    max-width: 360px;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .quote-popup-media {
    display: none;
  }

  .quote-popup-form {
    padding: 28px 22px 24px;
  }
}
