:root {
  --brand-orange: #e6770b;
  --brand-blue: #07aff6;
  --brand-navy: #0f172a;
  --text-muted: #475569;
}

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  color: var(--brand-navy);
}

/* HEADER */
.contact-header {
  padding: 120px 20px 60px;
  text-align: center;
}

.contact-header h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.contact-header span {
  color: var(--brand-orange);
}

/* SECTION */
.contact-section {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 120px;
}

/* INFO CARDS */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.info-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.18),
    0 0 0 2px rgba(230,119,11,0.25);
}

.info-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.4s ease;
}

.info-card:hover .info-icon {
  transform: scale(1.15) rotate(6deg);
}

.info-icon.blue {
  background: rgba(7,175,246,0.18);
  color: var(--brand-blue);
}

.info-icon.orange {
  background: rgba(230,119,11,0.18);
  color: var(--brand-orange);
}

.info-card h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.info-card p,
.static-text {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.info-card a {
  margin-top: 6px;
  display: inline-block;
  font-size: 14px;
  color: var(--brand-blue);
  text-decoration: none;
}

/* FORM TITLE */
.contact-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* FORM */
.contact-form {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 60px;
  border-radius: 32px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.12),
    0 0 0 2px rgba(230,119,11,0.15);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(7,175,246,0.25);
}

.contact-form textarea {
  margin-top: 24px;
  resize: none;
}

/* BUTTON */
.form-action {
  text-align: center;
  margin-top: 40px;
}

.form-action button {
  background: linear-gradient(135deg, var(--brand-blue), #38bdf8);
  color: #ffffff;
  border: none;
  padding: 16px 46px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.form-action button:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 22px 45px rgba(7,175,246,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 36px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-form {
    padding: 40px 28px;
  }
}
/* MAP SECTION */
.contact-map {
  margin-top: 100px;
  width: 100%;
  height: 520px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map {
  border-top: 1px solid rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
  .contact-map {
    height: 380px;
  }
}
/* =====================================================
   MOBILE NAVBAR – FLOATING CARD
   ===================================================== */
@media (max-width: 767px) {

  /* Main collapse container */
  #navbarNav {
    position: absolute;
    top: 72px;
    right: 16px;
    width: 280px;
    background: transparent;
    z-index: 999;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  #navbarNav.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Card holding links */
  .nav-items {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    gap: 6px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
  }

  /* Nav links & dropdown button */
  .nav-items .nav-link,
  .nav-items .dropdown > button {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    background: #ffffff;
  }

  /* =====================================================
      MOBILE SERVICES FIX (MOST IMPORTANT PART)
     ===================================================== */

  /* Stop dropdown from floating */
  .nav-items .dropdown {
    position: static;
  }

  /* Make dropdown part of layout flow */
  .nav-items .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 8px;
    padding: 12px !important;
    box-shadow: none;
    border-radius: 16px;
    background: #ffffff;
  }

  /* Force single-column layout */
  .dropdown-menu .row {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
  }

  /* Each service item full width */
  .dropdown-menu .col-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Service links */
  .dropdown-menu .dropdown-item {
    width: 100%;
    padding: 14px 16px !important;
    border-radius: 14px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #f1f5f9;
  }

  .dropdown-menu .dropdown-item i {
    width: 20px;
    height: 20px;
  }

  .dropdown-menu .dropdown-item span {
    font-size: 15px;
    white-space: nowrap;
  }

  /* =====================================================
     CONTACT BUTTON – ALWAYS VISIBLE
     ===================================================== */
  #navbarNav > a.btn-primary {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }
}

/* =====================================================
   SMALL MOBILE POLISH (OPTIONAL)
   ===================================================== */
@media (max-width: 576px) {
  .dropdown-menu {
    padding: 10px !important;
  }
}
.contact-map-wrapper {
    background: #ffffff;
}

.service-area {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.service-area h3 {
    letter-spacing: -0.02em;
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}
.service-area-wrapper {
    padding: 28px 0 36px;   /* space above & below text */
}

.service-area-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 auto;
    line-height: 1.4;

    white-space: nowrap;        /* FORCE single line */
    max-width: 100%;
}
@media (max-width: 768px) {
    .service-area-text {
        white-space: normal;   /* allow wrap on mobile */
        font-size: 1rem;
        padding: 0 16px;
    }
}
