/* CSS Variables - Matching other pages */
:root {
  --primary-blue: #0a2463;
  --accent-blue: #3e92cc;
  --light-blue: #e3f2fd;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-gray: #666666;
  --bg-white: #ffffff;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

/* Hero Section - Professional Contact Design */
.contact-hero {
  background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-header {
  margin-bottom: 60px;
}

.hero-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-blue);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-light);
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  background: var(--bg-white);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 5px;
  font-weight: 500;
}

/* Remove old hero image styles - no longer needed */

/* Section Headers - Matching other pages */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form & Map Section - Redesigned for vertical layout */
.contact-form-map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-form-container {
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.form-header p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 18px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  background: var(--bg-white);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-gray);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-blue);
}

.submit-btn {
  background: var(--accent-blue);
  color: var(--text-light);
  padding: 18px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-light);
  margin-top: 10px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.submit-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.submit-btn svg {
  transition: var(--transition);
}

.submit-btn:hover svg {
  transform: translateX(3px);
}

/* Map Container - Redesigned for full width */
.map-container {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  max-width: 1000px;
  margin: 0 auto;
}

.map-header {
  padding: 40px 40px 30px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.map-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.map-header p {
  font-size: 16px;
  color: var(--text-gray);
}

.map-wrapper {
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.map-info {
  padding: 30px 40px;
  background: #f8f9fa;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  font-size: 24px;
  margin-top: 2px;
}

.map-info-item div {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.5;
}

.map-info-item strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-header h1 {
    font-size: 42px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-header h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item {
    min-width: 100px;
    padding: 15px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 30px 25px;
  }

  .map-header {
    padding: 30px 25px 20px;
  }

  .map-info {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-map-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-header h1 {
    font-size: 28px;
  }

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

  .contact-card {
    padding: 25px 15px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .contact-form-container {
    padding: 25px 20px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .map-header h3 {
    font-size: 24px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}
