:root {
  --primary: #0f172a;
  --primary-dark: #1e293b;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --gray: #64748b;
  --white: #fff;
  --surface: #f8fafc;
}

/* --- CSS RESET & BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #111827;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
}

/* Layout */
header,
section,
footer {
  width: 100%;
}
.hero {
  background: #fff !important;
  text-align: center;
  padding: 4rem 1.5rem 3rem 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  line-height: 1.12;
}
.hero h1 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  /* rest of your h1 styles */
}

.hero-subhead {
  font-size: 1.12rem;
  color: #374151;
  margin-bottom: 2.2rem;
  max-width: 530px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 1rem 2.3rem;
  font-size: 1.07rem;
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.17s;
  box-shadow: 0 4px 28px rgba(37,99,235,0.04);
  outline: none;
}
.btn.primary {
  background: #2563eb;
  color: #fff;
}
.btn.primary:focus, .btn.primary:hover {
  background: #1e40af;
}
.btn.secondary {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.btn.secondary:focus, .btn.secondary:hover {
  background: #2563eb;
  color: #fff;
}
.btn.tertiary {
  background: #e0f2fe;
  color: #0f172a;
  border: 2px solid #bae6fd;
}
.btn.tertiary:focus, .btn.tertiary:hover {
  background: #bae6fd;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
  color: #64748b;
  font-size: 0.97rem;
  margin-top: 1.2rem;
}
.hero-trust span {
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* Responsiveness ABOUT SECTION*/
@media (max-width: 650px) {
  .hero-inner { padding: 0; }
  .hero h1 { font-size: 1.25rem; }
  .hero-subhead { font-size: 0.99rem; }
  .hero-cta { flex-direction: column; gap: 0.8rem; }
}
/* --- Enhanced About Section --- */
.about {
  background: #fff;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 2px;
}
.about-inner {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 2rem;
}
.about h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.about-lead {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.trust-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  padding: 2rem 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(37,99,235,0.1);
}
.trust-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: #2563eb;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.2);
}
.trust-icon {
  font-size: 1.4em;
}

@keyframes trustFadeIn {
  0% { opacity: 0; transform: scale(0.98) translateY(18px);}
  100% { opacity: 1; transform: scale(1) translateY(0);}
}

@media (max-width: 700px) {
  .about-inner { padding: 0; }
  .trust-strip { flex-direction: column; gap: 0.7rem; padding: 1rem 0.4rem;}
  .trust-item { justify-content: center;}
  .about h2 { font-size: 1.25rem;}
}

/* Section header (reuse for all) */
.section-header h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.section-header p {
  color: var(--gray);
  font-size: 1.07rem;
  margin-bottom: 1.3rem;
}

/* Carousel hint */
.carousel-hint {
  text-align: right;
  color: var(--blue);
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
  padding-right: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
  display: block;
}
@media (min-width: 900px) {
  .carousel-hint { display: none; }
}

/* --- Enhanced Services Section --- */
.services-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 4rem 1rem 3rem 1rem;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.carousel-hint {
  text-align: right;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-right: 1.5rem;
  font-weight: 600;
  opacity: 0.8;
  display: block;
}
.services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--surface);
}
.service-card {
  flex: 0 0 85vw;
  max-width: 340px;
  min-width: 280px;
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.1);
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  padding: 2.5rem 1.8rem 2rem;
  scroll-snap-align: start;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.1);
  width: fit-content;
}
.service-card h3 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}
.service-card p {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 650px) {
  .services-carousel { gap: 1rem; }
  .service-card { padding: 1.4rem 0.7rem 1rem; }
  .service-card h3 { font-size: 0.97rem; }
}
@media (min-width: 900px) {
  .services-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .service-card {
    min-width: unset;
    max-width: unset;
    margin-bottom: 0;
  }
}

/* Nav, hero, etc. will be styled in detail next per section */

/* --- Enhanced Quote Section --- */
.quote-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem 1rem 3rem 1rem;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgb(37,99,235)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" opacity="0.1"/></svg>');
  opacity: 0.3;
}
.quote-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-section h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}
.quote-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 0 0 20px rgba(37,99,235,0.3);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 32px rgba(37,99,235,0.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}

/* --- Enhanced Why Choose Us Section --- */
.why-choose-us {
  background: #fff;
  padding: 4rem 1rem 3rem 1rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.why-choose-us h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.why-card {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.1);
  padding: 2.5rem 1.8rem 2rem;
  text-align: left;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
}
.why-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #2563eb;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.1);
  width: fit-content;
}
.why-title-small {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}
.why-card p {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-features {
    flex-direction: column;
    gap: 1.1rem;
    align-items: stretch;
  }
  .why-card {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
}

/* --- Enhanced Contact Section --- */
.contact-section {
  background: #fff;
  padding: 4rem 1rem 3rem 1rem;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-details {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.1);
  padding: 2.5rem 2rem;
}
.contact-details h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-label {
  color: #64748b;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}
.contact-link:hover {
  color: #2563eb;
}
.contact-form-block {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.1);
  padding: 2.5rem 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form .form-group label {
  display: block;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border: 2px solid rgba(37,99,235,0.1);
  background: #fff;
  color: #111827;
  transition: all 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 20px rgba(37,99,235,0.1);
}
.contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-submit {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,99,235,0.3);
}
.contact-form .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}

/* Responsive */
@media (min-width: 900px) {
  .contact-container {
    flex-direction: row;
    gap: 2.5rem;
  }
  .contact-details,
  .contact-form-block {
    flex: 1 1 0;
    min-width: 350px;
    max-width: 520px;
  }
}
@media (max-width: 900px) {
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .contact-details,
  .contact-form-block {
    padding: 1.3rem 0.7rem 0.9rem;
  }
  .contact-section {
    padding: 2.1rem 0.3rem 1.3rem 0.3rem;
  }
}

/* --- Enhanced Gallery Section --- */
.gallery-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 4rem 1rem 3rem 1rem;
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gallery-section h2 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.gallery-lead {
  color: #64748b;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-img-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.1);
  padding: 0.8rem;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}
.gallery-img-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.gallery-img-wrap:hover .gallery-img {
  transform: scale(1.05);
}
@media (min-width: 900px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .gallery-img-wrap {
    max-width: unset;
    min-width: unset;
    padding: 0.8rem;
  }
}
@media (max-width: 700px) {
  .gallery-img-wrap { padding: 0.2rem; }
}

/* Gallery Lightbox Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(15, 23, 42, 0.87);
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.gallery-modal[style*="display: flex"] {
  display: flex !important;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 12px 42px rgba(37,99,235,0.13);
  border: 2.5px solid #fff;
  background: #fff;
  object-fit: contain;
  outline: none;
}
.gallery-modal-close {
  position: absolute;
  top: 26px;
  right: 38px;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 10001;
  background: rgba(15,23,42,0.1);
  border-radius: 50%;
  line-height: 1;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.gallery-modal-close:focus,
.gallery-modal-close:hover {
  background: #2563eb;
  color: #fff;
  outline: none;
}
@media (max-width: 700px) {
  .gallery-modal-close { top: 12px; right: 15px; font-size: 2rem; width: 40px; height: 40px;}
  .gallery-modal-img { max-width: 97vw; max-height: 65vh;}
}

/* --- Enhanced Footer --- */
.footer {
  width: 100%;
  text-align: center;
  padding: 3rem 0 2rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  box-shadow: 0 -8px 32px rgba(37,99,235,0.1);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 2px;
}

/* Floating Hamburger - always bottom left */
.floating-hamburger {
  position: fixed;
  left: 1.2rem;
  bottom: 2rem;
  z-index: 11000;
  width: 56px;
  height: 56px;
  border: none;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,99,235,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.13s;
  outline: none;
}
.floating-hamburger:focus,
.floating-hamburger:hover {
  background: #1e40af;
}
.hamburger-icon {
  width: 34px;
  height: 34px;
  display: block;
}

/* Overlay menu - hidden by default */
.floating-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(15,23,42,0.89);
  align-items: center;
  justify-content: center;
  animation: fadeInMenu 0.23s;
}
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}
.floating-menu.active {
  display: flex !important;
}
.floating-menu-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 42px rgba(37,99,235,0.19);
  padding: 2.3rem 2.1rem 2.5rem 2.1rem;
  min-width: 75vw;
  max-width: 360px;
  text-align: center;
  position: relative;
  animation: popInMenu 0.21s;
}
@keyframes popInMenu {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.floating-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}
.floating-menu ul li a {
  color: #0f172a;
  font-weight: 800;
  font-size: 1.19rem;
  text-decoration: none;
  border-radius: 9px;
  padding: 13px 0;
  width: 100%;
  display: block;
  transition: background 0.15s, color 0.13s;
  outline: none;
}
.floating-menu ul li a:focus,
.floating-menu ul li a:hover {
  background: #2563eb;
  color: #fff;
}
.mobile-nav-cta {
  background: #2563eb !important;
  color: #fff !important;
  border-radius: 10px;
  font-size: 1.13rem;
  font-weight: 800;
  padding: 13px 0;
  margin-top: 0.6rem;
  display: block;
  width: 100%;
}

/* Close button in menu */
.menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #2563eb;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  font-weight: 800;
  transition: color 0.15s;
}
.menu-close:focus,
.menu-close:hover {
  color: #1e40af;
  outline: none;
}

@media (max-width: 700px) {
  .floating-hamburger {
    width: 44px;
    height: 44px;
    left: 0.6rem;
    bottom: 1rem;
  }
  .hamburger-icon {
    width: 27px;
    height: 27px;
  }
  .floating-menu-inner {
    min-width: 92vw;
    max-width: 96vw;
    padding: 1.7rem 0.6rem 1.7rem 0.6rem;
  }
  .floating-menu ul li a,
  .mobile-nav-cta {
    font-size: 1.07rem;
    padding: 11px 0;
  }
}

/* Don't show hamburger on print */
@media print {
  .floating-hamburger,
  .floating-menu { display: none !important; }
}

/* Show hamburger only on mobile, hide on desktop */
@media (min-width: 700px) {
  .floating-hamburger {
    display: none !important;
  }
  .desktop-header {
    display: flex !important;
  }
}
@media (max-width: 699px) {
  .floating-hamburger {
    display: flex !important;
  }
  .desktop-header {
    display: none !important;
  }
}

/* --- Enhanced Desktop Header --- */
@media (min-width: 700px) {
  .desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    box-shadow: 0 4px 32px rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 3vw;
    height: 72px;
    border-bottom: 1px solid rgba(37,99,235,0.1);
    transition: all 0.3s ease;
  }
  .desktop-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(37,99,235,0.12);
  }
  .desktop-header .desktop-logo {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  .desktop-header .desktop-logo:hover {
    transform: scale(1.05);
  }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .desktop-nav a {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transition: left 0.3s ease;
    z-index: -1;
  }
  .desktop-nav a:hover::before {
    left: 0;
  }
  .desktop-nav a:hover {
    color: #fff;
    transform: translateY(-2px);
  }
  .desktop-nav-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 24px;
    margin-left: 1.5rem;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37,99,235,0.3);
    position: relative;
    overflow: hidden;
  }
  .desktop-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
    transition: left 0.3s ease;
    z-index: -1;
  }
  .desktop-nav-cta:hover::before {
    left: 0;
  }
  .desktop-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.4);
  }
  body {
    padding-top: 72px;
  }
}

/* --- Enhanced Hero Section --- */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  text-align: center;
  padding: 5rem 1.5rem 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgb(37,99,235)" stop-opacity="0.1"/><stop offset="100%" stop-color="rgb(37,99,235)" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
  opacity: 0.6;
  z-index: 0;
}
.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-subhead {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 100%);
  transition: left 0.6s ease;
}
.btn:hover::before {
  left: 100%;
}
.btn.primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.3);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}
.btn.secondary {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  box-shadow: 0 4px 20px rgba(37,99,235,0.1);
}
.btn.secondary:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.3);
}
.btn.tertiary {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0f172a;
  border: 2px solid rgba(37,99,235,0.2);
}
.btn.tertiary:hover {
  background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
  transform: translateY(-2px);
}
