:root {
  --primary-color: #009ee3;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f4f7f9;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 84, 159, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Header */
.main-header {
  padding: 30px 0;
  text-align: center;
}

.logo-img {
  height: 40px;
  vertical-align: middle;
}

.sub-brand {
  font-size: 26px;
  font-weight: 300;
  color: #666;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ccc;
  vertical-align: middle;
}

/* Content */
.content-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary-color);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid & Cards */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 84, 159, 0.12);
  border-bottom: 4px solid var(--primary-color);
}

.contact-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-card p {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.contact-card a:hover {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.times,
.address {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  line-height: 1.5;
}

/* Icons */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(0, 84, 159, 0.08);
  color: var(--primary-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.icon-wrapper i {
  font-size: 24px;
  display: block;
}

.contact-card:hover .icon-wrapper {
  background: var(--primary-color);
  color: #ffffff;
}

/* Button */
.action-area {
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 84, 159, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 84, 159, 0.3);
  transform: translateY(-5px);
}

/* Footer */
.main-footer {
  margin-top: auto;
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.footer-nav {
  margin-top: 10px;
}

.footer-nav a {
  color: var(--text-light);
  margin: 0 10px;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
}
