/* Custom Pages Styles */

/* Page Hero Section */
.page-hero {
  background: linear-gradient(135deg, #3b4a87 0%, #2c3a6b 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #b8c4e6;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-description p {
  margin: 0 0 16px;
}

.page-hero-description p:last-child {
  margin-bottom: 0;
}

/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

.contact-info-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b4a87 0%, #2c3a6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-info-icon i {
  font-size: 2rem;
  color: #fff;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.contact-info-text a {
  color: #3b4a87;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #d4af37;
}

.contact-info-placeholder {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin: 0;
}

/* Google Maps Section */
.contact-maps-section {
  background: #fff;
}

.contact-maps-container {
  width: 100%;
  height: 450px;
}

.contact-maps-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-maps-placeholder {
  height: 450px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ddd;
}

.maps-placeholder-content {
  text-align: center;
  color: #666;
}

.maps-placeholder-content i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 16px;
}

.maps-placeholder-content h3 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #333;
}

.maps-placeholder-content p {
  font-size: 1rem;
  margin: 0;
  max-width: 300px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .page-hero {
    padding: 60px 0 40px;
  }
  
  .page-hero-title {
    font-size: 2.25rem;
  }
  
  .page-hero-description {
    font-size: 1rem;
  }
  
  .contact-info-section {
    padding: 60px 0;
  }
  
  .contact-info-grid {
    gap: 30px;
  }
  
  .contact-info-item {
    padding: 30px 20px;
  }
  
  .contact-info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .contact-info-icon i {
    font-size: 1.5rem;
  }
  
  .contact-info-title {
    font-size: 1.25rem;
  }
  
  .contact-maps-container {
    height: 300px;
  }
  
  .contact-maps-placeholder {
    height: 300px;
  }
  
  .maps-placeholder-content i {
    font-size: 3rem;
  }
  
  .maps-placeholder-content h3 {
    font-size: 1.25rem;
  }
  
  .maps-placeholder-content p {
    font-size: 0.9rem;
  }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-info-item:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}
