:root {
	--bg-primary: #121212;
	--bg-secondary: #1a1a1a;
	--bg-card: rgba(255, 255, 255, 0.04);
	--bg-card-hover: rgba(255, 255, 255, 0.08);
	--text-primary: #f8f9fa;
	--text-secondary: #DDDDDD;
	--text-muted: #999999;
	--accent: #87CEFA;
	--accent-hover: #5bb8e8;
	--accent-glow: rgba(135, 206, 250, 0.25);
	--border-light: rgba(255, 255, 255, 0.06);
	--border-glass: rgba(255, 255, 255, 0.1);
}


/* ===== Contact Cards ===== */
.contact-cards {
  background: var(--bg-secondary);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-card-text a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-text a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ===== Phone Items ===== */
.contact-phone-item {
  margin-bottom: 6px;
}

.contact-phone-item:last-child {
  margin-bottom: 0;
}

.contact-phone-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Email Items ===== */
.contact-email-item {
  margin-bottom: 8px;
}

.contact-email-item:last-child {
  margin-bottom: 0;
}

/* ===== Visit Section ===== */
.contact-visit {
  background: var(--bg-primary);
}

/* ===== Other Section ===== */
.contact-other {
  background: var(--bg-secondary);
}

/* ===== Contact Section (single-block layout for index.html) ===== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact-info-group {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
}

.contact-info-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-label {
  font-weight: 600;
  color: var(--accent);
  min-width: 130px;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.contact-info-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ===== Contact Page cards ===== */
.cp-hero {
  padding: 120px 0 40px;
  text-align: center;
  background: rgb(0, 51, 102);
  background: linear-gradient(135deg, rgba(0, 51, 102, 1) 0%, rgba(5, 111, 82, 1) 50%, rgba(81, 129, 176, 1) 100%);
}

.cp-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.cp-hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.cp-cards {
  padding: 48px 0 80px;
  background: var(--bg-secondary);
}

.cp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

@media (min-width: 576px) {
  .cp-card {
    text-align: center;
  }
}

.cp-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cp-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .cp-card-header {
    justify-content: center;
  }
}

.cp-card-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.cp-card-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cp-card-text a {
  color: var(--accent);
  text-decoration: none;
}

.cp-card-text a:hover {
  text-decoration: underline;
}

.cp-phone {
  margin-bottom: 3px;
}

.cp-phone:last-child {
  margin-bottom: 0;
}

.cp-phone-label {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.cp-card-action .cp-card-text {
  margin-bottom: 12px;
}

/* ===== Footer ===== */
.contact-footer {
  padding: 32px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.contact-footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
