* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f7fb;
}

.navbar{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  z-index:1000;
}

.logo{
  height:38px;
}

.nav-links{
  display:flex;
  align-items:center;
}

.nav-links a{
  color:#333;
  margin:0 14px;
  text-decoration:none;
  font-weight:500;
}

.nav-links a:hover{
  color:#2563eb;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

.contact-container {
   margin-top:4%;
  display: flex;
  justify-content: space-between;
  padding: 60px 8%;
  gap: 40px;
  flex-wrap: wrap;
}

/* MAIN LAYOUT */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  min-height: 100vh;
}

/* LEFT */
.left {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px);
}

.content {
  max-width: 520px;
}

h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 16px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: clamp(14px, 1.2vw, 16px);
}

.info {
  font-weight: 600;
  margin-bottom: 6px;
}

.link {
  display: inline-block;
  margin: 12px 0 24px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.grid p {
  font-size: 13px;
  color: var(--muted);
}

/* RIGHT */
.right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vw, 60px);
}

/* CARD */
.card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card h2 {
  margin-bottom: 5px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* FORM */
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-bottom: 14px;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 100px;
}

.row {
  display: flex;
  gap: 10px;
}

.phone {
  display: flex;
  gap: 8px;
}

.phone span {
  padding: 12px;
  background: #f1f3f7;
  border-radius: 8px;
  font-size: 14px;
}

/* BUTTON */
button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

button:hover {
  background: #1e4fc2;
}

.terms {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
}

.terms a {
  color: var(--primary);
  text-decoration: none;
}

/* 🔥 RESPONSIVE */
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr; /* STACK */
  }

  .left {
    order: 1;
  }

  .right {
    order: 2;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .row {
    flex-direction: column;
  }

  .card {
    padding: 20px;
  }
}



/* FOOTER */
.footer {
    background: #081a36;
    color: #ccc;
    padding: 30px;
    text-align: center;
}