:root {
  --primary: #0b3c74;
  --secondary: #ffffff;
  --accent: #e6f0fb;
  --dark: #0a1f33;
  --muted: #6b7c93;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  background: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
}

/* ===== GLOBAL SECTIONS ===== */
section {
  padding: 70px 40px;
}

.section-title {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
}

/* ===== HERO ===== */
.contact-hero {
  height: 420px;
  background: url("../images/bg3.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 60, 116, 0.85);
}

.contact-hero .hero-content {
  position: relative;
  max-width: 800px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 1.1rem;
  max-width: 600px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background: var(--accent);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.info-card {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.info-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.95rem;
  color: #333;
}

/* ===== MAP ===== */
.map-section iframe {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  border: none;
}

/* ===== MESSAGE FORM ===== */
.message-section {
  background: #f9fbfd;
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.message-image img {
  width: 100%;
  border-radius: 16px;
}

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #092f5b;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 50px 20px;
  }
}


.faq-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 1.1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #eee;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px 15px;
  font-size: 0.95rem;
  color: #333;
}