
/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffef3;
  color: #edf2f7;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

/* ----- CONTAINER (fluid from 320px) ----- */
.bdc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ----- SECTION SPACING (responsive) ----- */
.bdc-section {
  padding-block: clamp(2.5rem, 8vh, 6rem);
}

/* ----- TYPOGRAPHY (scale perfect) ----- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 11vw, 3rem);
  background: linear-gradient(to right, #FFA163, #F1EDD2 53%, #036B67);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-align: center;
}

p {
  color: #d1d5db;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

/* ===== SECTION HEADER H2 (matches homepage .section-heading exactly) ===== */
.section-header h2 {
  font-size: clamp(16px, 2vw, 18px);
  color: #716f60;
  letter-spacing: 2.6px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Dark-bg sections: keep label readable */
.infra .section-header h2,
.contact-section .section-header h2 {
  color: #a89f8c;
}

/* ===== HERO (full height, always balanced) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-color: #0b1a1f;
  padding-block: clamp(3rem, 8vh, 5rem);
  margin-top: 60px;
}

/* backgrounds */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,161,99,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,161,99,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.gradient-move {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,161,99,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(3,107,103,0.25) 0%, transparent 50%);
  filter: blur(60px);
}

.circuit-svg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-left {
  animation: fadeUp 0.9s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  margin: 1.2rem 0 2.5rem;
  color: #cbd5e1;
  font-size: clamp(1rem, 3.2vw, 1.4rem);
  line-height: 1.6;
}

.btn-group {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  font-weight: 600;
  border: 1px solid;
  cursor: pointer;
  transition: 0.25s ease;
  background: transparent;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  white-space: nowrap;
}

.btn-primary {
  background: #FFA163;
  color: #0b1a1f;
  border-color: #fcd5a5;
  box-shadow: 0 8px 20px -8px #036B67;
}

.btn-secondary {
  border-color: #FFA163;
  color: #FFA163;
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 25px -10px black;
}

.hero-right {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.glass-card {
  background: rgba(10, 30, 35, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 1.8rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 40px -12px #00000080;
  transition: transform 0.1s ease;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px) rotateX(1deg) rotateY(1deg); }
}

.server-illu {
  width: 100%;
  aspect-ratio: 1.2/1;
  background: linear-gradient(145deg, #ffac6b, #d4cdb0, #036B67);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: #0a1e2a;
  border: 2px solid rgba(255,255,240,0.5);
  text-align: center;
}

.glass-card p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-top: 1rem;
}

/* ----- HERO RESPONSIVE (320–900) ----- */
@media screen and (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-right {
    order: -1;
    margin-bottom: 0.5rem;
  }
  .hero-left {
    text-align: center;
  }
  .hero-left p {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  .btn-group {
    justify-content: center;
  }
  .hero {
    min-height: 100vh;
    padding-block: 5rem 2rem;
  }
}

@media screen and (max-width: 480px) {
  .btn {
    white-space: normal;
    width: 100%;
    max-width: 280px;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .glass-card {
    padding: 1.2rem;
  }
  .hero {
    padding-block: 4rem 1.5rem;
  }
}

@media screen and (max-width: 360px) {
  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  .hero-sub {
    font-size: 0.9rem;
  }
}

/* ===== FEATURES (light background) ===== */
.features {
  background: #fffef3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-top: 2rem;
}

.feature-card {
  background: rgba(252, 250, 235, 0.75);
  border-radius: 1.8rem;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  border: 1px solid #d7d6cc;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255,161,99,0.25),
    rgba(241,237,210,0.25),
    rgba(3,107,103,0.25),
    rgba(255,161,99,0.25)
  );
  background-size: 300% 300%;
  animation: liquidFlow 10s ease infinite;
  pointer-events: none;
}
@keyframes liquidFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.feature-icon {
  width: 50px;
  margin-bottom: 1rem;
}

.feature-icon img {
  width: 100%;
  filter: invert(43%) sepia(94%) hue-rotate(347deg);
}

.feature-card h3 {
  color: #036B67;
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.feature-card p {
  color: #4a4a4a;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

/* features responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .feature-card {
    padding: 1.5rem;
    text-align: center;
  }
  .feature-icon {
    margin: 0 auto 1rem;
  }
}

/* ===== LIR SERVICES SECTION ===== */
.lir-services {
  background: #fffef3;
}

.lir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
  align-items: stretch;
}

.lir-card {
  background: rgba(252, 250, 235, 0.85);
  border-radius: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid #d7d6cc; /* important */
}
.lir-card::before {
  content: "";
  position: absolute;
  inset: 0; /* not -2px */
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    120deg,
    #FFA163,
    #F1EDD2,
    #036B67,
    #FFA163
  );
  background-size: 300% 300%;
  animation: gradientMove 6s linear infinite;

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.lir-card:hover::before {
  opacity: 1;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.lir-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  line-height: 1;
  filter: drop-shadow(2px 4px 6px rgba(255,161,99,0.3));
}

.lir-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #036B67;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lir-desc {
  color: #3a3a3a;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.lir-meta {
  margin-top: auto; /* this pushes it to bottom */
  font-size: 0.85rem;
  color: #5b5b4d;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-top: 1px dashed #ccc7b0;
  padding-top: 0.75rem;
  flex-wrap: wrap;
}

.lir-meta span {
  background: #eae6d3;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-weight: 500;
  color: #2d4f4b;
}

/* LIR responsive */
@media (max-width: 800px) {
  .lir-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .lir-card {
    padding: 1.5rem;
  }
  .lir-card h3 {
    font-size: 1.1rem;
  }
  .lir-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== PLANS ===== */
.plans {
  background: #fffef3;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.plan-card {
  background: #FCFAEB;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: 0.25s;
  border: 1px solid #d7d6cc;
}


.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f0b36a;
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
}

.badge.dark {
  background: #0b1f1a;
  color: white;
}

.plan-card h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.plan-desc {
  color: #555;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-card li {
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
  position: relative;
  color: #333;
  font-size: 0.9rem;
}

.plan-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d7863e;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  border-radius: 3rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
  position: relative;       /* ADD */
  overflow: hidden;         /* ADD */
}
.plan-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.0) 100%
  );
  transform: skewX(-25deg);
  transition: left 1.3s cubic-bezier(0.22, 1, 0.36, 1); /* slower + smooth */
}
.plan-btn:hover::before {
  left: 130%;
}

.plan-btn.primary {
  background: linear-gradient(90deg, #e19a55, #d7863e);
  color: #000;
}

.plan-btn.outline {
  border: 2px solid #0b1f1a;
  color: #0b1f1a;
  background: transparent;
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(90deg, #e6a15c, #d68840);
  padding-block: 2.5rem;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-flex h3 {
  font-size: clamp(1.6rem, 5vw, 2rem);
  color: #fff;
  max-width: 600px;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.8rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 160px;
  text-align: center;
  background: white;
  color: #1a1a1a;
}

.cta-btn.dark {
  background: #0b1f1a;
  color: white;
}

@media (max-width: 480px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
  .cta-btns {
    justify-content: center;
  }
}

/* ===== INFRA ===== */
.infra {
  background: #0e2329;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
}

.infra-item {
  text-align: center;
}

.infra-item .number {
  font-size: clamp(2.8rem, 10vw, 3.8rem);
  font-weight: 800;
  background: linear-gradient(to right, #FFA163, #F1EDD2, #036B67);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 600px) {
  .infra-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== FAQ ===== */
.faq {
  background: #fffef3;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}

.faq-item {
  background: #FCFAEB;
  border-radius: 1.5rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  border: 1px solid rgba(3,107,103,0.1);
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
}

.faq-item h4 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #036B67;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: #333;
  font-size: 0.9rem;
}

.faq-item.active .answer {
  max-height: 200px;
  margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CUSTOM SOLUTION SECTION ===== */
.custom-solution-section-wrapper{
  /* background: #0e2329; */
  padding-block: clamp(2.5rem, 8vh, 6rem);
}
.custom-solution-section {
  width: 100%;
  background: #fffef3;
  border-radius: 3rem;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  border: 1px solid #d7d6cc;
  transition: transform 0.2s;
  position: relative;
  isolation: isolate;
  margin: 10px 0;
}

.custom-solution-section::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(to right, #FFA163, #F1EDD2 53%, #036B67);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.custom-solution-section:hover::before {
  opacity: 1;
  animation: rotateBorder 4s linear infinite;
}

.custom-solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.solution-text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.solution-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #036B67;
}

.solution-headline span {
  background: linear-gradient(145deg, #FFA163, #036B67);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solution-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #3a3a3a;
  line-height: 1.6;
  border-left: 5px solid #FFA163;
  padding-left: 1.8rem;
  background: rgba(255,161,99,0.02);
  border-radius: 0 1rem 1rem 0;
}

.solution-description strong {
  color: #0b1a1f;
  font-weight: 600;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #FFA163;
  color: #0b1a1f;
  padding: 1rem 2.8rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.25s ease;
  width: fit-content;
  box-shadow: 0 8px 20px -8px #036B67;
  margin-top: 1rem;
}

.contact-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 30px -10px #036B67;
  background: #f89e5a;
}

.contact-btn i {
  font-style: normal;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.contact-btn:hover i {
  transform: translateX(6px);
}

.solution-visual {
  background: #FCFAEB;
  border-radius: 2.5rem;
  padding: 2rem;
  border: 1px solid #d7d6cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 30px -12px rgba(3,107,103,0.15);
  position: relative;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #2d4f4b;
  background: #dff0ea30;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  border: 1px solid #036B6730;
}

.dot {
  width: 10px;
  height: 10px;
  background: #3bb08b;
  border-radius: 50%;
  box-shadow: 0 0 8px #3bb08b;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
}

.visual-icon-stack {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.visual-icon-item {
  background: #fffef3;
  width: 70px;
  height: 70px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 1px solid #e0dfd0;
  box-shadow: 0 5px 0 #036B6715;
  color: #036B67;
}

.visual-icon-item:nth-child(2) {
  color: #FFA163;
}
.visual-icon-item:nth-child(4) {
  color: #b36b3a;
}

.visual-caption {
  font-size: 0.95rem;
  color: #5b5b4d;
  text-align: center;
  font-weight: 500;
  background: #eae6d3;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
}

.tag-pill {
  background: linear-gradient(90deg, #f7a36f, #ffcaa3);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.85rem;
  width: fit-content;
}

/* custom solution responsive */
@media (max-width: 768px) {
  .custom-solution-section {
    padding: 2.2rem 1.2rem;
    border-radius: 1.8rem;
    margin: 1.5rem 0;
  }

  .custom-solution-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-visual {
    order: -1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 1.8rem 1.2rem;
    border-radius: 1.8rem;
    box-shadow: 0 15px 25px -15px rgba(3,107,103,0.18);
  }

  .status-dot {
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
  }

  .visual-icon-stack {
    gap: 0.9rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
  }

  .visual-icon-item {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
    border-radius: 20px;
    flex-shrink: 0;
  }

  .visual-caption {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }

  .solution-text {
    align-items: center;
    text-align: center;
    gap: 1.4rem;
  }

  .solution-headline {
    font-size: 1.9rem;
  }

  .solution-description {
    border-left: none;
    border-top: 3px solid #FFA163;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.98rem;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: 50px;
  }

  .tag-pill {
    margin: 0 auto;
  }
}

@media (max-width: 380px) {
  .solution-headline {
    font-size: 1.7rem;
  }

  .visual-icon-item {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .visual-icon-stack {
    gap: 0.6rem;
  }
}

/* ===== CONTACT SECTION (fully responsive) ===== */
.contact-section {
  background: #0b1a1f;
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 8vh, 5rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-info {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,161,99,0.2);
  border-radius: clamp(24px, 4vw, 32px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  height: fit-content;
}

.contact-info h3 {
  color: #FFA163;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin: clamp(1rem, 3vh, 1.5rem) 0;
  color: #F1EDD2;
  flex-wrap: wrap;
}

.contact-icon {
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  background: rgba(255,161,99,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  border: 1px solid rgba(255,161,99,0.3);
  flex-shrink: 0;
}

.contact-detail > div > div:first-child {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: #FFA163;
}

.contact-detail > div > div:last-child {
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  font-weight: 600;
  word-break: break-word;
}

.contact-form {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: clamp(24px, 4vw, 32px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-row {
  margin-bottom: clamp(1rem, 3vh, 1.5rem);
}

.form-label {
  display: block;
  color: #F1EDD2;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1rem, 3vw, 1.2rem);
  background: rgba(10,30,35,0.8);
  border: 1px solid rgba(255,161,99,0.3);
  border-radius: clamp(12px, 3vw, 16px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 3vw, 1rem);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FFA163;
  box-shadow: 0 0 0 3px rgba(255,161,99,0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFA163' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: clamp(100px, 20vh, 120px);
  resize: vertical;
}

.submit-btn {
  background: #FFA163;
  color: #0b1a1f;
  border: none;
  padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 60px;
  font-weight: 600;
  font-size: clamp(0.9rem, 3vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  border: 1px solid #fcd5a5;
  white-space: normal;
}

.submit-btn:hover {
  background: #ffb07c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,161,99,0.3);
}

.badge-new {
  display: inline-block;
  background: #FFA163;
  color: #0b1a1f;
  padding: 0.3rem 1rem;
  border-radius: 60px;
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  font-weight: 600;
  margin-left: 0.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

.contact-info-badges {
  margin-top: clamp(1.5rem, 4vh, 2rem);
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.contact-info-badges span {
  background: rgba(255,161,99,0.2);
  padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
  border-radius: 60px;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  border: 1px solid rgba(255,161,99,0.3);
  white-space: nowrap;
}

.privacy-note {
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 0.5rem;
}

/* contact responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-header h2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .badge-new {
    margin-left: 0;
    margin-top: 0.5rem;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .contact-detail {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .contact-icon {
    margin-bottom: 0.25rem;
  }
  .contact-info-badges span {
    white-space: normal;
    width: 100%;
    text-align: center;
  }
  .form-select {
    background-position: right 0.8rem center;
  }
}

@media (max-width: 360px) {
  .bdc-container {
    padding-inline: 0.75rem;
  }
  .contact-info,
  .contact-form {
    padding: 1.25rem;
  }
  .submit-btn {
    padding: 0.8rem 1rem;
  }
}



/* ===== LOCATION SECTIONS ===== */
.location-section {
    background: #fffef3;
    padding-block: clamp(2.5rem, 8vh, 6rem);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    margin-top: 2rem;
}

.location-grid.reverse {
    direction: ltr;
}

.location-grid.reverse .location-map {
    order: -1;
}

.location-info {
    background: var(--card-bg);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid #d7d6cc;
    box-shadow: 0 20px 30px -12px rgba(3,107,103,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -15px rgba(3,107,103,0.15);
}

.location-badge {
    display: inline-block;
    background: #FFA16320;
    color: #242929;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid #FFA16340;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-info h3 {
    color: #242929;
    font-size: var(--font-size-lg);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-address {
    background: rgba(255,161,99,0.05);
    padding: 1.5rem;
    border-radius: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary);
    transition: background 0.3s ease;
}

.location-address:hover {
    background: rgba(255,161,99,0.08);
}

.location-address p {
    color: #242929;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.location-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 0.8rem;
    transition: background 0.2s ease;
}

.detail-item:hover {
    background: rgba(255,161,99,0.05);
}

.detail-icon {
    font-size: 1.5rem;
    min-width: 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.detail-item strong {
    color: #242929;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.detail-item p {
    color: #242929;
    margin: 0;
    font-size: 1rem;
}

.location-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.location-highlights span {
    background: #eae6d3;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #2d4f4b;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.location-highlights span:hover {
    background: #FFA16330;
    transform: scale(1.05);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #242929;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.map-link:hover {
    color: var(--secondary);
    background: rgba(255,161,99,0.1);
    border-color: #FFA16340;
    transform: translateX(5px);
}

.location-map {
    height: 100%;
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 25px 35px -12px rgba(255,161,99,0.3);
    transform: scale(1.02);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-caption {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    :root {
        --space-global-px: 32px;
        --space-section-py: 80px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-right {
        order: -1;
        margin-bottom: 0.5rem;
    }
    .hero-left {
        text-align: center;
    }
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    .btn-group {
        justify-content: center;
    }
    .hero {
        min-height: auto;
        padding-block: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-global-px: 24px;
        --space-section-py: 64px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-grid.reverse .location-map {
        order: -1;
    }

    .quick-grid,
    .access-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info {
        padding: 1.8rem;
    }

    .map-container {
        height: 350px;
    }

    .location-map {
        min-height: 350px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
}

@media (max-width: 480px) {
    :root {
        --space-global-px: 16px;
        --space-section-py: 48px;
    }

    .btn {
        white-space: normal;
        width: 100%;
        max-width: 280px;
    }
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    .glass-card {
        padding: 1.2rem;
    }

    .quick-card,
    .access-card,
    .hours-card {
        padding: 1.5rem;
    }

    .quick-icon {
        font-size: 2rem;
    }

    .location-info {
        padding: 1.2rem;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .location-address {
        padding: 1rem;
    }

    .location-address p {
        font-size: 1rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .detail-icon {
        margin-bottom: 0.25rem;
    }

    .location-highlights span {
        width: 100%;
        text-align: center;
    }

    .map-container {
        height: 250px;
        border-radius: 1.2rem;
    }

    .location-map {
        min-height: 250px;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .contact-info-badges span {
        white-space: normal;
        width: 100%;
        text-align: center;
    }

    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .faq-item {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .bdc-container {
        padding-inline: 0.75rem;
    }

    .location-info,
    .contact-info,
    .contact-form {
        padding: 1rem;
    }

    .map-container {
        height: 200px;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
}
.location-grid.reverse {
    direction: ltr;
}

.location-grid.reverse .location-map {
    order: -1;
}
