/* ===== CONTACT PAGE STYLES ONLY ===== */

body {
  background: #f6f7fb;
}

/* Title */
.contact-header {
  text-align: center;
  margin: 40px 0;
}

.contact-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-header p {
  color: #888;
  font-size: 14px;
}

/* Layout */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 20px 60px;
}

/* LEFT SIDE */
.contact-left {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cards */
.contact-card {
  border-radius: 16px;
  padding: 25px;
}

/* Purple card */
.contact-card.primary {
  background: linear-gradient(135deg, #6c63ff, #7f7ce5);
  color: white;
}

.contact-card.primary h4 {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.contact-card.primary h2 {
  margin: 10px 0 20px;
}

/* Gray card */
.contact-card.secondary {
  background: #f1f2f6;
  color: #444;
  font: 14px;
}

/* Buttons */
.card-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
  font-size: 13px;
  margin-top: 15px;
  text-decoration: none;
}

.primary .card-btn {
  background: rgba(255,255,255,0.2);
  color: white;
}

.secondary .card-btn {
  background: #ddd;
  color: #555;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Inputs */
.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  border-radius: 25px;
  border: 1px solid #eee;
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}

/* Row */
.input-row {
  display: flex;
  gap: 15px;
}

.input-row input {
  flex: 1;
}

/* Textarea */
.contact-right textarea {
  border-radius: 12px;
  resize: none;
  height: 120px;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #5a5f69;
  color: white;
  font-size: 15px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .contact-left {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }
}

.submit-btn{
background:linear-gradient(135deg, #2ecc71, #27ae60);
color:white;
border:none;
border-radius:5px;
padding:12px;
font-weight:bold;
transition:all 0.3s ease;
}

.submit-btn:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* FULL WIDTH BUTTON */
.card-btn{
display:block;              /* makes it full width */
width:100%;                 /* stretch across */
margin-top:15px;
padding:14px;               /* slightly bigger */
background:linear-gradient(135deg, #1D3557, #457b9d);
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
text-align:center;          /* center text */
transition:all 0.3s ease;
}

/* HOVER */
.card-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* CLICK EFFECT */
.card-btn:active{
transform:scale(0.98);
}