/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #334155;
  background-color: #f1f5f9;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Desktop only line breaks */
.desktop-only {
  display: inline;
}

@media (max-width: 640px) {
  .desktop-only {
    display: none;
  }
}

/* Site Header (Logo + Call Button, Excludes Nav Links) */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 32px;
  position: relative;
  z-index: 10;
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header Call Button */
.header-phone-btn {
  background-color: #0b2239;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(11, 34, 57, 0.15);
}

.header-phone-btn:hover {
  background-color: #133454;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(11, 34, 57, 0.25);
}

/* Hero Section with Scenic Background */
.hero-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-image: url('bg-landscape.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(240, 244, 248, 0.45) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Notice Card Container */
.notice-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  background: #fbfbf9;
  border-radius: 16px;
  padding: 44px 44px;
  box-shadow: 
    0 20px 45px rgba(11, 34, 57, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Card Header */
.card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-icon-badge {
  width: 52px;
  height: 52px;
  background-color: #0b2239;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
  user-select: none;
  box-shadow: 0 4px 10px rgba(11, 34, 57, 0.2);
}

.notice-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #0b2239;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.gold-divider {
  width: 50px;
  height: 3px;
  background-color: #c59b27;
  border-radius: 2px;
  margin-bottom: 22px;
}

.notice-subtitle {
  font-size: 17px;
  line-height: 1.45;
  color: #334155;
  font-weight: 500;
}

/* Section Divider Lines */
.section-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 32px 0;
}

/* Notice Card Sections */
.notice-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.section-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #c59b27;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.section-content {
  flex: 1;
}

.section-heading {
  font-size: 16px;
  font-weight: 700;
  color: #0b2239;
  margin-bottom: 6px;
}

.section-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

.section-text.no-margin {
  margin-bottom: 0;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0b2239;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 6px rgba(11, 34, 57, 0.15);
}

.btn-primary:hover {
  background-color: #133454;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(11, 34, 57, 0.25);
}

.btn-icon {
  flex-shrink: 0;
}

/* Site Footer */
.site-footer {
  background-color: #0b2239;
  color: #ffffff;
  padding: 44px 24px 24px 24px;
  margin-top: auto;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo-row {
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-text {
  flex: 1;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #c59b27;
  text-decoration: underline;
}

.footer-subtext {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.45;
}

.footer-subtext.mt-xs {
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-logo-img {
    height: 38px;
  }

  .footer-logo-img {
    height: 34px;
  }

  .header-phone-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero-container {
    padding: 32px 16px;
  }

  .notice-card {
    padding: 28px 20px;
    border-radius: 12px;
  }

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

  .notice-subtitle {
    font-size: 15px;
  }

  .notice-section {
    gap: 14px;
  }

  .section-icon-container {
    width: 40px;
    height: 40px;
  }

  .gold-icon {
    width: 20px;
    height: 20px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
