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

:root {
  --red: #cc1414;
  --red-rgb: 204, 20, 20;
  --red-bright: #e02020;
  --dark: #0d0d0d;
  --mid-dark: #161616;
  --card-bg: #1c1c1c;
  --card: #1c1c1c;
  --mid: #161616;
  --border: #2a2a2a;
  --silver: #a8a8a8;
  --light: #efefef;
  --nav-h: 52px;
  --input-bg: #141414;
  --input-border: #333;
  --input-focus: #cc1414;
}

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

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  background: var(--dark);
  color: var(--light);
  overflow-x: clip;
  width: 100%;
}

/* ──────── PRELOADER ──────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.preloader-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.preloader-logo {
  max-width: 450px;
  height: auto;
  animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0 rgba(var(--red-rgb),0)); }
  50% { transform: scale(1.05); filter: brightness(1.2) drop-shadow(0 0 30px rgba(var(--red-rgb),0.4)); }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

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

/* ──────── TOP BAR ──────── */
#top-bar {
  background: #000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 6px 40px;
  font-size: 17px;
  color: var(--silver);
  border-bottom: 1px solid #1a1a1a;

}

#top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

#top-bar svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
}

/* ──────── LOGO AREA ──────── */
#logo-area {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: relative;
  border-top: 3px solid var(--red);
}

.header-right-logo {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.header-right-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.home-page #logo-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, #800000 60%, transparent 100%);
}

#logo-img {
  height: 100px;
  width: auto;
}

#logo-tagline {
  text-align: right;
  font-family: 'Rajdhani', sans-serif;
}

#logo-tagline .big {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--silver);
  text-transform: uppercase;
}

#logo-tagline .small {
  font-size: 16px;
  color: #b1b1b1;
  letter-spacing: 2px;
  margin-top: 3px;
  text-transform: uppercase;
}

/* ──────── IMAGE SLIDER ──────── */
#slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc(100vh - 135px);
  /* 100vh minus approximate combined height of headers */
  min-height: 250px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.20) 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  max-width: 560px;
  z-index: 10;
}

.slide-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.slide-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 14px;
}

.slide-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.slide-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--red);
  transition: all .3s;
  cursor: pointer;
}

.slide-btn:hover {
  background: transparent;
  color: var(--red);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}

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

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 55px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
}

.scroll-down-arrow:hover {
  opacity: 1;
  color: var(--red);
  transform: translateX(-50%) translateY(6px);
}

.scroll-down-arrow svg {
  width: 36px;
  height: 48px;
  stroke: currentColor;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  animation: bounceSvg 2s infinite ease-in-out;
}

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



.chevron-1 {
  opacity: 1;
}

.chevron-2 {
  opacity: 0.6;
}

.chevron-3 {
  opacity: 0.3;
}

/* ──────── NAV MENU ──────── */
#nav-menu {
  background: #111;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid #222;
  z-index: 999;
  position: sticky;
  top: 0;
}

#nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.nav-links-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.nav-item-wrap {
  display: flex;
  flex: 1;
  justify-content: center;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 28px;
  height: var(--nav-h);
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s, background .2s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  width: 100%;
  justify-content: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #fff;
}

.nav-link svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
  flex-shrink: 0;
}

/* ──────── DROPDOWN ──────── */
.nav-link.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-top: 3px solid var(--red);
  display: none;
  z-index: 999999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  text-align: left;
}

.nav-item-wrap:hover .dropdown,
.dropdown:hover {
  display: block !important;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  padding: 16px 24px !important;
  color: var(--silver) !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1a1a !important;
  transition: all .3s;
  height: auto !important;
  line-height: 1.2;
  justify-content: flex-start !important;
}

.dropdown-item:last-child {
  border-bottom: none !important;
}

.dropdown-item:hover {
  background: #111 !important;
  color: #fff !important;
}

.dd-chevron {
  color: var(--red);
  margin-right: 14px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

#hamburger {
  display: none;
  background: rgba(var(--red-rgb), 0.12);
  border: 1px solid rgba(var(--red-rgb), 0.25);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 11px;
  /* margin-right: 16px; */
  transition: background .2s;
}

#hamburger:hover {
  background: rgba(var(--red-rgb), 0.25);
}

#hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

/* Hamburger → X animation when menu is open */
#hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────── SERVICES GRID ──────── */
#services {
  padding: 60px 40px;
  background: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--red);
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
}

.section-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-heading-wrap::before,
.section-heading-wrap::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.section-heading-wrap::after {
  background: linear-gradient(90deg, var(--red), transparent);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-sub {
  font-size: 18px;
  color: var(--silver);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 20px 28px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(var(--red-rgb), 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--red-rgb), 0.08);
  border: 1px solid rgba(var(--red-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background .3s;
}

.service-card:hover .service-icon {
  background: rgba(var(--red-rgb), 0.2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--red);
}

.service-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--light);
}

.service-desc {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.6;
  font-weight: 300;
}

/* ──────── ABOUT STRIP ──────── */
#about-strip {
  background: #111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.about-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-text {
  font-size: 18px;
  color: var(--silver);
  line-height: 1.8;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  position: relative;
}

.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--silver);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ──────── PROJECTS ──────── */
#projects {
  padding: 60px 40px;
  background: var(--dark);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-overlay p {
  font-size: 17px;
  color: var(--silver);
  margin-top: 4px;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: var(--card-bg);
}

.project-placeholder svg {
  width: 40px;
  height: 40px;
  fill: #333;
}

.project-placeholder span {
  font-size: 17px;
  color: #b1b1b1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ──────── CONTACT BANNER ──────── */
#contact {
  padding: 20px 40px;
}

#contact-banner {
  background: var(--red);
  padding: 30px 40px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-text {
  text-align: left;
}

.contact-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-text p {
  font-size: 18px;
  opacity: .85;
  margin-top: 4px;
}

.contact-btn {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  white-space: nowrap;
  transition: opacity .2s;
  cursor: pointer;
  border: none;
}

.contact-btn:hover {
  opacity: .9;
}

/* ──────── FOOTER ──────── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 40px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-logo {
  height: 52px;
  margin-bottom: 16px;
  margin-left: -14px;
}

.footer-about {
  font-size: 16px;
  color: #b1b1b1;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 16px;
  color: #b1b1b1;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
}

.footer-links a:hover {
  color: var(--light);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 16px;
  color: #b1b1b1;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  color: #b1b1b1;
}

.footer-bottom a {
  color: var(--red);
}


/* ──────── TESTIMONIALS ──────── */
#testimonials {
  padding: 60px 40px;
  background: #111;
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: border-color .3s, transform .3s;
}

.testimonial-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(var(--red-rgb), 0.15);
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--red);
  font-size: 16px;
}

.testimonial-text {
  font-size: 18px;
  color: #e0dede;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.15);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
}

.author-title {
  font-size: 17px;
  color: #b1b1b1;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  #logo-area {
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
  }

  #logo-area > a:first-of-type {
    margin-right: auto;
    min-width: 0;
  }

  #logo-area .header-right-logo {
    display: flex;
    margin: 0;
    flex-shrink: 1;
  }

  #logo-area .header-right-logo img {
    height: auto;
    max-height: 40px;
    max-width: 90px;
    width: 100%;
    object-fit: contain;
  }

  #logo-img {
    height: auto;
    max-height: 55px;
    max-width: 200px;
    width: 100%;
    object-fit: contain;
  }

  #hamburger {
    padding: 8px 10px;
    margin: 0;
    flex-shrink: 0;
  }

  #slider-wrap {
    height: 80svh;
    max-height: 500px;
    min-height: 450px;
  }

  .slide-title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .slide-sub {
    font-size: 16px;
  }

  .slide-content {
    left: 20px;
    right: 20px;
    top: 46%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
  }

  #nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    border: none;
    pointer-events: none;
  }

  #nav-menu.menu-open {
    pointer-events: auto;
  }

  #nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links-wrap {
    overflow: hidden;
    max-height: 0;
    width: 100%;
    flex-direction: column;
    transition: max-height .4s ease;
    background: #111;
    border-bottom: 1px solid #222;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
  }

  .nav-links-wrap.open {
    max-height: 500px;
    border-top: 3px solid var(--red);
  }

  .nav-link {
    padding: 14px 24px;
    border-bottom: 1px solid #1a1a1a;
    height: auto;
    justify-content: flex-start;
    flex: none;
  }

  .nav-link::after {
    left: 0;
    right: auto;
    width: 3px;
    height: 100%;
    bottom: auto;
    top: 0;
    transform: scaleY(0);
    transition: transform .25s;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleY(1);
  }

  .nav-link:hover {
    background: rgba(var(--red-rgb), 0.06);
  }

  #hamburger {
    display: flex;
    position: static;
    transform: none;
    /* margin-right: 15px; */
  }

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-text {
    text-align: center !important;
  }

  #top-bar {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .scroll-down-arrow {
    bottom: 5px;
    width: 40px;
    height: 45px;
  }

  .scroll-down-arrow svg {
    width: 30px;
    height: 40px;
  }

  .slider-dots {
    bottom: 55px;
  }
}

@media (max-width: 480px) {
  .services-grid, .projects-grid {
    grid-template-columns: 1fr;
    width: 100%;
    overflow-x: hidden;
  }

  .service-card, .project-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #services,
  #projects,
  #projects-section,
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-map-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  #cta-wrapper {
    padding: 15px 15px;
  }

  #cta-strip {
    padding: 24px 15px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .cta-inner > div {
    text-align: center !important;
  }

  #contact-main {
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-card, .form-card {
    margin: 0 15px;
  }

  #testimonials {
    padding: 30px 15px;
  }

  #contact {
    padding: 15px 15px;
  }
  #contact-banner {
    padding: 24px 15px;
  }

  /* Ensure the slider arrows do not get pushed out */
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* ──────── TESTIMONIALS ──────── */
#testimonials {
  padding: 60px 40px;
  background: #111;
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: border-color .3s, transform .3s;
}

.testimonial-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(var(--red-rgb), 0.15);
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--red);
  font-size: 16px;
}

.testimonial-text {
  font-size: 18px;
  color: #e0dede;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.15);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
}

.author-title {
  font-size: 17px;
  color: #b1b1b1;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────── MODAL & QUOTE FORM ──────── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--card-bg);
  margin: 5% auto;
  padding: 40px;
  border: 1px solid var(--border);
  width: 90%;
  max-width: 700px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
  color: var(--silver);
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: color .2s;
}

.close-modal:hover {
  color: var(--red);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-header p {
  color: var(--silver);
  margin-top: 8px;
  font-size: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 10px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--mid-dark);
  border: 1px solid var(--border);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  border-radius: 4px;
  transition: border-color .3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .3s;
}

.submit-btn:hover {
  background: var(--red-bright);
}

.modal-alert {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

.modal-alert.success {
  background: #28a745;
  color: #fff;
}

.modal-alert.error {
  background: #dc3545;
  color: #fff;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 10% auto;
  }
}

/* ──────── PROJECTS PAGE ──────── */
/* PAGE HERO */
#page-hero {
  background: linear-gradient(135deg, #0a0000 0%, #1a0505 40%, #0d0d0d 100%);
  padding: 64px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.08), transparent 70%);
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  height: 100%;
  min-height: 300px;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.placeholder-text {
  color: var(--silver);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

@media(max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  font-size: 13px;
  color: #b1b1b1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--red);
}

.breadcrumb span {
  margin: 0 8px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-title em {
  color: var(--red);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--silver);
  font-weight: 300;
  margin-top: 14px;
  /* max-width: 600px; */
  line-height: 1.7;
}

/* FILTER BAR */
#filter-bar {
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  position: sticky;
  top: 52px; /* Desktop navbar offset */
  z-index: 50;
}

.filter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 16px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b1b1b1;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--light);
}

.filter-btn.active {
  color: #fff;
  border-bottom-color: var(--red);
}

.project-count {
  margin-left: auto;
  font-size: 13px;
  color: #b1b1b1;
  white-space: nowrap;
  padding: 16px 0;
}

/* STATS STRIP */
#stats-strip {
  background: var(--red);
  padding: 24px 40px;
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.stat-l {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 4px;
}

/* PROJECTS GRID */
#projects-section {
  padding: 60px 40px;
}

.grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* FEATURED */
.featured-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color .3s;
}

.featured-card:hover {
  border-color: var(--red);
}

.featured-img {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.featured-card:hover .featured-img img {
  transform: scale(1.05);
}

.featured-img .img-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
}

.featured-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proj-category {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.proj-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.proj-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.proj-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #b1b1b1;
}

.meta-row svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
  flex-shrink: 0;
}

.meta-row strong {
  color: var(--silver);
  margin-right: 4px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 2px solid var(--red);
  transition: all .3s;
  cursor: pointer;
  align-self: flex-start;
}

.view-btn:hover {
  background: transparent;
  color: var(--red);
}

.view-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* STANDARD GRID (To avoid conflict with index.php, renamed to .projects-page-grid and .projects-page-card) */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.projects-page-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.projects-page-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.projects-page-card .card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.projects-page-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.projects-page-card:hover .card-img img {
  transform: scale(1.07);
}

.projects-page-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects-page-card:hover .card-overlay {
  opacity: 1;
}

.projects-page-card .card-body {
  padding: 22px 22px 20px;
}

.projects-page-card .card-category {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.projects-page-card .card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.projects-page-card .card-desc {
  font-size: 14px;
  color: #b6b4b4;
  line-height: 1.65;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
}

.projects-page-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.projects-page-card .card-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #b1b1b1;
}

.projects-page-card .card-loc svg {
  width: 12px;
  height: 12px;
  fill: var(--red);
}

.projects-page-card .card-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.projects-page-card .card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--silver);
  transition: stroke .2s;
}

.projects-page-card:hover .card-arrow {
  background: var(--red);
  border-color: var(--red);
}

.projects-page-card:hover .card-arrow svg {
  stroke: #fff;
}

/* CTA */
#cta-wrapper {
  padding: 20px 40px;
  background: var(--dark);
}

#cta-strip {
  background: var(--red);
  padding: 30px 40px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner > div:first-child {
  text-align: left;
}

.cta-inner h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: opacity .2s;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn:hover {
  opacity: .9;
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .featured-card {
    grid-template-columns: 1fr;
    display: block;
  }

  .featured-img {
    height: 300px;
  }

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

@media(max-width:700px) {
  .projects-page-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-inner .stat-item {
    border-right: none;
  }

  #filter-bar {
    padding: 20px 0;
    top: 78px; /* Mobile navbar offset */
  }
  .filter-inner {
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    overflow-x: visible;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 13px;
    background: #1e1e1e;
    border-radius: 20px;
    border: 1px solid #333;
    border-bottom: 1px solid #333;
  }
  .filter-btn.active {
    background: var(--red);
    border-color: var(--red);
  }

  #projects-section {
    padding: 30px 15px;
  }
}

/* ──────── CONTACT PAGE ──────── */

/* QUICK CONTACT STRIP */
#quick-strip {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.quick-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  transition: background .25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.quick-item:last-child {
  border-right: none;
}

.quick-item:hover {
  background: rgba(var(--red-rgb), 0.05);
}

.q-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.08);
  border: 1px solid rgba(var(--red-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}

.quick-item:hover .q-icon-wrap {
  background: rgba(var(--red-rgb), 0.18);
}

.q-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.q-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b1b1b1;
  margin-bottom: 4px;
}

.q-value {
  font-size: 15px;
  color: var(--light);
  font-weight: 500;
  line-height: 1.4;
}

/* MAIN SECTION */
#contact-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* FORM CARD */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
}

.form-header {
  padding: 32px 36px 0;
}

.form-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 15px;
  color: var(--silver);
  font-weight: 300;
}

.form-divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 12px 0 0;
}

/* INQUIRY TYPE TABS */
.inquiry-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-top: 24px;
}

.inq-tab {
  padding: 14px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b1b1b1;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.inq-tab:hover {
  color: var(--light);
}

.inq-tab.active {
  color: #fff;
  border-bottom-color: var(--red);
}

.form-body {
  padding: 28px 36px 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-wrap label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
}

.field-wrap label .req {
  color: var(--red);
  margin-left: 2px;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--light);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 15px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.1);
}

.field-wrap input::placeholder,
.field-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.field-wrap select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.field-wrap select option {
  background: #1c1c1c;
}

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

.file-upload-area {
  border: 2px dashed var(--input-border);
  background: var(--input-bg);
  padding: 22px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s;
  position: relative;
}

.file-upload-area:hover {
  border-color: var(--red);
}

.upload-text {
  font-size: 14px;
  color: #b1b1b1;
}

.upload-text strong {
  color: var(--red);
}

.upload-formats {
  font-size: 12px;
  color: #b1b1b1;
  margin-top: 4px;
}

.file-name-display {
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
  display: none;
}

.error-msg {
  font-size: 12px;
  color: #e05050;
  margin-top: 4px;
  display: none;
}

.error-msg.show {
  display: block;
}

.field-hint {
  font-size: 12px;
  color: #b1b1b1;
  margin-top: 3px;
}

.field-error {
  border-color: #e05050 !important;
  box-shadow: 0 0 0 3px rgba(224, 80, 80, 0.1) !important;
}

.char-count {
  font-size: 12px;
  color: #b1b1b1;
  text-align: right;
  margin-top: 4px;
}

.submit-btn {
  width: 100%;
  background: var(--red);
  border: 2px solid var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: background .25s, color .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.submit-btn:hover {
  background: transparent;
  color: var(--red);
}

.submit-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* SUCCESS */
.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.1);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--red);
}

/* SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* OFFICE CARD */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.info-card-header {
  background: linear-gradient(135deg, #1a0000, #0d0d0d);
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.info-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.info-card-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-card-header p {
  font-size: 13px;
  color: var(--silver);
  margin-top: 4px;
}

.info-card-body {
  padding: 22px 24px;
}

.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.c-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.08);
  border: 1px solid rgba(var(--red-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon svg {
  width: 17px;
  height: 17px;
  fill: var(--red);
}

.c-text-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b1b1b1;
  margin-bottom: 3px;
}

.c-text-value {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
}

.c-text-value a {
  color: var(--silver);
  transition: color .2s;
}

.c-text-value a:hover {
  color: var(--red);
}

/* HOURS CARD */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--silver);
}

.hours-time {
  color: var(--light);
  font-weight: 500;
}

.hours-time.closed {
  color: #b1b1b1;
}

/* MAP */
.footer-map-wrap {
  width: 100%;
  max-width: 1480px;
  margin: 60px auto 0;
  padding: 0 40px 60px;
}

.map-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-wrap {
  position: relative;
  height: 260px;
  background: #111;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) invert(90%) hue-rotate(180deg);
  opacity: 0.85;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  transition: opacity .2s;
}

.map-btn:hover {
  opacity: .85;
}

.map-btn svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}

/* DEPT CARDS */
#departments {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 40px;
}

.dept-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.dept-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.dept-sub {
  font-size: 15px;
  color: var(--silver);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.dept-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .35s;
}

.dept-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
}

.dept-card:hover::before {
  transform: scaleX(1);
}

.dept-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.08);
  border: 1px solid rgba(var(--red-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.dept-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--red);
}

.dept-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dept-email {
  font-size: 14px;
  color: var(--red);
  margin-bottom: 6px;
}

.dept-email a {
  color: var(--red);
}

.dept-phone {
  font-size: 13px;
  color: #b1b1b1;
}


/* RESPONSIVE */
@media(max-width:1100px) {
  #contact-main {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

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

@media(max-width:700px) {
  #contact-main {
    padding: 30px 0;
  }

  .contact-sidebar {
    display: flex;
    flex-direction: column;
  }

  .info-card, .form-card {
    margin: 0 15px;
  }

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

  .quick-inner {
    grid-template-columns: 1fr;
  }

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

  #departments,
  #faq {
    padding: 40px 20px;
  }

  #cta-wrapper,
  #cta-strip {
    padding: 40px 20px;
  }

  #page-hero {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 30px;
  }

  .form-header,
  .form-body,
  #success-msg {
    padding-left: 15px;
    padding-right: 15px;
  }

  .inquiry-tabs {
    flex-wrap: wrap;
    overflow-x: auto;
  }
  
  .inq-tab {
    padding: 10px 15px;
    flex: 1;
    text-align: center;
  }

  .footer-map-wrap {
    padding: 0 20px 40px;
  }
}

/* FAQ */
#faq {
  padding: 60px 40px;
  background: var(--dark);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.faq-sub {
  font-size: 15px;
  color: var(--silver);
  margin-bottom: 36px;
  font-weight: 300;
}

.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--red);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .3s;
}

.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--silver);
}

.faq-item.open .faq-icon svg {
  fill: #fff;
}

.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a {
  display: block;
}

/* SOCIAL CARD */
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(var(--red-rgb), 0.07);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* TODAY BADGE */
.today-badge {
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-left: 8px;
}
/* WhatsApp Float Icon */
.whatsapp-float {
  position: fixed !important;
  width: 60px !important;
  height: 60px !important;
  bottom: 40px !important;
  right: 40px !important;
  background-color: #25d366 !important;
  color: #FFF !important;
  border-radius: 50px !important;
  text-align: center !important;
  font-size: 30px !important;
  box-shadow: 2px 2px 3px #999 !important;
  z-index: 2147483647 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-decoration: none !important;
}

.whatsapp-float:hover {
  background-color: #128C7E !important;
  color: #fff !important;
}

.whatsapp-icon {
  width: 35px !important;
  height: 35px !important;
  fill: currentColor !important;
}

@media screen and (max-width: 767px) {
  #testimonials {
    padding: 30px 15px !important;
  }
  .whatsapp-float {
    width: 60px !important;
    height: 60px !important;
    bottom: 30px !important;
    right: 20px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .whatsapp-icon {
    width: 35px !important;
    height: 35px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* MAP CARD HEADER RESPONSIVE */
.map-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-card-text {
  text-align: left;
}
.map-card-btn-wrap {
  display: block;
}

@media (max-width: 600px) {
  .map-card-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .map-card-text {
    text-align: center;
  }
  .map-card-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
