:root {
  --navy: #071a33;
  --blue: #14529d;
  --blue2: #1e73d8;
  --orange: #ff6b35;
  --amber: #ffb703;
  --text: #182230;
  --muted: #667085;
  --bg: #f6f9fd;
  --white: #fff;
  --line: #e5eaf1;
  --green: #19a974;
  --shadow: 0 20px 60px rgba(7, 26, 51, .10);
  --radius: 18px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.topbar {
  background: var(--navy);
  color: #dbe8f8;
  font-size: 13px
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0
}

.topbar a {
  color: #fff
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand img {
  width: 180px;
  height: auto
}

.main-nav ul {
  display: flex;
  gap: 27px;
  align-items: center
}

.main-nav a {
  font-weight: 700;
  font-size: 14px;
  color: #334155
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue)
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--navy)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  padding: 12px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s;
  cursor: pointer
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff8b45);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 53, .22)
}

.btn-blue {
  background: var(--blue);
  color: #fff
}

.btn-outline {
  border-color: #cdd8e6;
  color: var(--navy);
  background: #fff
}

.btn-white {
  background: #fff;
  color: var(--blue)
}

.btn-whatsapp {
  background: #19a974;
  color: #fff
}

.hero {
  background: radial-gradient(circle at 85% 10%, #dcecff 0, #fff 38%), linear-gradient(180deg, #f7fbff, #fff);
  padding: 78px 0 55px;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 55px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 99px;
  background: #fff1eb;
  color: #d94d20;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid #ffd5c6
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 17px 0;
  color: var(--navy)
}

.hero h1 span {
  color: var(--orange)
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px
}

.trust-item strong {
  display: block;
  font-size: 25px;
  color: var(--navy)
}

.trust-item small {
  color: var(--muted)
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 28px 40px rgba(20, 82, 157, .15))
}

.logos {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.logos .container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center
}

.logos strong {
  font-size: 14px;
  color: #64748b
}

.location-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.location-pills span {
  padding: 7px 12px;
  border-radius: 99px;
  background: #eef5ff;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px
}

.section {
  padding: 82px 0
}

.section.alt {
  background: var(--bg)
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px
}

.kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px
}

.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--navy);
  margin: 8px 0 12px
}

.section-head p,
.lede {
  color: var(--muted)
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(7, 26, 51, .05);
  transition: .25s
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #c9d9ec
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eaf3ff, #fff1eb);
  font-size: 25px;
  margin-bottom: 20px
}

.card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 21px
}

.card p {
  color: var(--muted);
  font-size: 14px
}

.card a {
  font-weight: 800;
  color: var(--blue)
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch
}

.price-card {
  position: relative
}

.price-card.featured {
  border: 2px solid var(--orange);
  transform: translateY(-8px)
}

.badge {
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 900
}

.price {
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  margin: 14px 0 4px
}

.price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600
}

.features {
  margin: 20px 0 25px
}

.features li {
  padding: 8px 0;
  border-bottom: 1px dashed #e5eaf1;
  font-size: 14px;
  color: #475467
}

.features li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 9px
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px
}

.stat {
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px
}

.stat strong {
  font-size: 32px;
  color: var(--blue);
  display: block
}

.stat span {
  font-size: 13px;
  color: var(--muted)
}

.locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.location-card {
  min-height: 155px;
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0b2a4d, #14529d);
  position: relative;
  overflow: hidden
}

.location-card:nth-child(3n) {
  background: linear-gradient(135deg, #a83d1c, #ff6b35)
}

.location-card:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 20px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  right: -45px;
  bottom: -45px
}

.location-card h3 {
  margin: 0 0 4px;
  color: #fff
}

.location-card p {
  color: #dce8f7;
  font-size: 13px;
  margin: 0
}

.location-card a {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900
}

.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy), #14529d);
  color: #fff
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.cta h2 {
  color: #fff;
  margin: 0;
  font-size: 40px
}

.cta p {
  color: #dbe8f8;
  margin: 8px 0 0
}

.page-hero {
  padding: 65px 0;
  background: linear-gradient(135deg, #071a33, #14529d);
  color: #fff
}

.page-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 10px
}

.page-hero p {
  color: #dce8f7;
  max-width: 750px
}

.breadcrumb {
  font-size: 13px;
  color: #dce8f7;
  margin-bottom: 15px
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center
}

.check-list li {
  margin: 12px 0;
  color: #475467
}

.check-list li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 35px
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 20px
}

.contact-row {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line)
}

.contact-row strong {
  display: block;
  color: var(--navy)
}

.contact-row span {
  color: var(--muted);
  font-size: 14px
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

.form-field {
  margin-bottom: 15px
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  font: inherit;
  outline: none;
  background: #fff
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #14529d12
}

.form-field textarea {
  min-height: 130px;
  resize: vertical
}

.faq {
  max-width: 850px;
  margin: auto
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy)
}

.site-footer {
  background: #061426;
  color: #c7d4e3;
  padding: 60px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 35px
}

.footer-logo img {
  width: 165px;
  margin-bottom: 15px
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 15px
}

.site-footer a {
  display: block;
  color: #b8c6d8;
  margin: 8px 0;
  font-size: 14px
}

.site-footer a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid #1b2b40;
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  color: #8091a6
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18)
}

.fab-whatsapp {
  background: #19a974
}

.fab-call {
  background: var(--orange)
}

@media(max-width:980px) {
  .main-nav {
    display: none
  }

  .main-nav.open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start
  }

  .nav-toggle {
    display: block
  }

  .header-cta .btn {
    display: none
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .grid-3,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .locations {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    padding-top: 45px
  }

  .hero-visual {
    max-width: 650px;
    margin: auto
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .topbar .container {
    display: block;
    text-align: center
  }

  .topbar .right {
    display: none
  }

  .header-inner {
    height: 68px
  }

  .brand img {
    width: 145px
  }

  .main-nav.open {
    top: 68px
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px
  }

  .hero p {
    font-size: 16px
  }

  .hero-actions .btn {
    width: 100%
  }

  .grid-3,
  .pricing-grid,
  .locations,
  .stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }

  .section {
    padding: 60px 0
  }

  .page-hero {
    padding: 48px 0
  }

  .page-hero h1 {
    font-size: 37px
  }

  .cta h2 {
    font-size: 31px
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin: 5px 0
  }
}



/* Modern Features dropdown */
.has-dropdown {
  position: relative
}

.dropdown-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #334155;
  cursor: pointer
}

.dropdown-trigger:hover,
.has-dropdown.dropdown-open .dropdown-trigger {
  color: var(--blue)
}

.dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: .2s
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.dropdown-open .dropdown-arrow {
  transform: rotate(225deg) translateY(-1px)
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 275px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(7, 26, 51, .15);
  padding: 9px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 100
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg)
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  width: 100%;
  padding: 11px 13px !important;
  border-radius: 10px;
  color: #334155 !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 1.3
}

.dropdown-menu a:hover {
  background: #eef5ff;
  color: var(--blue) !important
}

.project-top {
  height: 130px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf3ff, #fff1eb);
  display: grid;
  place-items: center;
  font-size: 54px;
  margin-bottom: 20px
}

.project-card {
  display: flex;
  flex-direction: column
}

.project-card a {
  margin-top: auto
}

.project-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800
}

.project-grid .card {
  min-height: 350px
}

.header-phone2 {
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px
}

.header-phone2 a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap
}

.project-strip {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #dfe7f1;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.project-strip strong,
.project-strip span {
  display: block
}

.project-strip span {
  margin-top: 6px;
  color: #65758b
}

.thank-you-toast {
  position: fixed;
  top: 88px;
  right: 22px;
  z-index: 99999;
  max-width: 430px;
  transition: opacity .35s ease, transform .35s ease
}

.thank-you-toast-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(7, 26, 51, .18)
}

.thank-you-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0aa66a;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  flex: none
}

.thank-you-toast strong,
.thank-you-toast span {
  display: block
}

.thank-you-toast strong {
  font-size: 16px;
  color: #071a33;
  margin-bottom: 3px
}

.thank-you-toast span {
  font-size: 13px;
  color: #607086;
  line-height: 1.45
}

.thank-you-toast button {
  border: 0;
  background: transparent;
  font-size: 24px;
  color: #7b8797;
  cursor: pointer;
  margin-left: auto
}

@media(max-width:980px) {
  .main-nav {
    display: none
  }

  .main-nav.open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px;
    box-shadow: 0 15px 35px rgba(7, 26, 51, .10)
  }

  .navbar ul li {
    list-style: none !important;
}

.navbar ul li::marker {
    content: "" !important;
    display: none !important;
}
ul li {
    list-style-type: none !important;
}

ul li::marker {
    content: none !important;
    display: none !important;
}
ul li::before {
    content: none !important;
    display: none !important;
}
ul li {
    list-style: none !important;
    list-style-type: none !important;
}

ul li::marker {
    content: none !important;
    display: none !important;
}

ul li::before {
    content: none !important;
    display: none !important;
}
ul li {
    list-style: none !important;
    list-style-type: none !important;
}

ul li::marker {
    content: none !important;
    display: none !important;
}

ul li::before {
    content: none !important;
    display: none !important;
}
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px
  }

  .main-nav li {
    width: 100%
  }

  .main-nav li>a,
  .dropdown-trigger {
    width: 100%;
    padding: 11px 4px !important;
    justify-content: space-between
  }

  .has-dropdown>a {
    padding: 10px 0
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 5px 0 5px 10px;
    background: transparent
  }

  .dropdown-menu:before {
    display: none
  }

  .has-dropdown.dropdown-open .dropdown-menu {
    display: block
  }

  .dropdown-menu a {
    padding: 10px 12px !important;
    background: transparent
  }

  .header-cta .btn {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .grid-3,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .locations {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    padding-top: 45px
  }

  .hero-visual {
    max-width: 650px;
    margin: auto
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .header-phone2 {
    display: none
  }
}

@media(max-width:700px) {
  .project-strip {
    flex-direction: column;
    align-items: flex-start
  }

  .thank-you-toast {
    left: 14px;
    right: 14px;
    top: 78px;
    max-width: none
  }

  .thank-you-toast-inner {
    padding: 14px
  }
}

@media(max-width:600px) {
  .topbar .container {
    display: block;
    text-align: center
  }

  .topbar .right {
    display: none
  }

  .header-inner {
    height: 68px
  }

  .brand img {
    width: 145px
  }

  .main-nav.open {
    top: 68px
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px
  }

  .hero p {
    font-size: 16px
  }

  .hero-actions .btn {
    width: 100%
  }

  .grid-3,
  .pricing-grid,
  .locations,
  .stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }

  .section {
    padding: 60px 0
  }

  .page-hero {
    padding: 48px 0
  }

  .page-hero h1 {
    font-size: 37px
  }

  .cta h2 {
    font-size: 31px
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin: 5px 0
  }
}

/* Clean, professional Features dropdown */
.has-dropdown {
  position: relative
}

.dropdown-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #334155;
  cursor: pointer
}

.dropdown-trigger:hover,
.has-dropdown.dropdown-open .dropdown-trigger {
  color: var(--blue)
}

.dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: .2s
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.dropdown-open .dropdown-arrow {
  transform: rotate(225deg)
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 275px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(7, 26, 51, .15);
  padding: 9px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s;
  z-index: 100
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg)
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  width: 100%;
  padding: 11px 13px !important;
  border-radius: 10px;
  color: #334155 !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 1.3
}

.dropdown-menu a:hover {
  background: #eef5ff;
  color: var(--blue) !important
}

.header-phone2 {
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px
}

.header-phone2 a {
  white-space: nowrap
}

.project-top {
  height: 130px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf3ff, #fff1eb);
  display: grid;
  place-items: center;
  font-size: 54px;
  margin-bottom: 20px
}

.project-card {
  display: flex;
  flex-direction: column
}

.project-card a {
  margin-top: auto
}

.project-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800
}

.project-grid .card {
  min-height: 350px
}

.project-strip {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #dfe7f1;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.project-strip strong,
.project-strip span {
  display: block
}

.project-strip span {
  margin-top: 6px;
  color: #65758b
}

@media(max-width:980px) {
  .main-nav {
    display: none
  }

  .main-nav.open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px;
    box-shadow: 0 15px 35px rgba(7, 26, 51, .10)
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px
  }

  .main-nav li {
    width: 100%
  }

  .main-nav li>a,
  .dropdown-trigger {
    width: 100%;
    padding: 11px 4px !important;
    justify-content: space-between
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 5px 0 5px 10px;
    background: transparent
  }

  .dropdown-menu:before {
    display: none
  }

  .has-dropdown.dropdown-open .dropdown-menu {
    display: block
  }

  .dropdown-menu a {
    padding: 10px 12px !important
  }

  .header-cta .btn {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .grid-3,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .locations,
  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    padding-top: 45px
  }

  .hero-visual {
    max-width: 650px;
    margin: auto
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .header-phone2 {
    display: none
  }
}

@media(max-width:700px) {
  .project-strip {
    flex-direction: column;
    align-items: flex-start
  }

  .thank-you-toast {
    left: 14px;
    right: 14px;
    top: 78px;
    max-width: none
  }

  .thank-you-toast-inner {
    padding: 14px
  }
}

@media(max-width:600px) {
  .topbar .container {
    display: block;
    text-align: center
  }

  .topbar .right {
    display: none
  }

  .header-inner {
    height: 68px
  }

  .brand img {
    width: 145px
  }

  .main-nav.open {
    top: 68px
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px
  }

  .hero p {
    font-size: 16px
  }

  .hero-actions .btn {
    width: 100%
  }

  .grid-3,
  .pricing-grid,
  .locations,
  .stats,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }

  .section {
    padding: 60px 0
  }

  .page-hero {
    padding: 48px 0
  }

  .page-hero h1 {
    font-size: 37px
  }

  .cta h2 {
    font-size: 31px
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin: 5px 0
  }
}

/* ================================
   TOP SOCIAL ICONS
================================ */

.top-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 5px;
}

.top-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background: #ffffff;
    font-size: 15px;
    transition: all 0.25s ease;
}

/* Facebook */
.top-social .social-facebook {
    color: #1877F2;
}

.top-social .social-facebook:hover {
    background: #1877F2;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Instagram */
.top-social .social-instagram {
    color: #E4405F;
}

.top-social .social-instagram:hover {
    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
    color: #ffffff;
    transform: translateY(-2px);
}

/* X */
.top-social .social-x {
    color: #000000;
}

.top-social .social-x:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* YouTube */
.top-social .social-youtube {
    color: #FF0000;
}

.top-social .social-youtube:hover {
    background: #FF0000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* LinkedIn */
.top-social .social-linkedin {
    color: #0A66C2;
}

.top-social .social-linkedin:hover {
    background: #0A66C2;
    color: #ffffff;
    transform: translateY(-2px);
}