/* =============================
   GLOBAL
============================= */
:root {
  --bg: #f5f9ff;
  --bg2: #eef4ff;
  --card: #ffffff;
  --card2: #f3f7ff;
  --fg: #0f172a;
  --muted: #64748b;

  /* blue system (replacing green) */
  --herb: #2563eb;
  --herb2: #3b82f6;

  --border: rgba(15,23,42,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

.section {
  padding: 60px 24px;
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--herb);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================
   HERO
============================= */

.hero {
  padding: 80px 20px 0;
  text-align: center;
  background: linear-gradient(145deg, #eef4ff, #f5f9ff 60%);
  position: relative;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
}

.hero-content p {
  opacity: .8;
  margin-top: 8px;
}

.hero-wave {
  display: block;
  margin-top: 40px;
}

/* =============================
   INFO CARDS (PRO SECTION)
============================= */

.pro-info-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .pro-info-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.left-stack {
  display: grid;
  gap: 22px;
}

.pro-card {
  padding: 26px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 34px rgba(37,99,235,0.15);
  backdrop-filter: blur(6px);
}

.pro-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--herb);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CONTACT ROWS */

.c-row {
  display: flex;
  gap: 14px;
  padding: 14px;
  text-decoration: none;
  color: var(--fg);
  background: var(--card2);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: .2s;
  align-items: center;
}

.c-row:hover {
  background: #eaf1ff;
}

.c-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.c-label {
  font-size: 12px;
  opacity: .7;
}

.c-value {
  font-size: 15px;
  font-weight: 600;
}

/* ADDRESS */

.addr-text {
  opacity: .8;
}

.addr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  margin-top: 16px;
  font-weight: 700;
  transition: .2s;
}

.addr-btn:hover {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

/* HOURS */

.open-badge {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 15px;
}

.hours-btn {
  width: 100%;
  padding: 12px;
  background: #eef4ff;
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.hours-list {
  margin-top: 16px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.hours-list ul {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--muted);
}

/* =============================
   MAP SECTION
============================= */

.map-box {
  background: var(--card);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(37,99,235,.18);
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

@media (min-width: 950px) {
  .map-box iframe {
    height: 420px;
  }
}

/* =============================
   FORM SECTION
============================= */

.form-card {
  background: var(--card);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(37,99,235,.2);
}

.form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--herb);
  margin-bottom: 18px;
}

.field {
  position: relative;
  margin-bottom: 26px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fbff;
  color: var(--fg);
  font-size: 15px;
  transition: .2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--herb);
  box-shadow: 0 0 0 2px rgba(59,130,246,0.25);
}

.field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--muted);
  transition: 0.25s;
  pointer-events: none;
}

.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field input:focus + label,
.field textarea:focus + label {
  top: -10px;
  left: 10px;
  padding: 0 6px;
  font-size: 12px;
  background: var(--card);
  color: var(--herb);
}

.btn-send {
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  color: white;
  padding: 14px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  transition: .2s;
}

.btn-send:hover {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

.form-status {
  margin-top: 16px;
  font-weight: 600;
}

/* =============================
   STICKY BOTTOM MOBILE BAR
============================= */

.sticky-bar {
  display: none;
}

@media (max-width: 750px) {
  .sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 900;
  }

  .sticky-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    color: white;
    font-weight: 700;
    text-decoration: none;
  }

  .call {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
  }

  .wa {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  }
}

/* =============================
   ANIMATIONS
============================= */

.anim {
  opacity: 0;
  transform: translateY(25px);
  transition: .7s ease;
}

.anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   CUSTOM SCROLLBAR — BLUE
================================ */

* {
  scrollbar-width: thin;
  scrollbar-color: #60a5fa #eef4ff;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #eef4ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb, #60a5fa);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1d4ed8, #3b82f6);
}

::-webkit-scrollbar-corner {
  background: #eef4ff;
}

/* ------------------------------
   BEAUTIFUL HEADER STYLING
------------------------------ */

.hw-header {
  width: 100%;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.hw-header-inner {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.hw-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hw-logo-link:hover {
  opacity: 0.8;
}

.hw-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hw-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
}

@media (max-width: 480px) {
  .hw-logo-text {
    font-size: 1.1rem;
  }
  .hw-logo-img {
    width: 36px;
    height: 36px;
  }
}
