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

body {
  font-family: 'Inter', sans-serif;
  background: #f4f7fb;
  color: #1f2937;
  line-height: 1.6;
}

/* Utilities */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 60px 0;
}

.alt-bg {
  background: #eef2ff;
}

.highlight {
  background: linear-gradient(to right, #e0e7ff, #f0f9ff);
}

/* HEADER */
.site-header {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.brand h1 {
  font-size: 24px;
  font-weight: 600;
}

.brand p {
  font-size: 14px;
  color: #dbeafe;
  margin-top: 6px;
}

.accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: #93c5fd;
  margin: 8px 0;
  border-radius: 2px;
}

.header-contact {
  text-align: right;
  font-size: 13px;
}

.header-contact strong {
  display: block;
  font-size: 15px;
  margin-top: 4px;
  color: #ffffff;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.small-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  max-width: 520px;
  margin: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Text */
h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #1e40af;
}

h3 {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
}

.text-block p {
  margin-bottom: 16px;
  color: #475569;
}

.muted {
  color: #64748b;
  margin-top: 12px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Visiting card */
.small-card img {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
}

/* Time */
.time {
  font-size: 26px;
  font-weight: 600;
  margin-top: 10px;
}

/* Map */
.map {
  margin: 30px 0;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.site-footer {
  background: #e5e7eb;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #475569;
}

/* CTA Buttons */
.cta {
  position: fixed;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.cta.call {
  right: 20px;
  background: #2563eb;
}

.cta.whatsapp {
  left: 20px;
  background: #16a34a;
}
