/* Google Fonts: Poppins, Orbitron, Montserrat */
:root {
  --black: #000000;
  --red: #C8102E;
  --red-alt: #E10600;
  --white: #FFFFFF;
  --gray: #B0B0B0;
  --font-main: 'Poppins', 'Montserrat', 'Orbitron', Arial, sans-serif;
}

/* Add global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: none;
}
.navbar.solid {
  background: var(--black);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  padding: 0 2rem;
  max-width: none;
  margin: 0;
}
.logo {
  font-family: 'Orbitron', 'Montserrat', 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-white { color: var(--white); }
.logo-red { color: var(--red); margin-left: 4px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-links li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.3s;
  position: absolute;
  left: 0; bottom: -2px;
}
.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--red);
}
.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.75em 2em;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(200,16,46,0.15);
}
.btn-red:hover, .btn-red:focus {
  background: var(--red-alt);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(200,16,46,0.25);
}
.btn-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}
.btn-dark:hover, .btn-dark:focus {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: var(--red);
}
.arrow {
  font-size: 1.2em;
  margin-left: 0.5em;
  transition: transform 0.2s;
}
.btn:hover .arrow, .btn:focus .arrow {
  transform: translateX(4px);
}

.nav-cta {
  margin-left: 2rem;
  margin-right: 2rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  position: fixed;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 28px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: none !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('herosection.img.jpg');
  background-size: cover;
  background-position: 50% center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}
.hero-text {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}
.hero-text h1, .hero-text p {
  font-family: 'Ubuntu', sans-serif;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.2rem 0;
  color: var(--white);
}
.hero-text .red {
  color: var(--red);
}
.hero-text p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-text .gray {
  color: var(--gray);
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}
.hero-cta {
  min-width: 180px;
  justify-content: center;
}

.hero-image-wrapper {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  transition: transform 0.5s cubic-bezier(.19,1,.22,1), box-shadow 0.3s;
  position: relative;
  z-index: 2;
}
.hero-image-wrapper:hover .hero-image,
.hero-image-wrapper:focus-within .hero-image {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 64px rgba(200,16,46,0.25);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 60%, rgba(200,16,46,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* SVG background */
.hero-bg-svg {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 36px;
  border: 2px solid var(--gray);
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
  opacity: 0.7;
}
.scroll-indicator span::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scroll-dot 1.2s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes scroll-dot {
  0% { top: 8px; opacity: 1; }
  60% { top: 20px; opacity: 0.7; }
  100% { top: 28px; opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    gap: 2rem;
    padding-top: 90px;
  }
  .hero-text, .hero-image-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hero-image {
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 1.5rem;
    width: 220px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    border-radius: 0 0 0 16px;
    padding: 0 1.5rem;
    z-index: 105;
  }
  .nav-links.open {
    height: 320px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .nav-links li {
    margin: 0;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-right: 1.2rem;
    margin-left: 0.5rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: 96%;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 5vw;
  }
  .btn, .hero-cta {
    width: 100%;
    justify-content: center;
    min-width: unset;
    box-sizing: border-box;
  }
  .hero-image {
    max-width: 90vw;
  }
  .scroll-indicator {
    bottom: 16px;
  }
}

/* Accessibility focus */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Services Section */
.services {
  background: #111;
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 2;
}
.section-title {
  color: var(--white);
  font-size: 2.2rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.services-container {
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
}
.service-card {
  background: none;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(200,16,46,0.10), 0 2px 16px rgba(0,0,0,0.10);
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: transform 0.25s cubic-bezier(.19,1,.22,1), box-shadow 0.25s;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: var(--red);
}
.service-images {
  display: flex;
  width: 100%;
  height: 280px;
  gap: 0;
  position: relative;
}
.service-image {
  position: relative;
  flex: 1 1 50%;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-shadow: none;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: z-index 0.2s;
  cursor: pointer;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1), filter 0.3s;
  z-index: 1;
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(200,16,46,0.08) 0%, rgba(0,0,0,0.10) 100%);
  z-index: 2;
}
.service-image:hover img, .service-image:focus-within img {
  transform: scale(1.16) rotate(-1deg);
  filter: brightness(1.08) saturate(1.1);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(200,16,46,0.18);
}
.service-image:hover, .service-image:focus-within {
  z-index: 4;
}
.label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--red);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 10px;
  letter-spacing: 1px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.96;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.service-image:hover .label, .service-image:focus-within .label {
  background: var(--white);
  color: var(--red);
  transform: scale(1.08);
}
.service-info-overlay {
  position: relative;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  text-align: center;
  z-index: 5;
  margin-top: -60px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  min-height: 120px;
  box-shadow: 0 -2px 16px rgba(200,16,46,0.08);
  animation: overlay-fade-in 0.7s cubic-bezier(.19,1,.22,1);
  overflow: hidden;
}
@keyframes overlay-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-info-overlay h3 {
  color: var(--red);
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.service-info-overlay h3 .icon {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  vertical-align: middle;
}
.service-info-overlay p {
  color: #222;
  font-size: 1.08rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.service-card:active {
  box-shadow: 0 2px 8px rgba(200,16,46,0.10);
  border-color: var(--red-alt);
}
@media (max-width: 900px) {
  .service-card {
    max-width: 99vw;
  }
  .service-images {
    height: 160px;
  }
  .service-info-overlay {
    padding: 1.5rem 1rem 1rem 1rem;
    min-height: 100px;
  }
}
@media (max-width: 600px) {
  .service-images {
    height: 90px;
  }
  .service-info-overlay {
    padding: 1rem 0.5rem 0.7rem 0.5rem;
    min-height: 80px;
  }
}

/* Modal styles for full-res image */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.modal.open {
  display: flex;
}
.modal-img {
  max-width: 98vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  background: #111;
}
.modal-close {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
}

.single-service {
  justify-content: center;
  align-items: center;
  height: 180px;
  background: #222;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.empty-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.10);
  min-height: 180px;
  border-radius: 28px;
  box-shadow: none;
}

/* Custom Card Styles for Wrap n Drive */
.custom-card-parent {
  width: 290px;
  height: 300px;
  perspective: 1000px;
  margin: 1.5rem auto;
}

.custom-card {
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(135deg, #000 0%, #C8102E 100%);
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  box-shadow: rgba(0,0,0,0.12) 0px 8px 32px, rgba(200,16,46,0.10) 0px 25px 25px -5px;
  position: relative;
  overflow: hidden;
}

.custom-card-glass {
  transform-style: preserve-3d;
  position: absolute;
  inset: 8px;
  border-radius: 40px;
  border-top-right-radius: 100%;
  background: linear-gradient(0deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.7) 100%);
  transform: translate3d(0px, 0px, 25px);
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease-in-out;
}

.custom-card-content {
  padding: 100px 30px 0px 30px;
  transform: translate3d(0, 0, 26px);
}

.custom-card-content .custom-card-title {
  display: block;
  color: #C8102E;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
}

.custom-card-content .custom-card-text {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-top: 20px;
  opacity: 0.85;
}

.custom-card-bottom {
  padding: 10px 12px;
  transform-style: preserve-3d;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translate3d(0, 0, 26px);
}

.custom-card-bottom .custom-card-view-more {
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: flex-end;
  transition: all 0.2s ease-in-out;
}

.custom-card-bottom .custom-card-view-more:hover {
  transform: translate3d(0, 0, 10px);
}

.custom-card-bottom .custom-card-view-more-button {
  background: none;
  border: none;
  color: #C8102E;
  font-weight: bolder;
  font-size: 12px;
}

.custom-card-bottom .custom-card-view-more .svg {
  fill: none;
  stroke: #C8102E;
  stroke-width: 3px;
  max-height: 15px;
}

.custom-card-bottom .custom-card-social-buttons-container {
  display: flex;
  gap: 10px;
  transform-style: preserve-3d;
}

.custom-card-bottom .custom-card-social-button {
  width: 30px;
  aspect-ratio: 1;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: grid;
  place-content: center;
  box-shadow: rgba(200,16,46,0.15) 0px 7px 5px -5px;
  transition: background 0.2s, box-shadow 0.2s;
}

.custom-card-bottom .custom-card-social-button .svg {
  width: 15px;
  fill: #C8102E;
  transition: fill 0.2s;
}

.custom-card-bottom .custom-card-social-button:hover {
  background: #000;
}

.custom-card-bottom .custom-card-social-button:hover .svg {
  fill: #fff;
}

.custom-card-bottom .custom-card-social-button:active {
  background: #C8102E;
}

.custom-card-bottom .custom-card-social-button:active .svg {
  fill: #fff;
}

.custom-card-logo {
  position: absolute;
  right: 0;
  top: 0;
  transform-style: preserve-3d;
}

.custom-card-logo .custom-card-circle {
  display: block;
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 0;
  right: 0;
  box-shadow: rgba(200,16,46,0.10) -10px 10px 20px 0px;
  backdrop-filter: blur(5px);
  background: rgba(200,16,46,0.12);
  transition: all 0.5s ease-in-out;
}

.custom-card-logo .custom-card-circle1 { width: 170px; transform: translate3d(0, 0, 20px); top: 8px; right: 8px; }
.custom-card-logo .custom-card-circle2 { width: 140px; transform: translate3d(0, 0, 40px); top: 10px; right: 10px; backdrop-filter: blur(1px); transition-delay: 0.4s; }
.custom-card-logo .custom-card-circle3 { width: 110px; transform: translate3d(0, 0, 60px); top: 17px; right: 17px; transition-delay: 0.8s; }
.custom-card-logo .custom-card-circle4 { width: 80px; transform: translate3d(0, 0, 80px); top: 23px; right: 23px; transition-delay: 1.2s; }
.custom-card-logo .custom-card-circle5 { width: 50px; transform: translate3d(0, 0, 100px); top: 30px; right: 30px; display: grid; place-content: center; transition-delay: 1.6s; }
.custom-card-logo .custom-card-circle5 .svg { width: 20px; fill: #fff; }

.custom-card-parent:hover .custom-card {
  transform: rotate3d(1, 1, 0, 30deg);
  box-shadow: rgba(200,16,46,0.18) 30px 50px 25px -40px, rgba(0,0,0,0.10) 0px 25px 30px 0px;
}

.custom-card-parent:hover .custom-card .custom-card-bottom .custom-card-social-button {
  transform: translate3d(0, 0, 50px);
  box-shadow: rgba(200,16,46,0.10) -5px 20px 10px 0px;
}

.custom-card-parent:hover .custom-card .custom-card-logo .custom-card-circle2 { transform: translate3d(0, 0, 60px); }
.custom-card-parent:hover .custom-card .custom-card-logo .custom-card-circle3 { transform: translate3d(0, 0, 80px); }
.custom-card-parent:hover .custom-card .custom-card-logo .custom-card-circle4 { transform: translate3d(0, 0, 100px); }
.custom-card-parent:hover .custom-card .custom-card-logo .custom-card-circle5 { transform: translate3d(0, 0, 120px); }

@media (max-width: 700px) {
  .custom-card-parent {
    width: 98vw;
    min-width: 220px;
    max-width: 340px;
    height: 320px;
  }
  .custom-card-content {
    padding: 90px 10px 0px 10px;
  }
}

/* Service Page Styles */
.service-page {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Ubuntu', Arial, sans-serif;
}
.service-hero {
  background: linear-gradient(120deg, #000 60%, #C8102E 100%);
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.service-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 0.5em;
}
.service-hero-content p {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 2vw 40px 2vw;
}
.service-card {
  background: rgba(20,20,20,0.85);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(200,16,46,0.10), 0 2px 16px rgba(0,0,0,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(.19,1,.22,1), box-shadow 0.25s;
  border: 1.5px solid rgba(255,255,255,0.10);
  position: relative;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: #C8102E;
}
.service-card-img {
  width: 100%;
  height: 220px;
  background: #111;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1), filter 0.3s;
}
.service-card:hover .service-card-img img,
.service-card:focus-within .service-card-img img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(1.08) saturate(1.1);
}
.service-card-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}
.service-card-body h2 {
  color: #C8102E;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.service-card-body p {
  color: #fff;
  font-size: 1.08rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.92;
}
.service-quote-btn {
  margin-top: auto;
  align-self: flex-start;
}
.why-choose-us {
  background: #111;
  padding: 60px 0 40px 0;
  text-align: center;
}
.why-choose-us h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.value-props {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.value-prop {
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 1.2em 2.2em;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7em;
  box-shadow: 0 2px 12px rgba(200,16,46,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}
.value-prop .icon {
  color: #C8102E;
  font-size: 1.3em;
}
.service-cta {
  background: linear-gradient(120deg, #C8102E 0%, #000 100%);
  text-align: center;
  padding: 60px 0 80px 0;
}
.service-cta h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.service-cta .btn {
  font-size: 1.2rem;
  padding: 0.9em 2.5em;
  border-radius: 30px;
  font-weight: 700;
  background: #C8102E;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(200,16,46,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.service-cta .btn:hover, .service-cta .btn:focus {
  background: #a00b23;
  color: #fff;
  box-shadow: 0 4px 24px rgba(200,16,46,0.25);
}
@media (max-width: 900px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-card-img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .service-hero-content h1 {
    font-size: 2.1rem;
  }
  .service-hero-content p {
    font-size: 1rem;
  }
  .services-list {
    padding: 30px 1vw 20px 1vw;
  }
  .service-card-body {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .why-choose-us {
    padding: 30px 0 20px 0;
  }
  .service-cta {
    padding: 30px 0 40px 0;
  }
  .service-cta h2 {
    font-size: 1.3rem;
  }
  .service-cta .btn {
    font-size: 1rem;
    padding: 0.7em 1.5em;
  }
}

/* Services Section (under hero) */
.services-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none !important;
  z-index: 1;
  overflow: hidden;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
.services-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 2vw 80px 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 0.05em;
  letter-spacing: 2px;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
  padding-bottom: 0;
}
.services-title .red {
  color: #C8102E;
}
.services-subtitle {
  font-size: 2.8rem;
  color: #e0e0e0;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.4em;
  font-weight: 900;
  letter-spacing: 1px;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
  padding-bottom: 0;
  font-style: italic;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
}
.service-card.glass {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 16px rgba(200,16,46,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(.19,1,.22,1), box-shadow 0.25s;
  min-width: 0;
  min-height: 420px;
  position: relative;
}
.service-card.glass:hover, .service-card.glass:focus-within {
  transform: scale(1.035) translateY(-8px);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: #fff;
}
.service-card-img {
  width: 100%;
  height: 180px;
  background: #222;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1), filter 0.3s;
}
.service-card.glass:hover .service-card-img img,
.service-card.glass:focus-within .service-card-img img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(1.08) saturate(1.1);
}
.service-card-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}
.service-card-icon {
  font-size: 2.1rem;
  margin-bottom: 0.7em;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}
.service-card-body h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
}
.service-card-body p {
  color: #f3f3f3;
  font-size: 1.08rem;
  margin: 0 0 1.2em 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  opacity: 0.96;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
}
.learn-more {
  color: #fff;
  font-size: 1rem;
  text-decoration: underline;
  opacity: 0.85;
  margin-top: auto;
  transition: color 0.2s;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
}
.service-card.glass:hover .learn-more,
.service-card.glass:focus-within .learn-more {
  color: #C8102E;
  opacity: 1;
}
@media (max-width: 1100px) {
  .services-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    width: 100vw;
    padding-bottom: 1.5rem;
  }
  .services-grid::-webkit-scrollbar {
    height: 8px;
    background: #222;
  }
  .services-grid::-webkit-scrollbar-thumb {
    background: #C8102E;
    border-radius: 4px;
  }
  .service-card.glass {
    min-width: 320px;
    max-width: 90vw;
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
}
@media (max-width: 700px) {
  .services-content {
    padding: 40px 1vw 40px 1vw;
  }
  .services-title {
    font-size: 2rem;
  }
  .services-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5em;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card-body {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .service-card-img {
    height: 140px;
  }
}

body.single-bg {
  background: url('herosection.img.jpg') center center / cover no-repeat fixed;
  position: relative;
}
body.single-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.6) 100%);
}
.hero {
  background: none !important;
}
.services-section {
  background: none !important;
}
.services-content {
  position: relative;
  z-index: 1;
}
.services-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 1.2em;
  letter-spacing: 2px;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
  padding-bottom: 0.5em;
}
.services-title .red {
  color: #C8102E;
}
.services-subtitle {
  font-size: 2.8rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: 900;
  letter-spacing: 1px;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
  padding-bottom: 0.5em;
}

.services-scroll-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5em 0 1.5em 0;
  animation: arrow-bounce 1.5s infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* Portfolio Section Masonry Layout */
.portfolio-section {
  width: 100vw;
  position: relative;
  background: none;
  padding: 80px 0 60px 0;
  z-index: 1;
}
.container-fluid {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 0.5vw;
}
.portfolio-title {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.portfolio-title .red {
  color: var(--red);
}
.portfolio-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.portfolio-masonry {
  display: grid;
  grid-template-areas:
    'a a b c d'
    'e f b g d'
    'e h i g d';
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 180px;
  gap: 1.5vw;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 1vw;
  box-sizing: border-box;
}
/* Assign grid areas to each card */
.large-landscape { grid-area: a; grid-row: span 1; grid-column: span 2; }
.portrait { grid-area: b; grid-row: span 2; grid-column: span 1; }
.square { grid-area: c; grid-row: span 1; grid-column: span 1; }
.medium-landscape { grid-area: d; grid-row: span 3; grid-column: span 1; }
.tall-portrait { grid-area: e; grid-row: span 2; grid-column: span 1; }
.wide-landscape { grid-area: f; grid-row: span 1; grid-column: span 1; }
.small-square { grid-area: g; grid-row: span 2; grid-column: span 1; }
.medium-portrait { grid-area: h; grid-row: span 1; grid-column: span 1; }
.large-square { grid-area: i; grid-row: span 1; grid-column: span 1; }

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  transition: box-shadow 0.25s, transform 0.25s;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), filter 0.4s;
}
.portfolio-item:hover img,
.portfolio-item:focus-within img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1.1);
}
.portfolio-desc {
  position: absolute;
  left: 0.7em;
  bottom: 0.7em;
  background: rgba(0,0,0,0.68);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7em 1.1em 0.7em 1em;
  border-radius: 0.7em 1.2em 1.2em 0.7em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s;
  z-index: 2;
  max-width: 80%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.portfolio-item:hover .portfolio-desc,
.portfolio-item:focus-within .portfolio-desc {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 1200px) {
  .portfolio-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      'a b c'
      'd e f'
      'g h i';
    grid-auto-rows: 160px;
  }
}
@media (max-width: 900px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      'a b'
      'c d'
      'e f'
      'g h'
      'i i';
    grid-auto-rows: 140px;
    gap: 1vw;
  }
}
@media (max-width: 700px) {
  .portfolio-section {
    padding: 32px 0 20px 0;
  }
  .container-fluid {
    padding: 0 0.5em;
  }
  .portfolio-title {
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
  }
  .portfolio-subtitle {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  .portfolio-masonry {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 0 0.2em;
    width: 100vw;
    max-width: 100vw;
  }
  .portfolio-item {
    min-width: 0;
    width: 100%;
    min-height: 180px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .portfolio-item img {
    border-radius: 10px;
    min-height: 160px;
    max-height: 260px;
    object-fit: cover;
  }
  .portfolio-desc {
    font-size: 0.97rem;
    padding: 0.5em 0.8em 0.5em 0.7em;
    border-radius: 0.5em 1em 1em 0.5em;
    left: 0.4em;
    bottom: 0.4em;
    max-width: 92vw;
  }
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 1;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card.glass {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 16px rgba(200,16,46,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  min-height: 180px;
  padding: 2em 1.5em;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card.glass:hover {
  transform: scale(1.035) translateY(-8px);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: #fff;
}
.why-icon {
  margin-bottom: 1em;
}
.why-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 1;
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card.glass {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 16px rgba(200,16,46,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  min-height: 340px;
  padding: 2em 1.5em 1.5em 1.5em;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
@media (max-width: 900px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .pricing-card.glass {
    min-width: 0;
    width: 100%;
    border-radius: 18px;
    padding: 1.2em 0.5em 1em 0.5em;
    box-sizing: border-box;
  }
}
.pricing-card.glass.featured {
  border: 2.5px solid #C8102E;
  box-shadow: 0 12px 48px 0 rgba(200,16,46,0.25), 0 4px 32px rgba(0,0,0,0.18);
}
.pricing-card.glass:hover {
  transform: scale(1.035) translateY(-8px);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: #fff;
}
.pricing-title {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.pricing-title .red {
  color: var(--red);
}
.pricing-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.pricing-features {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin: 0 0 2em 0;
  padding: 0 0 0 1.2em;
  list-style: disc;
  text-align: left;
}
.pricing-quote-btn {
  margin-top: auto;
  align-self: center;
}
.pricing-card .pricing-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 1;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card.glass {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 16px rgba(200,16,46,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  min-height: 180px;
  padding: 2em 1.5em 1.5em 1.5em;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.testimonial-card.glass:hover {
  transform: scale(1.035) translateY(-8px);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: #fff;
}
.testimonial-quote {
  color: #fff;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1em;
}
.testimonial-author {
  color: #C8102E;
  font-size: 1rem;
  font-weight: 700;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-btn {
  font-size: 1.3rem;
  padding: 1em 2.5em;
  border-radius: 30px;
  font-weight: 700;
  margin-top: 2em;
  background: #C8102E;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(200,16,46,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #a00b23;
  color: #fff;
  box-shadow: 0 4px 24px rgba(200,16,46,0.25);
}

/* Contact Section */
.contact-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-title {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.contact-title .red {
  color: var(--red);
}
.contact-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}
.contact-form.glass {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 16px rgba(200,16,46,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 320px;
  max-width: 400px;
  margin: 0 auto 2em auto;
  padding: 2em 1.5em 1.5em 1.5em;
  gap: 1em;
  flex: 1 1 320px;
}
.form-row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  padding: 0.8em 1em;
  margin-bottom: 0.5em;
  width: 100%;
  font-family: 'Ubuntu', 'Montserrat', Arial, sans-serif;
  outline: none;
  transition: border 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C8102E;
  background: rgba(255,255,255,0.28);
}
.contact-form button[type="submit"], .contact-form .btn {
  display: block !important;
  width: 100% !important;
  margin-top: 1em !important;
  font-size: 1.1rem !important;
  padding: 0.9em 0 !important;
  background: #C8102E !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  box-shadow: 0 2px 12px rgba(200,16,46,0.15) !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
  align-self: unset !important;
}
.contact-form button[type="submit"]:hover, .contact-form button[type="submit"]:focus {
  background: #a00b23 !important;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(200,16,46,0.25) !important;
}
.contact-details {
  color: #fff;
  text-align: left;
  font-size: 1.1rem;
  margin-top: 1.5em;
  opacity: 0.85;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 2em 1.5em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  margin-left: auto;
}
.contact-details a {
  color: #C8102E;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-details a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .contact-section {
    padding: 40px 0 30px 0;
  }
  .contact-title {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }
  .contact-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }
  .contact-row {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }
  .contact-form.glass, .contact-details {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto 1em auto;
    padding: 1.2em 0.7em 1em 0.7em;
  }
  .contact-details {
    text-align: center;
    font-size: 1rem;
    margin-top: 0.5em;
    padding: 1.2em 0.7em 1em 0.7em;
  }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .portfolio-grid, .why-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .portfolio-card.glass, .why-card.glass, .pricing-card.glass, .testimonial-card.glass {
    min-width: 220px;
    max-width: 100vw;
  }
}
@media (max-width: 700px) {
  .portfolio-section, .why-section, .pricing-section, .testimonials-section, .contact-section, .cta-section {
    padding: 40px 0 30px 0;
  }
  .portfolio-grid, .why-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 1.2rem;
  }
  .portfolio-card.glass, .why-card.glass, .pricing-card.glass, .testimonial-card.glass {
    min-width: 0;
    max-width: 100vw;
  }
  .contact-form.glass {
    padding: 1em 0.5em 1em 0.5em;
  }
  .hamburger {
    margin-right: 1.2rem;
    margin-left: 0.5rem;
  }
} 

.about-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.about-title {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.about-title .red {
  color: var(--red);
}
.about-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.about-content {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}
.about-description {
  color: #e0e0e0;
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.92;
}
.testimonials-section {
  margin-top: 2.5rem;
}
.testimonials-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card.glass {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 16px rgba(200,16,46,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  min-height: 180px;
  padding: 2em 1.5em 1.5em 1.5em;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.testimonial-card.glass:hover {
  transform: scale(1.035) translateY(-8px);
  box-shadow: 0 16px 48px 0 rgba(200,16,46,0.18), 0 4px 32px rgba(0,0,0,0.18);
  border-color: #fff;
}
.testimonial-quote {
  color: #fff;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1em;
  text-align: center;
}
.testimonial-author {
  color: #C8102E;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 900px) {
  .about-section {
    padding: 40px 0 30px 0;
  }
  .about-title {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }
  .about-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }
  .about-content {
    font-size: 1rem;
  }
  .testimonials-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .testimonial-card.glass {
    min-width: 0;
    width: 100%;
    border-radius: 14px;
    padding: 1.2em 0.7em 1em 0.7em;
  }
} 

.about-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  width: 100%;
}
.about-image-col, .about-description-col {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.about-image-col, .about-img-glass {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}
.about-img-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
}
.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
}
.about-content {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .about-image-col, .about-description-col {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .about-img-glass {
    max-width: 340px;
    margin: 0 auto;
    padding: 0.3em;
    width: 100%;
  }
  .about-img {
    max-width: 340px;
    border-radius: 14px;
  }
  .about-content {
    width: 100%;
    text-align: center;
  }
} 

.footer-section {
  background: #181c23;
  color: #e0e0e0;
  padding: 60px 0 0 0;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  position: relative;
  width: 100%;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  gap: 2.5rem;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Orbitron', 'Montserrat', 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #fff;
}
.logo-white { color: #fff; }
.logo-red { color: #C8102E; margin-left: 4px; }
.footer-mission {
  font-size: 1.08rem;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-contact h4,
.footer-social h4,
.footer-links h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1em;
  letter-spacing: 1px;
}
.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li,
.footer-links li {
  margin-bottom: 0.7em;
  font-size: 1rem;
}
.footer-contact a,
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover,
.footer-links a:hover {
  color: #C8102E;
  text-decoration: underline;
}
.footer-social-icons {
  display: flex;
  gap: 1.2em;
  margin-top: 0.5em;
}
.footer-icon {
  color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  width: 40px;
  height: 40px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-size: 1.3em;
}
.footer-icon:hover,
.footer-icon:focus {
  background: #C8102E;
  color: #fff;
  transform: translateY(-3px) scale(1.08);
}
.footer-bottom {
  background: #15181e;
  color: #b0b0b0;
  text-align: center;
  font-size: 1rem;
  padding: 1.2em 0 1.2em 0;
  margin-top: 0;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 0 1vw;
  }
  .footer-col {
    margin-bottom: 1.5rem;
  }
  .footer-mission {
    max-width: 100%;
  }
} 

.cta-transform-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 3.5rem 0 2.5rem 0;
}
.cta-transform-btn {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.55em 1.5em;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(255,26,42,0.22);
  letter-spacing: 1px;
  background: #ff1a2a;
  color: #fff;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  text-transform: uppercase;
  margin: 0 auto;
}
.cta-transform-btn:hover, .cta-transform-btn:focus {
  background: #e10600;
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,26,42,0.32);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
  .cta-transform-wrapper {
    margin: 2rem 0 1.2rem 0;
  }
  .cta-transform-btn {
    font-size: 1.05rem;
    padding: 0.9em 1.5em;
    border-radius: 22px;
  }
}

/* --- Responsive Layout Improvements & Best Practices --- */

/* 1100px and below: stack grids, reduce gaps */
@media (max-width: 1100px) {
  .services-grid, .portfolio-masonry, .footer-container, .about-row, .contact-row, .pricing-grid, .testimonials-grid, .why-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* 900px and below: tighter padding, stack columns */
@media (max-width: 900px) {
  .container, .container-fluid {
    padding-left: 2vw;
    padding-right: 2vw;
    max-width: 100vw;
  }
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 0 1vw;
  }
}

/* 700px and below: full width, stack everything, fix nav */
@media (max-width: 700px) {
  .navbar {
    height: 60px;
    min-height: 60px;
    padding: 0;
    z-index: 120;
  }
  .nav-container {
    height: 60px;
    padding: 0 1vw;
  }
  .nav-links {
    top: 60px;
    right: 0;
    left: auto;
    width: 90vw;
    min-width: 160px;
    max-width: 99vw;
    border-radius: 0 0 0 12px;
    z-index: 120;
  }
  .hamburger {
    top: 10px;
    right: 10px;
    z-index: 130;
  }
  .btn, .btn-red, .btn-dark, .cta-btn, .service-quote-btn, .pricing-quote-btn, .cta-transform-btn, .hero-cta, .nav-cta {
    width: 100%;
    min-width: unset;
    font-size: clamp(1rem, 4vw, 1.2rem);
    padding: 1em 0.5em;
  }
}

/* 600px and below: reduce font, tighter grid, fix modal */
@media (max-width: 600px) {
  .container, .container-fluid {
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .services-grid, .portfolio-masonry, .footer-container, .about-row, .contact-row, .pricing-grid, .testimonials-grid, .why-grid {
    gap: 0.7rem;
  }
  .modal {
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;
    overflow: auto;
  }
}

/* 500px and below: smallest screens, stack everything, reduce gaps */
@media (max-width: 500px) {
  .container, .container-fluid {
    padding-left: 0.5vw;
    padding-right: 0.5vw;
  }
  .services-grid, .portfolio-masonry, .footer-container, .about-row, .contact-row, .pricing-grid, .testimonials-grid, .why-grid {
    gap: 0.3rem;
  }
  .btn, .btn-red, .btn-dark, .cta-btn, .service-quote-btn, .pricing-quote-btn, .cta-transform-btn, .hero-cta, .nav-cta {
    font-size: 0.95rem;
    padding: 0.7em 0.2em;
  }
}

/* 375px and below: ultra small, no overflow, smallest font */
@media (max-width: 375px) {
  .btn, .btn-red, .btn-dark, .cta-btn, .service-quote-btn, .pricing-quote-btn, .cta-transform-btn, .hero-cta, .nav-cta {
    font-size: 0.85rem;
    padding: 0.6em 0.1em;
  }
  .nav-links {
    width: 99vw;
    min-width: unset;
    max-width: 99vw;
    right: 0;
    left: auto;
    border-radius: 0 0 0 8px;
  }
}

/* 320px and below: emergency fit, no overflow */
@media (max-width: 320px) {
  .btn, .btn-red, .btn-dark, .cta-btn, .service-quote-btn, .pricing-quote-btn, .cta-transform-btn, .hero-cta, .nav-cta {
    font-size: 0.8rem;
    padding: 0.5em 0.05em;
  }
  .nav-links {
    width: 100vw;
    min-width: unset;
    max-width: 100vw;
    right: 0;
    left: auto;
    border-radius: 0 0 0 6px;
  }
}

/* Best Practice: Avoid fixed px widths, use max-width, min-width, and responsive units. Always use box-sizing: border-box. Avoid negative margins. Use flex/grid for layout. */