:root {
  --teal: rgb(16, 187, 213);
  --teal-soft: rgba(16, 187, 213, 0.08);
  --teal-medium: rgba(16, 187, 213, 0.15);
  --purple: rgb(125, 79, 126);
  --purple-soft: rgba(125, 79, 126, 0.08);
  --purple-medium: rgba(125, 79, 126, 0.15);
  --white: #fff;
  --ink: #1a1a1f;
  --muted: #6b6b76;
  --line: rgba(125, 79, 126, 0.12);
  --shadow-sm: 0 4px 20px rgba(125, 79, 126, 0.06);
  --shadow-md: 0 12px 40px rgba(125, 79, 126, 0.10);
  --shadow-lg: 0 24px 60px rgba(125, 79, 126, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- HERO ---------- */
.hero-contact {
  position: relative;
  padding: 60px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at top left, var(--teal-soft) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, var(--purple-soft) 0%, transparent 50%),
    var(--white);
  overflow: hidden;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal-medium) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

/* .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.breadcrumb .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%; 
} */

.hero-contact h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-contact h1 span {
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-contact p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto!important;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

/* ---------- MAIN GRID ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--ink);
}

/* ---------- CONTACT METHODS ---------- */
.contact-list { display: flex; flex-direction: column; gap: 8px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-item:hover {
  background: linear-gradient(135deg, var(--teal-soft), var(--purple-soft));
  border-color: var(--line);
  transform: translateX(4px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--white);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--teal);
  transform: rotate(-5deg) scale(1.05);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-info { display: flex; flex-direction: column; gap: 2px; }

.contact-info .label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-info .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- HOURS ---------- */
.hours-list { display: flex; flex-direction: column; gap: 2px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}

.hours-row:last-child { border-bottom: none; }
.hours-row:hover { padding-left: 8px; }

.hours-row.today {
  background: linear-gradient(90deg, var(--teal-soft), transparent);
  border-radius: 12px;
  padding: 16px;
  border-bottom: 1px solid transparent;
  margin: 4px 0;
}

.hours-row.closed .time {
  color: var(--purple);
  font-style: italic;
}

.day {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.day .indicator {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--teal-medium);
  animation: pulse 2s infinite;
}

.hours-row:not(.today) .indicator { display: none; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--teal-medium); }
  50% { box-shadow: 0 0 0 8px var(--teal-soft); }
}

.time {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.hours-row.today .day,
.hours-row.today .time { color: var(--purple); font-weight: 600; }

/* ---------- ADDRESS ---------- */
.address-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--purple) 0%, rgb(95, 60, 96) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 48px;
}

.address-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--teal-medium) 0%, transparent 60%);
  border-radius: 50%;
}

.address-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.address-text { flex: 1; min-width: 280px; }

.address-card .card-label { color: var(--teal); }
.address-card .card-title { color: var(--white); margin-bottom: 8px; }

.address-card .address {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.6;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--white);
  color: var(--purple);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.directions-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 187, 213, 0.4);
}

.directions-btn svg { width: 18px; height: 18px; }

/* ---------- MAP ---------- */
.map-section { margin-top: 32px; }

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  height: 480px;
  position: relative;
}

.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- FOOTER NOTE ---------- */
.footer-note {
  text-align: center;
  padding: 60px 24px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 60px;
}

.footer-note span { color: var(--purple); font-weight: 600; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.card:nth-child(1) { animation-delay: 0.4s; }
.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 0.6s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-contact { padding: 80px 20px 60px; }
  .grid { grid-template-columns: 1fr; gap: 20px; }
  .card { padding: 32px 24px; }
  .address-card { padding: 36px 24px; }
  .address-content { flex-direction: column; align-items: flex-start; }
  .map-wrapper { height: 380px; }
}

@media (max-width: 480px) {
  .hero-contact { padding: 60px 20px 50px; }
  .card-title { font-size: 22px; margin-bottom: 24px; }
  .contact-item { padding: 14px; gap: 16px; }
  .contact-icon { width: 44px; height: 44px; border-radius: 12px; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-info .value { font-size: 14px; }
  .address-card .address { font-size: 16px; }
  .map-wrapper { height: 320px; border-radius: 16px; }
}
