/* ===============================
   CONTACT PAGE — Elegant Style
   =============================== */

/* General Reset */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Merriweather", serif;
  margin: 0 0 10px;
  color: #1d2a4a; /* deep navy */
}

a {
  text-decoration: none;
  color: #1d2a4a;
}

a:hover {
  color: #c3952f; /* gold highlight */
}

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1200px;
  margin: auto;
}

.brand img {
  height: 48px;
}

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  padding: 8px 12px;
  transition: 0.3s;
}

.main-nav a.active,
.main-nav a:hover {
  color: #fff;
  background: #1d2a4a;
  border-radius: 5px;
}

/* ===== Hero Section ===== */
.hero-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 10%;
  background: linear-gradient(to right, #fdfdfd, #f7f7f7);
}

.hero-contact .hero-text {
  padding-right: 30px;
}

.hero-contact h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-contact p.lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-contact .btn {
  background: #1d2a4a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-contact .btn:hover {
  background: #c3952f;
}

.hero-contact .hero-visual img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ===== Section General ===== */
.section {
  padding: 60px 10%;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 2rem;
  position: relative;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c3952f;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* ===== Info Cards ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.info-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.info-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.info-card p {
  color: #555;
}

.online {
  color: green;
  font-weight: 600;
}

/* ===== Form ===== */
.form-modern {
  max-width: 700px;
  margin: auto;
}

.form-row {
  position: relative;
  margin-bottom: 25px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafafa;
}

.form-row label {
  position: absolute;
  top: -10px;
  left: 14px;
  background: #fff;
  font-size: 0.85rem;
  color: #777;
  padding: 0 6px;
}

.btn-primary {
  background: #1d2a4a;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #c3952f;
}

.form-success {
  text-align: center;
  font-size: 1.1rem;
  color: green;
  margin-top: 20px;
}

/* ===== Map ===== */
.map-wrap iframe {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ===== Accordion (FAQ) ===== */
.accordion button {
  width: 100%;
  padding: 15px;
  text-align: left;
  border: none;
  outline: none;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.accordion button:hover {
  background: #f1f1f1;
}

.accordion-body {
  display: none;
  padding: 15px;
  background: #fff;
  border-left: 3px solid #c3952f;
  color: #444;
}

/* ===== Testimonials Carousel ===== */
.testimonials .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 800px;
  margin: auto;
}

.testimonials .viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials .slide {
  display: none;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
}

.testimonials .slide.active {
  display: block;
}

.cbtn {
  background: #1d2a4a;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.cbtn:hover {
  background: #c3952f;
}

/* ===== Footer ===== */
.site-footer {
  background: #1d2a4a;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}
