*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:"Segoe UI", Arial, sans-serif;
}

body{
  background:#f1f5f9;
  min-height:100vh;
}


/* MAIN WRAPPER */
.contact-wrapper{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  width:100%;
  max-width:1000px;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* LEFT INFO */
.contact-info{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  padding:50px 40px;
}

.contact-info h2{
  font-size:28px;
  margin-bottom:15px;
}

.contact-info p{
  font-size:14px;
  line-height:1.7;
  color:#cbd5f5;
  margin-bottom:30px;
}

.info-item{
  font-size:15px;
  margin-bottom:14px;
  display:flex;
  gap:10px;
  align-items:center;
}

/* RIGHT FORM */
.contact-form{
  padding:50px 45px;
}

.contact-form h3{
  font-size:24px;
  margin-bottom:25px;
  color:#0f172a;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  font-size:13px;
  margin-bottom:6px;
  color:#475569;
  font-weight:600;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #d1d5db;
  font-size:14px;
  outline:none;
  transition:0.2s;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}

/* SUBMIT BUTTON */
.submit-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  transition:0.3s ease;
}

.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(37,99,235,0.45);
}

.submit-btn:active{
  transform:scale(0.97);
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-info{
    text-align:center;
  }

  .info-item{
    justify-content:center;
  }
}

/* ===== MAIN HEADER ===== */
.main-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  padding:14px 30px;
  display:grid;
  grid-template-columns: auto 1fr;
  align-items:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.25);
}


/* LEFT */
.header-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-logo{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand-name{
  font-size:22px;
  font-weight:700;
  letter-spacing:0.5px;
  color:#ffffff;
}

/* CENTER NAV */
.header-nav{
  display:flex;
  gap:28px;
}

.header-nav a{
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  color:#e5e7eb;
  position:relative;
  padding-bottom:4px;
  transition:0.3s;
}

.header-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#3b82f6;
  transition:0.3s;
}

.header-nav a:hover{
  color:#fff;
}

.header-nav a:hover::after{
  width:100%;
}

.header-nav .active{
  color:#93c5fd;
  font-weight:600;
}

/* Highlight Verify */
.highlight-link{
  color:#60a5fa !important;
  font-weight:600;
}

/* RIGHT */
.header-right{
  display:flex;
  align-items:center;
}

.admin-btn{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  text-decoration:none;
  padding:10px 18px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.admin-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(37,99,235,0.45);
}

/* RESPONSIVE */
@media(max-width:900px){
  .header-nav{
    display:none;
  }
}

.contact-wrapper{
  margin-top:40px;
}

.contact-wrapper{
  margin:80px auto 40px;   /* header ke niche spacing */
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  width:100%;
  max-width:1000px;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* ===== PROFESSIONAL INPUT UI ===== */

.form-group.floating {
  position: relative;
  margin-bottom: 22px;
}

/* INPUT & TEXTAREA */
.form-group.floating input,
.form-group.floating textarea {
  width: 100%;
  padding: 16px 14px;
  font-size: 15px;
  border-radius: 12px;
  border: 1.5px solid #d1d5db;
  background: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

/* LABEL */
.form-group.floating label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 0 6px;
  font-size: 14px;
  color: #64748b;
  pointer-events: none;
  transition: 0.25s ease;
}

/* FOCUS EFFECT */
.form-group.floating input:focus,
.form-group.floating textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* FLOAT LABEL ON FOCUS / FILLED */
.form-group.floating input:focus + label,
.form-group.floating textarea:focus + label,
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
}

/* TEXTAREA HEIGHT */
.form-group.floating textarea {
  resize: none;
  min-height: 110px;
}

/* VALID STATE */
.form-group.floating input:valid,
.form-group.floating textarea:valid {
  border-color: #16a34a;
}

/* INVALID STATE */
.form-group.floating input:invalid:not(:focus),
.form-group.floating textarea:invalid:not(:focus) {
  border-color: #ef4444;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
}

.submit-btn:active {
  transform: scale(0.97);
}

/* ===== FORM GROUP ===== */
.form-group{
  margin-bottom:18px;
}

/* LABEL */
.form-group label{
  display:block;
  font-size:14px;
  font-weight:600;
  color:#334155;
  margin-bottom:6px;
}

/* INPUT & TEXTAREA */
.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  font-size:14px;
  border-radius:10px;
  border:1.5px solid #d1d5db;
  background:#ffffff;
  outline:none;
  transition:0.25s ease;
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#94a3b8;
}

/* FOCUS STATE */
.form-group input:focus,
.form-group textarea:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}

/* TEXTAREA */
.form-group textarea{
  resize:none;
  min-height:120px;
}

/* SUBMIT BUTTON */
.submit-btn{
  width:100%;
  padding:15px;
  margin-top:10px;
  border:none;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  transition:0.3s ease;
}

.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(37,99,235,0.45);
}

.submit-btn:active{
  transform:scale(0.97);
}

.contact-link{
  color:#e0e7ff;
  text-decoration:none;
  font-weight:500;
  transition:0.25s ease;
}

.contact-link:hover{
  color:#60a5fa;
  text-decoration:underline;
}

.header-center{
  display:flex;
  justify-content:center;
  gap:30px;
}

.header-nav a{
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  color:#e5e7eb;
  position:relative;
  padding-bottom:4px;
  transition:0.3s;
}

.header-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#3b82f6;
  transition:0.3s;
}

.header-nav a:hover{
  color:#fff;
}

.header-nav a:hover::after{
  width:100%;
}

.header-nav .active{
  color:#93c5fd;
  font-weight:600;
}

.highlight-link{
  color:#60a5fa;
  font-weight:600;
}
