/* ========== CSS VARIABLES FROM THEME ========== */
:root {
  --color-primary: #007BBD;
  --color-secondary: #79C8E0;
  --color-accent: #F8B400;
  --color-background: #F5F9FC;
  --color-surface: #FFFFFF;
  --color-text-primary: #0D1B2A;
  --color-text-secondary: #4B5D73;
  --color-border: #DCE6F2;
  --gradient-primary: linear-gradient(135deg, #007BBD, #79C8E0);
  --font-family: 'Poppins', 'Inter', sans-serif;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --border-radius: 12px;
  --border-radius-large: 16px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 20px rgba(0, 0, 0, 0.12);
  --shadow-large: 0 8px 30px rgba(0, 123, 189, 0.15);
}

/* ========== CONTACT MAP SECTION ========== */
.contact-map-section {
  padding: var(--spacing-2xl) 0;
  background: var(--color-surface);
}

/* ========== MAP HEADER ========== */
.map-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.map-title {
  font-size: 32px;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-sm) 0;
  font-family: var(--font-family);
  line-height: 1.3;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin: 0 auto var(--spacing-md);
  border-radius: 2px;
}

.map-description {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-family);
}

/* ========== MAP WRAPPER ========== */
.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  border: 1px solid var(--color-border);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .contact-map-section {
    padding: var(--spacing-xl) 0;
  }

  .map-title {
    font-size: 28px;
  }

  .map-container {
    height: 350px;
    border-radius: var(--border-radius);
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
}

