/* ====== START OF YOUR ORIGINAL FILE ====== */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: #15171b;
  color: #fff;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header & Nav */
.main-header {
  background: #111317;
  border-bottom: 3px solid #3eb4f6;
  padding: 1.4em 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo img {
  height: 56px;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.2em;
  margin: 0;
  padding: 0;
}
nav a {
  color: #b3bbc7;
  text-decoration: none;
  font-weight: 450;
  font-size: 1.3em;
  transition: color 0.15s;
  padding: 0.4em 0.6em;
  border-radius: 5px;
}
nav a.active,
nav a:hover {
  color: #3eb4f6;
  background: #23262c;
}
.cta-nav {
  background: #3eb4f6;
  color: #111317 !important;
  border-radius: 20px;
  padding: 0.5em 1.2em;
  margin-left: 0.7em;
  font-weight: 700;
  box-shadow: 0 1px 7px rgba(62,180,246,0.11);
  transition: background 0.15s, color 0.15s;
}
.cta-nav:hover {
  background: #fff;
  color: #3eb4f6 !important;
}

/* Hero Section */
.hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 4em 0 3em 0;
  position: relative;
  background: linear-gradient(120deg, rgba(20,22,26,0.78) 55%, rgba(16,18,23,0.60) 100%), url('hero.jpg') center center / cover no-repeat;
}
.hero-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-text h1 {
  font-size: 3em;
  font-weight: 700;
  margin: 0 0 0.5em 0;
  color: #fff;
  letter-spacing: -1px;
}
.hero-text .accent {
  color: #3eb4f6;
}
.hero-text p {
  font-size: 1.35em;
  color: #b3bbc7;
  margin-bottom: 1.4em;
  max-width: 500px;
}
.btn, .btn-lg {
  display: inline-block;
  background: #3eb4f6;
  color: #111317;
  padding: 0.6em 2.4em;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.07em;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(62,180,246,0.16);
  transition: background 0.15s, color 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover, .btn-lg:hover {
  background: #fff;
  color: #3eb4f6;
}

/* Service Sections (ENHANCED) */
.services-section {
  background: #191b21;
  padding: 3em 0;
}
.service-category {
  margin-bottom: 3em;
}
.service-category h2 {
  font-size: 1.5em;
  color: #3eb4f6;
  margin-bottom: 0.4em;
  margin-top: 0;
  font-weight: 700;
}
.service-category p {
  color: #b3bbc7;
  margin-bottom: 1.4em;
  font-size: 1.1em;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 0;
}

/* --- Service Card Enhancements --- */
.service-card {
  background: #23262c;
  border-radius: 16px;
  padding: 2.2em 1.5em 2em 1.5em;
  width: 300px;
  max-width: 95vw;
  box-shadow: 0 4px 16px rgba(62,180,246,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5em;
  position: relative;
  transition:
    transform 0.22s cubic-bezier(.4,2,.3,1),
    box-shadow 0.18s cubic-bezier(.4,2,.3,1),
    border 0.18s;
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(90deg, #3eb4f6 0%, #55ffe0 100%);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.service-card .service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.1em;
  display: block;
  color: #3eb4f6;
  transition: transform 0.16s, filter 0.12s;
}
.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  transform: scale(1.16) rotate(-6deg);
  filter: drop-shadow(0 0 8px #3eb4f6cc);
}

.service-card h3 {
  color: #3eb4f6;
  margin-top: 0;
  margin-bottom: 0.7em;
  font-size: 1.22em;
  font-weight: 700;
}
.service-card p {
  color: #b3bbc7;
  font-size: 1em;
  margin-bottom: 1.4em;
}

.service-card .service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(90deg, #ffdf40 65%, #ffb940 100%);
  color: #15171b;
  font-size: 0.84em;
  font-weight: bold;
  padding: 0.3em 0.9em;
  border-radius: 14px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(255,223,64,0.22);
  z-index: 2;
  pointer-events: none;
}

.service-card .service-card-btn {
  margin-top: auto;
  display: inline-block;
  background: linear-gradient(90deg, #3eb4f6 60%, #55ffe0 100%);
  color: #191b21;
  font-weight: 700;
  padding: 0.6em 1.7em;
  border-radius: 22px;
  font-size: 1.05em;
  border: none;
  box-shadow: 0 2px 8px rgba(62,180,246,0.10);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  text-decoration: none;
}
.service-card .service-card-btn:hover,
.service-card .service-card-btn:focus-visible {
  background: linear-gradient(90deg, #55ffe0 0%, #3eb4f6 100%);
  color: #23262c;
}
.service-card:hover,
.service-card:focus-visible {
  transform: scale(1.07) translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 32px rgba(62,180,246,0.18), 0 4px 16px rgba(62,180,246,0.11);
  border: 1.8px solid #3eb4f6;
  z-index: 3;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .service-card {
    width: 95%;
  }
  .service-card .service-icon {
    width: 36px;
    height: 36px;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #181a20;
  padding: 3em 0;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}
.testimonial-card {
  background: #23262c;
  border-radius: 12px;
  padding: 2em 1.5em;
  width: 320px;
  max-width: 95vw;
  box-shadow: 0 4px 16px rgba(62,180,246,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5em;
  transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.18s cubic-bezier(.4,2,.3,1);
  cursor: pointer;
}
.testimonial-card:hover,
.testimonial-card:focus-visible {
  transform: scale(1.055);
  box-shadow: 0 8px 32px rgba(62,180,246,0.15), 0 2px 12px rgba(62,180,246,0.10);
  z-index: 2;
}
.testimonial-card blockquote {
  margin: 0 0 0.5em 0;
  font-style: italic;
  color: #fff;
  font-size: 1.11em;
}
.testimonial-card cite {
  color: #3eb4f6;
  font-weight: 600;
  font-style: normal;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .testimonial-card {
    width: 95%;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background: #181a20;
  padding: 3em 0;
  text-align: center;
}
.why-choose-us h2 {
  font-size: 2em;
  color: #3eb4f6;
  margin-bottom: 2em;
  font-weight: 700;
}
.why-features {
  display: flex;
  justify-content: center;
  gap: 2.5em;
  flex-wrap: wrap;
}
.why-feature {
  background: #23262c;
  border-radius: 12px;
  padding: 2em 1.5em;
  width: 270px;
  max-width: 90vw;
  box-shadow: 0 4px 16px rgba(62,180,246,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5em;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.18s cubic-bezier(.4,2,.3,1);
}
.why-feature:hover,
.why-feature:focus-visible {
  transform: scale(1.055);
  box-shadow: 0 8px 32px rgba(62,180,246,0.15), 0 2px 12px rgba(62,180,246,0.10);
  z-index: 2;
}
.why-icon {
  margin-bottom: 0.7em;
  display: block;
}
.why-feature h3 {
  color: #fff;
  margin-top: 0.3em;
  margin-bottom: 0.7em;
  font-size: 1.25em;
  font-weight: 700;
}
.why-feature p {
  color: #b3bbc7;
  font-size: 1em;
}
.why-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  stroke: #b3bbc7;
  fill: none;
}
@media (max-width: 900px) {
  .why-features {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .why-feature {
    width: 95%;
  }
}

/* Gallery Section */
.gallery-section {
  background: #191b21;
  padding: 3em 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 1.7em;
}
.gallery-header h2 {
  font-size: 2em;
  color: #3eb4f6;
  margin-bottom: 0.3em;
  font-weight: 700;
}
.gallery-header p {
  color: #b3bbc7;
  font-size: 1.13em;
  margin: 0 auto 0.3em auto;
  max-width: 540px;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 0;
}
.gallery-card {
  background: #23262c;
  border-radius: 12px;
  overflow: hidden;
  width: 320px;
  max-width: 95vw;
  box-shadow: 0 4px 16px rgba(62,180,246,0.07);
  transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.18s cubic-bezier(.4,2,.3,1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.gallery-card:hover,
.gallery-card:focus-visible {
  transform: scale(1.055);
  box-shadow: 0 8px 32px rgba(62,180,246,0.15), 0 2px 12px rgba(62,180,246,0.10);
  z-index: 2;
}
.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 1em 1.2em;
  color: #b3bbc7;
  font-size: 1.05em;
  background: transparent;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 900px) {
  .gallery-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
  }
  .gallery-card {
    width: 95%;
  }
  .gallery-card img {
    height: 180px;
  }
}

/* Contact Page */
.contact-section {
  background: #191b21;
  padding: 3em 0;
}
.contact-flex {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  flex-wrap: wrap;
}
.contact-form-wrapper {
  flex: 1 1 320px;
  min-width: 290px;
  max-width: 520px;
}
.contact-map-wrapper {
  flex: 1 1 320px;
  min-width: 290px;
  max-width: 480px;
}
.contact-map-wrapper iframe {
  width: 100%;
  min-height: 180px;
  border-radius: 12px;
  border: none;
  background: #23262c;
  margin-top: 0.5em;
}
.contact-section h2 {
  color: #3eb4f6;
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: 700;
}
.contact-form {
  background: #23262c;
  border-radius: 16px;
  padding: 2em 2em 1em 2em;
  box-shadow: 0 4px 20px rgba(62,180,246,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.contact-form label {
  font-weight: 600;
  color: #b3bbc7;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1em;
  padding: 0.7em;
  border-radius: 7px;
  border: 1px solid #282a34;
  background: #181a20;
  color: #fff;
  transition: border 0.12s;
  outline: none;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #3eb4f6;
}
.contact-form button[type="submit"] {
  margin-top: 0.5em;
  width: 100%;
}
.contact-address {
  margin-top: 1em;
  color: #b3bbc7;
  font-size: 1.11em;
  font-weight: 600;
}
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 2em;
  }
  .contact-form-wrapper, .contact-map-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-form {
    padding: 1em 0.4em 0.5em 0.4em;
  }
}

/* Footer */
.ccc-footer {
  background: #111317;
  color: #fff;
  padding-top: 1.0em;
  font-size: 1rem;
  border-top: 4px solid #3eb4f6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}
.footer-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5em;
  padding-bottom: 0.4em;
  min-height: 130px;
}
.footer-col {
  min-width: 160px;
  box-sizing: border-box;
}
.footer-col-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(1.2);
  margin-left: 0;
  margin-right: 0;
  display: block;
}
.footer-col-nav {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  font-size: 1em;
}
.footer-col-nav a {
  color: #b3bbc7;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: color 0.15s;
}
.footer-col-nav a.footer-cta {
  background: #3eb4f6;
  color: #111317;
  border-radius: 24px;
  padding: 0.4em 1.4em;
  margin-top: 0.5em;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(62,180,246,0.14);
  text-decoration: none;
}
.footer-col-nav a:hover,
.footer-col-nav a.footer-cta:hover {
  color: #3eb4f6;
  background: #fff;
}
.footer-col-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3em;
}
.footer-social {
  display: flex;
  gap: 0.8em;
  margin-bottom: 0.3em;
}
.footer-social svg {
  display: block;
  fill: #fff;
  transition: filter 0.15s, fill 0.15s;
}
.footer-social a:hover svg {
  filter: drop-shadow(0 0 6px #3eb4f6);
  fill: #3eb4f6;
}

/* ======== FIXED FOOTER HOURS & MAP LAYOUT BELOW ======== */
.footer-info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.2em;
  margin-top: 0.2em;
}
.footer-hours {
  min-width: 150px;
  max-width: 200px;
  font-size: 1em;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  color: #b3bbc7;
  text-align: left;
  letter-spacing: .01em;
}
.footer-map {
  margin-top: 0;
}
.footer-map iframe {
  width: 200px !important;
  height: 120px !important;
  border-radius: 10px;
  border: 0;
  max-width: 100%;
}
.footer-bottom {
  text-align: center;
  color: #b3bbc7;
  font-size: 0.97em;
  padding: 0.7em 0 0.4em 0;
  border-top: 1px solid #20232a;
  margin-top: 0.5em;
}
@media (max-width: 1100px) {
  .footer-logo-img {
    height: 64px;
  }
  .footer-map iframe {
    width: 170px !important;
    height: 100px !important;
  }
}
@media (max-width: 900px) {
  .container, .footer-container {
    padding: 0 1em;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    padding-bottom: 0.8em;
    gap: 0.7em;
  }
  .footer-col-logo {
    justify-content: center;
    width: 100%;
    margin-bottom: 0.4em;
  }
  .footer-col-info {
    align-items: center;
    text-align: center;
  }
  .footer-logo-img {
    height: 50px;
  }
  .footer-col-nav {
    font-size: 0.97em;
  }
  .footer-info-row {
    flex-direction: column;
    gap: 1.2em;
    align-items: flex-start;
  }
  .footer-hours, .footer-map {
    max-width: 100%;
    min-width: 0;
    text-align: left;
  }
}
@media (max-width: 700px) {
  .footer-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3em;
  }
  .footer-hours {
    text-align: left;
    max-width: 100%;
    min-width: 0;
  }
  .footer-map iframe {
    width: 100% !important;
    min-width: 120px;
    height: 80px !important;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 38px;
  }
  .hero {
    min-height: 220px;
    padding: 2em 0 2em 0;
  }
  .hero-text h1 {
    font-size: 1.2em;
  }
  .footer-logo-img {
    height: 35px;
  }
}

/* Utility */
.accent {
  color: #3eb4f6;
}

/* FAQ Accordion Styles - only for the FAQ section */
.faq-section {
  margin: 60px 0 20px 0;
  padding-top: 10px;
}
.faq-section .container {
  max-width: 700px;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #3eb4f6;
}
.faq-list {
  margin-top: 0.5em;
}
.faq-item {
  border-bottom: 1px solid #31343b;
  background: #23262c;
  border-radius: 0;
  margin-bottom: 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2em 0;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  color: #fff;
  transition: color 0.18s;
  border-radius: 0;
  position: relative;
}
.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.3em;
  color: #3eb4f6;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '–';
  transform: rotate(180deg);
}
.faq-question.active {
  color: #3eb4f6;
}
.faq-answer {
  display: none;
  padding: 0 0 1em 0;
  color: #b3bbc7;
  font-size: 1em;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px);}
  to { opacity: 1; transform: translateY(0);}
}

/* ====== END OF YOUR ORIGINAL FILE ====== */


/* ====== ENHANCEMENTS FOR SERVICES.HTML ====== */

/* Service Card Badges: Improved for Best for Pre-Sale and Most Popular */
.service-card .service-badge[aria-label="Best for Pre-Sale"] {
  background: linear-gradient(90deg, #1b7c5d 80%, #2dd4a7 100%);
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-card.popular .service-badge {
  background: linear-gradient(90deg, #e67e22 70%, #ffb940 100%);
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-card .service-badge {
  z-index: 2;
  font-weight: 700;
  text-transform: uppercase;
}

/* FAQ Accordion Modernization */
.faq-section {
  background: #f7faf7;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  margin-top: 3rem;
  padding: 2.5rem 1.2rem;
}
.faq-list {
  max-width: 600px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.35rem;
  border-radius: 8px;
  background: #23262c;
  border: 1px solid #31343b;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 1.1rem 1rem 1.1rem 1.5rem;
  font-size: 1.08rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
  position: relative;
  color: #15171b;
}
.faq-question.active, .faq-item.open .faq-question {
  background: #e5f6ed;
  color: #1b7c5d;
}
.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.3em;
  color: #1b7c5d;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '–';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f6fefb;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #15171b;
  display: block;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  margin-bottom: 0.5rem;
}

/* Mobile Responsive for Service Cards and FAQ */
@media (max-width: 800px) {
  .services-list { flex-direction: column; align-items: stretch; }
  .service-card { max-width: 100%; min-width: 0; }
  .faq-section { padding: 1.5rem 0.25rem; }
}

/* Responsive Google Maps in Footer and Contact */
.footer-map iframe,
.contact-map-wrapper iframe {
  width: 100% !important;
  min-width: 210px;
  border-radius: 12px;
  border: 0;
  max-width: 100%;
  height: 180px !important;
  margin-top: 0;
}

/* ====== END ENHANCEMENTS ====== */
/* --- Fix for white service cards --- */
.service-card {
  background: #23262c !important;
  color: #fff !important;
}
.service-card h3,
.service-card p,
.service-card .service-badge {
  color: #fff !important;
}
.service-card .service-badge[aria-label="Best for Pre-Sale"],
.service-card.popular .service-badge {
  color: #fff !important;
}
/* --- Fix for dark service cards and FAQ section --- */
.service-card {
  background: #23262c !important;
  color: #fff !important;
}
.service-card h3,
.service-card p,
.service-card .service-badge {
  color: #fff !important;
}

.faq-section {
  background: #181a20 !important;
  /* matches other dark backgrounds */
}

.faq-item {
  background: #23262c !important;
  border: 1px solid #31343b !important;
}

.faq-question {
  background: #23262c !important;
  color: #fff !important;
  border-radius: 8px !important;
}

.faq-question.active,
.faq-item.open .faq-question {
  background: #23262c !important;
  color: #3eb4f6 !important;
}
.faq-answer {
  background: #23262c !important;
  color: #b3bbc7 !important;
  border-radius: 0 0 8px 8px !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1em;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 700px) {
  .main-header {
    position: relative;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 18px;
  }
  nav {
    width: 100%;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #23262c;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 1em 1.5em;
    z-index: 1000;
    width: auto;
    min-width: 120px;
    text-align: right;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    margin: 0.7em 0;
    font-size: 1.08em;
  }
}
/* --- Alignment and Overflow Fixes for Why Choose Us & Gallery --- */

/* Prevent horizontal overflow on all devices */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Why Choose Us section: card alignment and responsiveness */
.why-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.why-feature {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  box-sizing: border-box;
  background: #23262c;
  border-radius: 10px;
  padding: 2em 1em;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .why-features {
    flex-direction: column;
    align-items: stretch;
    gap: 1em;
    padding: 0 0.5em;
  }
  .why-feature {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 1.5em 1em;
  }
}

/* Gallery section: prevent card overflow */
.gallery-card {
  box-sizing: border-box;
  max-width: 100vw;
  width: 320px;
}
@media (max-width: 900px) {
  .gallery-card {
    max-width: 98vw;
    width: 98vw;
  }
  .gallery-section .container {
    max-width: 100vw;
    padding: 0 0.5em;
    box-sizing: border-box;
  }
}
