 

*{
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f6f8;
  color: #333;
}

/* HEADER */

.header {
  background: #0b2c44;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}

.tagline {
  font-size: 14px;
  opacity: 0.9;
}

.header-contact p {
  margin: 4px 0;
}

.staff-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: #ffffff;
  color: #0b2c44;
  text-decoration: none;
  font-size: 13px;
  border-radius: 4px;
}
/* ================================
   CLASSY INQUIRY SECTION
================================ */

.inquiry-section {
  background: #eef2f5;
}

.inquiry-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.inquiry-info h2 {
  margin-bottom: 15px;
  text-align: left;
}

.inquiry-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.inquiry-info ul {
  padding-left: 18px;
  color: #0b2c44;
}

.inquiry-info li {
  margin-bottom: 10px;
}

/* INQUIRY CARD */
.inquiry-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.inquiry-card input,
.inquiry-card select,
.inquiry-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.inquiry-card textarea {
  min-height: 120px;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
}

.btn-group button {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.btn-group button:first-child {
  background: #0b2c44;
  color: white;
}

.wa-btn {
  background: #25D366;
  color: white;
}

/* MOBILE */
@media (max-width: 900px) {
  .inquiry-wrapper {
    grid-template-columns: 1fr;
  }
}
/* INQUIRY BACKGROUND IMAGE */
.inquiry-bg {
  background: 
    linear-gradient(rgba(11,44,68,0.85), rgba(11,44,68,0.85)),
    url("../images/inquiry-bg.jpg") center/cover no-repeat;
  color: white;
  padding: 40px;
  border-radius: 10px;
}

.inquiry-bg p,
.inquiry-bg li {
  color: #e0e6eb;
}

.inquiry-bg h2 {
  color: white;
}


/* HERO */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 50px 10%;
  background: white;
}

.section.light {
  background: #eef2f5;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.service-box ul {
  padding-left: 18px;
}

/* FOOTER */
.footer {
  background: #0b2c44;
  color: white;
  text-align: center;
  padding: 15px;
}
.btn-group {
  display: flex;
  gap: 15px;
}

.btn-group button {
  flex: 1;
}

.wa-btn {
  background: #25D366;
}

.wa-btn:hover {
  background: #1ebe5d;
}
/* CLASSY INQUIRY */
.inquiry-section {
  background: #f1f4f8;
}

.inquiry-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.inquiry-info h2 {
  margin-bottom: 15px;
}

.inquiry-info p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.inquiry-info ul {
  padding-left: 18px;
  color: #0b2c44;
}

.inquiry-info li {
  margin-bottom: 10px;
}

/* FORM CARD */
.inquiry-card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.inquiry-card input,
.inquiry-card select,
.inquiry-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.inquiry-card textarea {
  min-height: 120px;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
}

.btn-group button {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.btn-group button:first-child {
  background: #0b2c44;
  color: white;
}

.wa-btn {
  background: #25D366;
  color: white;
}

/* MOBILE */
@media (max-width: 900px) {
  .inquiry-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-clean{
  padding:50px 20px;
  text-align:center;
}

.contact-clean h2{
  font-size:30px;
  margin-bottom:25px;
  letter-spacing:1px;
}

.contact-line{
  font-size:17px;
  margin:10px 0;
  color:#333;
}

/* new added */

/* LOGO IN HEADER */

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:150px;        /* fits header height perfectly */
  height:auto;
  object-fit:contain;
}

.brand-text h1{
  margin:0;
  font-size:28px;
  font-weight:600;
  color:white;
}

.tagline{
  font-size:13px;
  color:#d6e6f5;
  margin-top:4px;
}
@media(max-width:700px){
  .logo{
    width:50px;
  }
  .brand-text h1{
    font-size:22px;
  }
}



.top-contact{
  position:absolute;
  right:20px;
  top:15px;
  text-align:right;
  color:#fff;
  font-size:14px;
}

.staff-btn{
  display:inline-block;
  margin-top:6px;
  background:#ffffff;
  color:#0a2f4f;
  padding:6px 14px;
  border-radius:5px;
  font-weight:600;
  text-decoration:none;
}

.staff-btn:hover{
  background:#f1c40f;
}
