:root {
  --primary-blue: #082858;
  --secondary-orange: #F07820;
  --accent-blue: #103a73;
  --bg-light: #f3f6fb;
  --text-dark: #1a2333;
  --text-muted: #4f5c73;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(8, 40, 88, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  overflow-x: hidden;
}

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

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

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

.top-strip {
  background: var(--primary-blue);
  color: var(--white);
  font-size: 0.92rem;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.62rem 0;
}

.top-tagline {
  font-weight: 500;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 600;
}

.top-phone i {
  color: var(--secondary-orange);
}

.top-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.top-social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.top-social a:hover {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(8, 40, 88, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.75rem 0;
}

.brand {
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(130px, 16vw, 210px);
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.42rem 0.72rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 0.72rem;
}

.nav-links a {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--primary-blue);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--secondary-orange);
  color: var(--white);
}

.nav-links .nav-quote {
  background: var(--secondary-orange);
  color: var(--white);
  font-weight: 700;
  padding-inline: 1rem;
  box-shadow: 0 10px 20px rgba(240, 120, 32, 0.32);
}

.nav-links .nav-quote:hover {
  background: #e56b10;
}

.services-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  min-width: 260px;
  background: #ffffff;
  border: 1px solid rgba(8, 40, 88, 0.14);
  border-radius: 12px;
  padding: 0.45rem;
  box-shadow: 0 14px 28px rgba(8, 40, 88, 0.14);
  display: none;
  z-index: 1200;
}

.services-dropdown a {
  display: block;
  border-radius: 8px;
  padding: 0.48rem 0.62rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.services-dropdown a:hover {
  background: rgba(240, 120, 32, 0.12);
  color: var(--secondary-orange);
}

.nav-dropdown.open .services-dropdown {
  display: block;
}

@media (hover: hover) {
  .nav-dropdown:hover .services-dropdown {
    display: block;
  }
}

.slider-section {
  position: relative;
}

.hero-slider {
  position: relative;
  min-height: clamp(380px, 58vw, 650px);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 22, 48, 0.78) 0%, rgba(6, 22, 48, 0.45) 52%, rgba(6, 22, 48, 0.18) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.95rem;
  color: var(--white);
}

.slide-tag {
  display: inline-flex;
  width: fit-content;
  background: var(--secondary-orange);
  color: var(--white);
  padding: 0.46rem 0.78rem;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.slide-content h1 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 4rem);
  line-height: 1.15;
}

.slide-content p {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  color: #f2f7ff;
}

.slide-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--secondary-orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(240, 120, 32, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 6px;
  background: rgba(8, 40, 88, 0.68);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--secondary-orange);
}

.slider-arrow.prev {
  left: 1.2rem;
}

.slider-arrow.next {
  right: 1.2rem;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--secondary-orange);
}

.quote-strip {
  margin-top: -32px;
  position: relative;
  z-index: 4;
}

.quick-quote {
  background: var(--primary-blue);
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 20px 40px rgba(8, 40, 88, 0.26);
}

.quick-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.quick-quote input,
.quick-quote button {
  width: 100%;
  border: none;
  border-radius: 6px;
  font: inherit;
  min-height: 54px;
}

.quick-quote input {
  padding: 0.75rem 0.85rem;
  color: var(--text-dark);
}

.quick-quote button {
  background: var(--secondary-orange);
  color: var(--white);
  font-weight: 700;
}

.about-home {
  padding-top: 3.6rem;
}

.index-about-section {
  background: #EAF1FB;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: center;
}

.about-home-image-wrap {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 24px 46px rgba(8, 40, 88, 0.22),
    0 10px 18px rgba(8, 40, 88, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-home-image-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  z-index: 2;
  pointer-events: none;
}

.about-home-image {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.about-home-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 40, 88, 0.04) 14%, rgba(8, 40, 88, 0.56) 100%);
}

.about-home-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 54px rgba(8, 40, 88, 0.3),
    0 12px 22px rgba(8, 40, 88, 0.16);
}

.about-home-image-wrap:hover .about-home-image {
  transform: scale(1.08);
}

.about-home-badge {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 3;
  background: linear-gradient(90deg, #f07820, #ff983f);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 24px rgba(240, 120, 32, 0.35);
}

.about-home-chip {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background: rgba(8, 40, 88, 0.82);
  color: var(--white);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  backdrop-filter: blur(3px);
}

.about-home-chip i {
  color: #9be0ff;
}

.about-home-content {
  background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(8, 40, 88, 0.1);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}

.about-small-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-orange);
  font-weight: 700;
  margin-bottom: 0.42rem;
}

.about-small-title::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--secondary-orange);
}

.about-home-content p {
  margin: 0 0 0.78rem;
  color: var(--text-muted);
  line-height: 1.78;
}

.about-home-content p:last-child {
  margin-bottom: 0;
}

.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.process-section .section-title,
.process-section .section-sub {
  text-align: center;
}

.process-section .section-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.18);
  border-radius: 16px;
  padding: 1.15rem 1rem;
  box-shadow: 0 10px 24px rgba(8, 40, 88, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-orange);
  box-shadow: 0 16px 30px rgba(8, 40, 88, 0.16);
}

.process-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(240, 120, 32, 0.14);
  color: var(--secondary-orange);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  margin-bottom: 0.55rem;
}

.process-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.content-section {
  background: #eaf1fb;
  border-top: 1px solid rgba(8, 40, 88, 0.12);
  border-bottom: 1px solid rgba(8, 40, 88, 0.12);
}

.content-flow {
  display: grid;
  gap: 0.95rem;
}

.content-item {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.15);
  border-left: 4px solid var(--secondary-orange);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  box-shadow: 0 8px 18px rgba(8, 40, 88, 0.07);
}

.content-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.content-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.our-services-section {
  background: #ffffff;
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.our-service-card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.16);
  border-radius: 14px;
  padding: 0.85rem;
  box-shadow: 0 10px 22px rgba(8, 40, 88, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.our-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-orange);
  box-shadow: 0 16px 30px rgba(8, 40, 88, 0.14);
}

.our-service-card h3 {
  margin-top: 0.88rem;
  margin-bottom: 0.55rem;
}

.our-service-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.66;
}

.service-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(8, 40, 88, 0.12);
  background: #dfe8f7;
}

.service-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.our-service-card:hover .service-image {
  transform: scale(1.04);
}

.service-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.service-actions .btn {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  font-size: 0.93rem;
}

.btn-service-read {
  background: rgba(8, 40, 88, 0.09);
  color: var(--primary-blue);
  border: 1px solid rgba(8, 40, 88, 0.18);
}

.btn-service-read:hover {
  background: rgba(8, 40, 88, 0.14);
}

.btn-service-call {
  background: var(--secondary-orange);
  color: var(--white);
}

.mini-strip {
  padding: 0 0 2.2rem;
}

.mini-strip-inner {
  background: linear-gradient(120deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  box-shadow: 0 12px 25px rgba(8, 40, 88, 0.22);
}

.mini-strip-inner p {
  margin: 0;
  font-weight: 600;
}

.mini-strip-actions {
  display: flex;
  gap: 0.55rem;
}

.mini-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: transparent;
}

.mini-btn-fill {
  background: var(--secondary-orange);
  color: var(--white);
}

.visual-section {
  background: #f4f8ff;
}

.visual-block {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.12);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(8, 40, 88, 0.08);
  margin-bottom: 1rem;
}

.visual-block:last-child {
  margin-bottom: 0;
}

.visual-block .section-title {
  margin-bottom: 0.35rem;
}

.visual-block .section-sub {
  margin-bottom: 0.85rem;
  max-width: 980px;
  line-height: 1.75;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.visual-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(8, 40, 88, 0.12);
}

.why-choose-section {
  background: #f3f5f9;
}

.why-choose-section .section-title {
  text-align: center;
  width: fit-content;
  margin: 0 auto 0.7rem;
  padding: 0.45rem 1rem;
  border: 2px solid rgba(8, 40, 88, 0.2);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 40, 88, 0.08);
}

.why-choose-section .section-sub {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 1.1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e2e7f0;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  box-shadow: 0 8px 20px rgba(8, 40, 88, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-orange), #ffb166);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-orange);
  box-shadow: 0 16px 30px rgba(8, 40, 88, 0.14);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.7rem;
  background: rgba(240, 120, 32, 0.13);
  color: var(--secondary-orange);
  font-size: 1.3rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  background: var(--secondary-orange);
  color: var(--white);
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.68;
}

.hyderabad-map-section {
  background: #ffffff;
}

.map-content-text {
  margin-bottom: 1rem;
}

.map-content-text p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
}

.map-content-text p:last-child {
  margin-bottom: 0;
}

.hyderabad-map-wrap {
  border-radius: 12px;
}

.hyderabad-map-wrap iframe {
  min-height: 430px;
}

.pricing-service-section {
  background: #f4f8ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.16);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(8, 40, 88, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-orange);
  box-shadow: 0 16px 28px rgba(8, 40, 88, 0.14);
}

.featured-plan {
  border-color: rgba(240, 120, 32, 0.45);
}

.plan-tag {
  display: inline-flex;
  background: rgba(240, 120, 32, 0.14);
  color: var(--secondary-orange);
  border: 1px solid rgba(240, 120, 32, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
}

.pricing-card h3 {
  margin: 0.75rem 0 0.35rem;
}

.plan-price {
  margin: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.plan-list {
  margin: 0.85rem 0;
  padding-left: 1.05rem;
  color: var(--text-muted);
}

.plan-list li {
  margin-bottom: 0.35rem;
}

.plan-actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.rates-section {
  background: linear-gradient(180deg, #f2f7ff 0%, #eef4ff 100%);
  border-top: 1px solid rgba(8, 40, 88, 0.1);
}

.rates-card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.12);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(8, 40, 88, 0.08);
  margin-bottom: 1rem;
}

.rates-card:last-child {
  margin-bottom: 0;
}

.rates-card h3 {
  margin-bottom: 0.35rem;
}

.rates-card p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.rates-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid rgba(8, 40, 88, 0.12);
  border-radius: 10px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: var(--white);
}

.rates-table th,
.rates-table td {
  border-right: 1px solid rgba(8, 40, 88, 0.1);
  border-bottom: 1px solid rgba(8, 40, 88, 0.1);
  padding: 0.7rem 0.75rem;
  text-align: left;
}

.rates-table th:last-child,
.rates-table td:last-child {
  border-right: none;
}

.rates-table thead th {
  background: var(--secondary-orange);
  color: var(--white);
  font-weight: 700;
}

.rates-table tbody tr:hover {
  background: rgba(240, 120, 32, 0.07);
}

.feedback-section {
  background: #ffffff;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feedback-card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.14);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(8, 40, 88, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-orange);
  box-shadow: 0 16px 30px rgba(8, 40, 88, 0.14);
}

.feedback-stars {
  color: var(--secondary-orange);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.65rem;
}

.feedback-card p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.feedback-card h3 {
  margin: 0 0 0.18rem;
  font-size: 1.02rem;
}

.feedback-card span {
  color: #6f7e97;
  font-size: 0.9rem;
}

.feedback-more {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.section {
  padding: 3.1rem 0;
}

h1,
h2,
h3 {
  color: var(--primary-blue);
  margin-top: 0;
}

.section-title {
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.section-sub {
  margin-top: 0;
  color: var(--text-muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.about-values-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 120, 32, 0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(16, 58, 115, 0.09), transparent 46%),
    #f7f9fe;
}

.about-values-section .grid-2 {
  gap: 1.4rem;
}

.about-values-section .card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 1.45rem 1.45rem 1.35rem;
  border: 1px solid rgba(8, 40, 88, 0.14);
  box-shadow: 0 16px 34px rgba(8, 40, 88, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.about-values-section .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f07820 0%, #ffb45b 50%, #f07820 100%);
}

.about-values-section .card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  top: -52px;
  right: -52px;
  background: radial-gradient(circle, rgba(240, 120, 32, 0.18), rgba(240, 120, 32, 0.02) 72%);
  pointer-events: none;
}

.about-values-section .card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 120, 32, 0.5);
  box-shadow: 0 22px 38px rgba(8, 40, 88, 0.14);
}

.about-value-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: var(--secondary-orange);
  background: rgba(240, 120, 32, 0.12);
  border: 1px solid rgba(240, 120, 32, 0.25);
  font-size: 1rem;
}

.about-values-section .card h2 {
  margin: 0;
}

.about-values-section .card p {
  line-height: 1.72;
}

.about-value-subheading {
  margin: 0.85rem 0 0.6rem;
}

.about-values-section .card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-values-section .card li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.about-values-section .card li:last-child {
  margin-bottom: 0;
}

.about-values-section .card li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--secondary-orange);
  font-size: 0.95rem;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(8, 40, 88, 0.1);
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.page-hero {
  background: linear-gradient(120deg, rgba(8, 40, 88, 0.95), rgba(16, 56, 111, 0.95));
  color: var(--white);
  padding: 3rem 0;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem;
  border-left: 5px solid var(--secondary-orange);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.gallery-item {
  margin: 0;
  background: var(--white);
  border: 2px solid rgba(8, 40, 88, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(8, 40, 88, 0.1);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.gallery-caption {
  padding: 0.8rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.work-gallery-section .gallery-caption {
  display: none;
}

.work-gallery-section .section-title,
.work-gallery-section .section-sub,
.work-videos-section .section-title,
.work-videos-section .section-sub {
  text-align: center;
}

.work-gallery-section .section-sub,
.work-videos-section .section-sub {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.work-videos-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.work-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  background: var(--white);
  border: 1px solid rgba(8, 40, 88, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #001733;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  margin: 0;
  padding: 0.8rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

body.no-scroll {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(6, 16, 34, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-image {
  width: auto;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #0f1d36;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 40, 88, 0.82);
  color: #ffffff;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 40, 88, 0.14);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(8, 40, 88, 0.1);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-page-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.contact-top-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.15rem;
}

.contact-mini-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid rgba(8, 40, 88, 0.16);
  border-radius: 16px;
  padding: 1.1rem 1rem 1rem;
  box-shadow: 0 12px 28px rgba(8, 40, 88, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-mini-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f07820 0%, #ffb166 50%, #f07820 100%);
}

.contact-mini-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -56px;
  top: -62px;
  background: radial-gradient(circle, rgba(240, 120, 32, 0.14), rgba(240, 120, 32, 0) 70%);
  pointer-events: none;
}

.contact-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 120, 32, 0.4);
  box-shadow: 0 18px 32px rgba(8, 40, 88, 0.14);
}

.contact-mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(140deg, #f07820, #ff9f4f);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 24px rgba(240, 120, 32, 0.3);
  font-size: 1.05rem;
  margin-bottom: 0.62rem;
}

.contact-mini-card h3 {
  margin: 0 0 0.36rem;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.contact-mini-card p {
  margin: 0;
  color: #385070;
  line-height: 1.55;
  font-size: 1.03rem;
}

.contact-mini-card p a {
  color: #234a84;
  font-weight: 600;
}

.contact-mini-card p a:hover {
  color: #0e63bf;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-details-card {
  padding: 1.3rem;
}

.contact-details-card > p {
  margin-top: 0;
  color: var(--text-muted);
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-points li i {
  color: var(--secondary-orange);
  margin-top: 0.22rem;
  min-width: 14px;
}

.contact-points li strong {
  color: var(--primary-blue);
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-cta-row .btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}

.contact-cta-row .btn-whatsapp:hover {
  background: #1eb85b;
}

.contact-form-premium {
  padding: 1.25rem;
}

.contact-form-premium h2 {
  margin-bottom: 0.75rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 0.85rem;
}

.contact-form-grid .form-row {
  margin-bottom: 0.8rem;
}

.contact-form-grid .form-row-full {
  grid-column: 1 / -1;
}

.contact-map-wrap {
  margin-top: 1rem;
}

.contact-map-wrap iframe {
  min-height: 400px;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--primary-blue);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(8, 40, 88, 0.25);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--text-dark);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  margin-bottom: 0.85rem;
}

.city-marquee {
  background: #050505;
  border-top: 3px solid var(--secondary-orange);
  border-bottom: 2px solid var(--secondary-orange);
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
}

.city-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  animation: cityTicker 36s linear infinite;
  padding: 0.7rem 0;
}

.city-marquee-track span {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.city-marquee-track span::after {
  content: "|";
  color: #ffffff;
  margin: 0 1rem;
  font-weight: 500;
}

@keyframes cityTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

footer {
  margin-top: 2rem;
  background: linear-gradient(140deg, #07234c 0%, #0b3270 100%);
  color: var(--white);
  border-top: 4px solid var(--secondary-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
  padding: 2rem 0;
}

footer h3 {
  color: var(--white);
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
}

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

footer li {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffd3ac;
}

.premium-footer {
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 1.4rem;
}

.footer-about-logo {
  width: min(180px, 100%);
  height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.35rem;
  margin: 0.25rem 0 0.65rem;
}

.footer-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  padding: 0.9rem 0;
  text-align: center;
}

.clean-footer {
  margin-top: 2rem;
  background: linear-gradient(140deg, #07234c 0%, #0b3270 100%);
  color: var(--white);
  border-top: 4px solid var(--secondary-orange);
}

.clean-footer .premium-footer {
  grid-template-columns: 1.45fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 2.2rem 0 1.8rem;
  align-items: flex-start;
}

.clean-footer .footer-heading {
  position: relative;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.clean-footer .footer-heading::after {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--secondary-orange);
  position: absolute;
  left: 0;
  bottom: -8px;
}

.clean-footer .footer-about-logo {
  width: min(170px, 100%);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.clean-footer .footer-about p,
.clean-footer .footer-col li {
  color: rgba(255, 255, 255, 0.9);
}

.clean-footer .footer-about p {
  line-height: 1.62;
  max-width: 320px;
}

.clean-footer .footer-col ul {
  margin-top: 0.45rem;
}

.clean-footer .footer-col li {
  margin-bottom: 0.7rem;
}

.clean-footer .footer-check-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.clean-footer .footer-check-list i {
  color: var(--secondary-orange);
  font-size: 0.82rem;
}

.clean-footer .footer-contact li strong {
  color: #ffffff;
}

.clean-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.42;
}

.clean-footer .footer-contact li i {
  color: var(--secondary-orange);
  margin-top: 0.24rem;
  min-width: 14px;
}

.clean-footer .footer-contact .contact-phones {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: nowrap;
  margin-bottom: 0.75rem;
}

.clean-footer .footer-contact .contact-phones span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  white-space: nowrap;
}

.clean-footer .footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.clean-footer .footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.clean-footer .footer-social a:hover {
  border-color: var(--secondary-orange);
  color: var(--secondary-orange);
  background: rgba(255, 255, 255, 0.16);
}

.clean-footer .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

@keyframes fabFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes fabPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(8, 40, 88, 0.26);
  }
  50% {
    box-shadow: 0 14px 30px rgba(8, 40, 88, 0.34);
  }
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 40, 88, 0.26);
  cursor: pointer;
  animation: fabFloat 2.4s ease-in-out infinite, fabPulse 2.4s ease-in-out infinite;
}

.floating-actions .fab:nth-child(2) {
  animation-delay: 0.25s;
}

.floating-actions .fab:nth-child(3) {
  animation-delay: 0.5s;
}

.fab-call {
  background: var(--primary-blue);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-top {
  background: var(--secondary-orange);
}

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

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.3rem;
  }

  .nav-links a {
    padding: 0.44rem 0.64rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 980px) {
  .grid-3,
  .grid-2,
  .stats,
  .gallery-grid,
  .work-videos-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .slide-content h1 {
    max-width: 620px;
  }

  .about-home-grid {
    grid-template-columns: 1fr;
  }

  .about-home-image {
    min-height: 300px;
  }

  .about-home-image-wrap::before {
    inset: 9px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-top-cards {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .premium-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  header,
  .top-strip,
  .city-marquee,
  .clean-footer,
  .section {
    width: 100%;
    max-width: 100%;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding-left: 8px;
    padding-right: 8px;
  }

  .our-services-grid,
  .process-grid,
  .why-grid,
  .pricing-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .service-actions,
  .plan-actions {
    flex-direction: column;
  }

  .clean-footer .premium-footer {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .clean-footer .footer-about,
  .clean-footer .footer-col {
    width: 100%;
  }

  .clean-footer .footer-about p {
    max-width: 100%;
  }

  .clean-footer .footer-contact .contact-phones {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .clean-footer .footer-contact .contact-phones span {
    white-space: normal;
  }
}

@media (max-width: 780px) {
  body.mobile-header-fixed {
    padding-top: var(--mobile-header-offset, 72px);
  }

  body.mobile-header-fixed header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .container {
    width: calc(100% - 20px);
  }

  .top-strip-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.72rem 0;
  }

  .top-tagline {
    width: 100%;
    line-height: 1.3;
  }

  .top-right {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
  }

  .top-phone {
    font-size: 0.96rem;
    letter-spacing: 0.1px;
    white-space: nowrap;
  }

  .nav-wrap {
    gap: 0.6rem;
    padding: 0.55rem 0;
  }

  .brand-logo {
    width: 96px;
  }

  .top-social {
    width: 100%;
    display: flex;
    justify-content: center;
    border-left: none;
    padding-left: 0;
    margin-top: 0.1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 76px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid rgba(8, 40, 88, 0.16);
    border-radius: 12px;
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-quote {
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-blue);
    padding: 0.48rem 0.82rem;
  }

  .services-dropdown {
    position: static;
    display: none;
    flex-direction: column;
    margin-top: 0.35rem;
    min-width: 100%;
    width: 100%;
    box-shadow: none;
    border-radius: 10px;
    padding: 0.35rem;
  }

  .services-dropdown a {
    padding: 0.5rem 0.6rem;
  }

  .nav-dropdown.open .services-dropdown {
    display: flex;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-slider {
    min-height: 360px;
  }

  .slide-content {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .slide-content h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
    line-height: 1.13;
    max-width: 94%;
  }

  .slide-content p {
    font-size: 0.95rem;
    max-width: 94%;
  }

  .slide-actions {
    flex-direction: column;
    max-width: 190px;
    gap: 0.55rem;
  }

  .slide-actions .btn {
    min-height: 40px;
    padding: 0.62rem 0.9rem;
    font-size: 0.9rem;
  }

  .quote-strip {
    margin-top: 0;
    background: transparent;
  }

  .quick-quote {
    margin-top: 0.8rem;
    border-radius: 10px;
    padding: 0.6rem;
  }

  .quick-quote-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .quick-quote input,
  .quick-quote button {
    min-height: 46px;
    font-size: 0.93rem;
  }

  .grid-3,
  .grid-2,
  .stats,
  .gallery-grid,
  .work-videos-grid,
  .process-grid,
  .our-services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-actions {
    flex-direction: column;
  }

  .mini-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .mini-strip-actions {
    width: 100%;
    flex-direction: column;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-actions {
    flex-direction: column;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .contact-mini-card,
  .contact-details-card,
  .contact-form-premium {
    padding: 1rem;
  }

  .contact-map-wrap iframe {
    min-height: 320px;
  }

  .premium-footer {
    grid-template-columns: 1fr;
  }

  .clean-footer .premium-footer {
    gap: 1.05rem;
    padding: 1.4rem 0 1.1rem;
  }

  .clean-footer .footer-heading {
    margin-bottom: 1rem;
  }

  .clean-footer .footer-col li {
    margin-bottom: 0.5rem;
  }

  .clean-footer .footer-social {
    justify-content: flex-start;
  }

  .clean-footer .footer-contact .contact-phones {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .clean-footer .footer-contact .contact-phones span {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 14px);
  }

  .city-marquee-track {
    padding: 0.55rem 0;
  }

  .city-marquee-track span {
    font-size: 1.2rem;
  }

  .top-strip {
    font-size: 0.9rem;
  }

  .top-tagline {
    font-size: 0.9rem;
  }

  .top-phone {
    font-size: 0.9rem;
  }

  .brand-logo {
    width: 134px;
  }

  .nav-toggle {
    margin-right: 6px;
  }

  .clean-footer .premium-footer {
    padding-left: 10px;
    padding-right: 8px;
  }

  .hero-slider {
    min-height: 340px;
  }

  .slide-content h1 {
    font-size: clamp(1.75rem, 8.2vw, 2.2rem);
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.15rem;
  }

  .slider-arrow.prev {
    left: 0.55rem;
  }

  .slider-arrow.next {
    right: 0.55rem;
  }

  .top-social a {
    width: 28px;
    height: 28px;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .about-home-chip {
    top: 0.72rem;
    right: 0.72rem;
    font-size: 0.72rem;
    padding: 0.4rem 0.62rem;
  }

  .about-home-badge {
    left: 0.72rem;
    bottom: 0.72rem;
    font-size: 0.8rem;
    padding: 0.46rem 0.75rem;
  }

  .about-home-image-wrap::before {
    inset: 6px;
    border-radius: 14px;
  }

  .fab {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
  }
}
