/* VARIABLES */
:root {
  --blue: #0078c8;
  --dark: #0d1a2a;
  --light: #f4f7fb;
  --text: #444;
  --white: #fff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
}

/* HERO */
.contact-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
background: url('../../../image/contact.jpg') center/cover no-repeat;

}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 40px;
}

.hero-content p {
  margin-top: 10px;
}

/* SECTION */
.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

button {
  background: var(--blue);
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}

/* INFOS */
.contact-info {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

/* MAP */
.map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-container {
    grid-template-columns: 1fr;
  }
}