:root {
  --primary: #6c63ff;
  --secondary: #f5f6fa;
  --accent: #ffce00;
  --gold: #dab341;
  --dark: #2d3436;
  --white: #fff;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ece9f7 0%, #f7f7fa 100%);
  color: var(--dark);
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  max-width: 100vw;
  overflow-x: hidden;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 32px rgba(108, 99, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2002;
  padding: 0.95rem 1.75rem;
  box-sizing: border-box;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  align-items: center;
  transition: none;
}
.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  transition: color 0.21s, background 0.22s;
  line-height: 1.5;
  white-space: nowrap;
}
.nav-links li a:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 3002;
  cursor: pointer;
  margin-left: 12px;
  margin-right: -5px;
  transition: background 0.21s;
  outline: none;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3.5px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0;
  transition: transform 0.24s, opacity 0.2s;
}

/* Hamburger to X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========== Mobile Nav ========== */
@media (max-width: 900px) {
  .navbar {
    padding: 0.95rem 1.1rem;
  }
  .logo {
    font-size: 1.45rem;
    gap: 0.6rem;
  }
  .logo img {
    width: 92px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: -2px 0 32px rgba(108, 99, 255, 0.13);
    height: 100vh;
    width: 222px;
    max-width: 100vw;
    box-sizing: border-box;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 90px 30px 30px 35px;
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(0.57, 0.18, 0.45, 1.22);
    z-index: 2222;
  }
  .nav-links.active {
    transform: translateX(0);
    transition: transform 0.31s cubic-bezier(0.57, 0.18, 0.45, 1.33);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    font-size: 1.15rem;
    width: 100%;
    display: block;
    background: none;
    padding-left: 1px;
    padding-right: 0;
    border-radius: 17px;
    transition: background 0.18s, color 0.17s;
    margin-bottom: 4px;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 400px) {
  .nav-links {
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  .logo img {
    width: 82px;
  }
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  background: radial-gradient(
      circle at 18% 15%,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(120deg, var(--primary) 60%, var(--accent));
  color: var(--white);
  padding: 7rem 2rem 5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 40px rgba(108, 99, 255, 0.11);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 8% 12% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(0.5px);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  text-align: left;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  letter-spacing: 0.5px;
  font-family: "Poppins", serif;
  color: #fff;
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 520px;
  line-height: 1.7;
}
.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
}
.tagline::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 206, 0, 0.8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary {
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #6c63ff 55%, #dab341);
  color: #fff;
  border: none;
  border-radius: 26px;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.1);
  font-size: 1.09rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.24s, color 0.25s, box-shadow 0.22s;
  letter-spacing: 0.5px;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(90deg, #4a3bbd 50%, #ffce00 100%);
  color: #2d3436;
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.17);
}
.btn-secondary {
  padding: 1rem 2.2rem;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(2px);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}
.hero-brand {
  margin: 0;
  display: flex;
  justify-content: center;
}
.brand-card {
  position: relative;
  padding: 2.2rem 2.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 60px rgba(41, 39, 80, 0.22);
  overflow: hidden;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.brand-logo {
  width: min(180px, 60%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(108, 99, 255, 0.25));
}
.brand-card::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0.85;
}
.brand-card::after {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: rgba(108, 99, 255, 0.12);
  position: absolute;
  top: 32px;
  right: 28px;
  z-index: -1;
  filter: blur(0.2px);
  pointer-events: none;
}
.brand-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--dark);
  align-items: center;
}
.brand-card figcaption strong {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.brand-card figcaption span {
  font-size: 0.95rem;
  color: rgba(45, 52, 54, 0.75);
}
.brand-card-glow {
  position: absolute;
  inset: auto -60% -55% -60%;
  height: 220px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(108, 99, 255, 0.35) 0%,
    rgba(108, 99, 255, 0) 70%
  );
  z-index: -1;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 6.5rem;
  }
  .hero-inner {
    gap: 2.4rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .brand-card {
    padding: 1.8rem 1.6rem 2.1rem;
  }
  .brand-logo {
    width: 150px;
  }
  .brand-card::before {
    width: 100px;
  }
}

/* ========== Work Showcase ========== */
.work-section {
  padding: 4rem 2rem 2rem 2rem;
  background: var(--white);
  text-align: center;
  margin-top: 60px;
}
.work-section h2 {
  font-size: 2rem;
  margin-bottom: 2.2rem;
  color: var(--primary);
  letter-spacing: 1px;
  font-family: "Poppins", serif;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.work-item {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(108, 99, 255, 0.13);
  transition: box-shadow 0.19s, transform 0.17s;
  cursor: pointer;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.work-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  transition: transform 0.19s;
}
.work-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 0;
}
.work-item:hover,
.work-item:focus {
  box-shadow: 0 16px 40px rgba(108, 99, 255, 0.19);
  transform: translateY(-5px) scale(1.025);
}
.work-item:hover img,
.work-item:focus img {
  transform: scale(1.05);
}

/* ========== Modal Gallery ========== */
.modal-gallery {
  display: none;
  position: fixed;
  z-index: 3003;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 44, 44, 0.73);
  justify-content: center;
  align-items: center;
  transition: background 0.33s;
}
.modal-gallery.active {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 1.3rem 1.6rem 1.3rem;
  position: relative;
  max-width: 94vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 80px rgba(44, 38, 99, 0.16);
  animation: fadeInModal 0.37s;
  overflow: visible;
}
@keyframes fadeInModal {
  from {
    transform: scale(0.93);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(60, 60, 90, 0.1),
    0 1.5px 6px 1px rgba(108, 99, 255, 0.1) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.21s, box-shadow 0.23s, transform 0.13s;
  z-index: 10;
  font-size: 2.15rem;
}
.modal-close-btn:hover,
.modal-close-btn:focus {
  background: linear-gradient(120deg, #6c63ff 30%, #ffce00 130%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.16);
  outline: none;
  transform: scale(1.1);
}
.modal-close-btn span {
  display: block;
  color: #6c63ff;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  transition: color 0.13s;
}
.modal-close-btn:hover span,
.modal-close-btn:focus span {
  color: #fff;
}
#modalImage {
  max-width: 78vw;
  max-height: 48vh;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  object-fit: cover;
  box-shadow: 0 6px 26px rgba(44, 63, 221, 0.11);
  z-index: 2;
}

.modal-index {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.68);
  color: #fff;
  padding: 0.28em 1em;
  border-radius: 14px;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  z-index: 20;
  user-select: none;
}

@media (max-width: 700px) {
  .modal-index {
    top: 12px;
    font-size: 0.98rem;
    padding: 0.18em 0.88em;
  }
}

.modal-thumbnails {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.modal-thumbnails img {
  width: 75px;
  height: 55px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  object-fit: cover;
  transition: border 0.21s, transform 0.13s;
  background: #e5e5f7;
  box-shadow: 0 2px 7px rgba(44, 63, 221, 0.1);
}
.modal-thumbnails img.active {
  border: 2.5px solid #dab341;
  transform: scale(1.07);
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  padding: 4rem 2rem;
  background: var(--secondary);
  text-align: center;
}
.testimonials-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: "Poppins", serif;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 7px 26px rgba(44, 63, 221, 0.09);
  padding: 1.7rem 2rem;
  max-width: 340px;
  text-align: left;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 13px 48px rgba(108, 99, 255, 0.14);
  transform: scale(1.025);
}
.testimonial-card p {
  margin-bottom: 1.05rem;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: var(--primary);
  font-style: normal;
  font-weight: 500;
  font-size: 1.03rem;
}

/* ========== About Section ========== */
.about-section {
  padding: 3.5rem 2rem;
  background: linear-gradient(90deg, var(--primary) 60%, var(--gold));
  color: var(--white);
  text-align: center;
}
.about-content {
  max-width: 700px;
  margin: 0 auto;
}
.about-section h2 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.about-section p {
  font-size: 1.13rem;
  line-height: 1.8;
}

/* ========== Location Section ========== */
.location-section {
  padding: 4rem 2.5rem;
  background: linear-gradient(135deg, #f3f4ff 0%, #ffffff 60%);
}

.location-card {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 2.8rem;
  box-shadow: 0 26px 60px rgba(120, 110, 255, 0.18);
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.location-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2d2a5c;
}

.location-intro p {
  margin: 0;
  line-height: 1.7;
  color: #4c4a6a;
  font-size: 1.05rem;
}

.location-intro p + p {
  margin-top: 1rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6c63ff;
  background: rgba(108, 99, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(32, 40, 120, 0.18);
}

.map-container iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .location-card {
    padding: 2.2rem;
  }

  .location-intro h2 {
    font-size: 1.7rem;
  }
}

/* ========== Footer with Contact ========== */
footer {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 55%),
    linear-gradient(135deg, #1f1b5c 0%, #6c63ff 55%, #a996ff 100%);
  color: var(--white);
  padding: 4.5rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1120px;
  margin: 0 auto 3rem;
  align-items: flex-start;
}
.footer-brand h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}
.footer-socials a,
.footer-socials a:visited,
.footer-socials a:focus,
.footer-socials a:hover,
.footer-socials a:active {
  text-decoration: none !important;
}
.social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(60, 60, 90, 0.07);
  font-size: 1.65rem;
  transition: background 0.2s, transform 0.18s, box-shadow 0.19s, color 0.22s;
  color: #555;
  outline: none;
}
.social-item:focus {
  box-shadow: 0 0 0 2px #dab341;
}
.social-item .fa-instagram {
  color: #e1306c;
}
.social-item .fa-facebook {
  color: #1877f3;
}
.social-item .fa-linkedin {
  color: #1da1f2;
}
.social-item .fa-youtube {
  color: #e41d0b;
}
.social-item .fa-x-twitter {
  color: #2d3436;
}
.social-item:hover,
.social-item:focus {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
}
.social-item i {
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.95rem;
}
.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}
.footer-links li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links li a:hover {
  color: var(--accent);
}
.footer-links i {
  font-size: 1.1rem;
  color: var(--accent);
}
.footer-contact {
  background: rgba(16, 12, 50, 0.35);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(15, 15, 55, 0.25);
  backdrop-filter: blur(6px);
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}
.footer-form input,
.footer-form textarea {
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form input:hover,
.footer-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(218, 179, 65, 0.35);
  background: rgba(255, 255, 255, 0.18);
}
.footer-form textarea {
  resize: vertical;
  min-height: 140px;
}
.footer-form button {
  align-self: flex-start;
  background: linear-gradient(120deg, #ffce00, #ffdf6c, #ffeaa5);
  color: #312d63;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(255, 206, 0, 0.28);
}
.footer-form button:hover,
.footer-form button:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 206, 0, 0.34);
  outline: none;
}
#formMessage {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
#formMessage.hidden {
  display: none;
}
#formMessage.visible {
  display: block;
}
.hidden {
  display: none;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
}
.footer-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-copy {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.74);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .testimonial-cards {
    flex-direction: column;
    gap: 1.1rem;
  }
  .navbar {
    padding: 0.9rem 1.1rem;
  }
  .modal-content {
    padding: 1rem;
  }
  #modalImage {
    max-width: 97vw;
    max-height: 32vh;
  }
  .modal-thumbnails img {
    width: 50px;
    height: 34px;
  }
  .modal-close-btn {
    top: 8px;
    right: 8px;
    font-size: 1.55rem;
    width: 36px;
    height: 36px;
  }
  .modal-close-btn span {
    font-size: 1.7rem;
  }
  .about-section {
    padding: 2.3rem 0.8rem;
  }
  footer {
    padding: 3.5rem 1.5rem 1.7rem;
  }
  .footer-contact {
    padding: 1.4rem;
  }
  .footer-brand p {
    max-width: none;
  }
}
