* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
body { background: #f2f2f2; color: #1f1f1f; }

/* HERO */
.contact-hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* balanced columns */
  align-items: center;             /* vertical center */
  gap: 3rem;
  padding: 6rem 6vw;
  padding: 6rem 6vw;
  background: linear-gradient(120deg, #ebeaea 60%, #ff7a00 60%);
  color: #fff;
}

.hero-left span { color: #ff7b00; }
.hero-left h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;   /* tighter */
}

.hero-left p {
  max-width: 520px;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #4b4b4b;
  margin-bottom: 2.2rem;   /* space before stats */
 margin-left: 0.8rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat {
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  padding: 1.2rem 1.6rem;
  background-color:#7e7e7e;
  border-radius: 16px;
}
.stat h3 { color: #ff820d; font-size: 1.8rem; }
.stat span { font-size: 0.85rem; color: #ffffff; }




/* CONTACT MAIN */
.contact-main {
  max-width: 1200px;
  margin: -120px auto 0;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
 
}

/* INFO PANEL */

/* HERO RIGHT AS CONTACT CARD */

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-contact-card {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  padding: 2.8rem 2.6rem;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.hero-contact-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.hero-contact-card p {
  color: #666;
  margin-bottom: 1.8rem;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.hero-info-box {
  background: #f7f7f7;
  padding: 1.3rem;
  border-radius: 16px;
  border-left: 5px solid #ff7a00;
}

.hero-info-box h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #555;
}

.hero-info-box p {
  font-size: 0.85rem;
  color: #555;
}

/* MAP */
.map-section {
  margin-top: 4rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-hero { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; margin-top: -60px; }
}


:root{
  --orange:#ff7a18;
  --dark:#1f2933;
  --grey:#6b7280;
  --bg:#f6f7f9;
  --white:#ffffff;
}

/* RESET */
*{box-sizing:border-box;margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif}

/* HERO */
.quote-hero{
  background:linear-gradient(120deg,#ffffff 60%,#fff1e6 100%);
  padding:90px 6% 80px;
}

.quote-hero h1{
  font-size:2.6rem;
  color:var(--dark);
  max-width:900px;

}

.quote-hero p{
  margin-top:1rem;
  max-width:700px;
  color:var(--grey);
  font-size:1.05rem;
}

/* PAGE LAYOUT */
.quote-container{
  max-width:1300px;
  margin:-60px auto 80px;
  padding:0 4%;
  display:grid;
  grid-template-columns:1.7fr 1fr;
  gap:3rem;
  margin-top:2rem;
}

/* FORM CARD */
.quote-form{
  background:var(--white);
  padding:2.8rem;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.quote-form h2{
  font-size:1.6rem;
  margin-bottom:1.5rem;
  color:var(--dark);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.4rem;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group.full{
  grid-column:1 / -1;
}

label{
  font-size:0.85rem;
  margin-bottom:6px;
  color:#374151;
  font-weight:600;
}

input,select,textarea{
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #d1d5db;
  font-size:0.95rem;
}

textarea{
  resize:none;
  min-height:120px;
}

input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:var(--orange);
}

/* BUTTON */
.submit-btn{
  margin-top:1.8rem;
  background:linear-gradient(135deg,var(--orange),#ff9f45);
  color:#fff;
  padding:14px 22px;
  border:none;
  border-radius:12px;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  transition:0.3s ease;
}

.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(255,122,24,0.35);
}

/* SIDEBAR */
.quote-sidebar{
  display:flex;
  flex-direction:column;
  gap:1.8rem;
}

.side-card{
  background:var(--white);
  padding:2rem;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.side-card h3{
  font-size:1.2rem;
  margin-bottom:1rem;
  color:var(--dark);
}

.side-card ul{
  list-style:none;
}

.side-card li{
  padding:8px 0;
  color:var(--grey);
  font-size:0.95rem;
}

.highlight{
  border-left:4px solid var(--orange);
}

/* RESPONSIVE */
@media(max-width:980px){
  .quote-container{
    grid-template-columns:1fr;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
}
/* =========================================================
   CONTACT + QUOTE PAGE
   MOBILE & TABLET RESPONSIVE
   Desktop design remains unchanged
   ========================================================= */


/* =========================
   TABLET
   ========================= */

@media (max-width: 980px) {

  /* CONTACT HERO */

  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 5% 70px;
    gap: 2.5rem;

    background: linear-gradient(
      135deg,
      #ebeaea 0%,
      #ebeaea 65%,
      #ff7a00 65%,
      #ff7a00 100%
    );
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.7rem;
  }

  .hero-left p {
    max-width: 650px;
    margin: 1rem auto 0;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .hero-right {
    width: 100%;
  }

  .hero-contact-card {
    max-width: 700px;
  }


  /* CONTACT MAIN */

  .contact-main {
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding: 0 5% 4rem;
  }


  /* MAP */

  .map-section {
    margin-top: 3rem;
  }


  /* QUOTE */

  .quote-hero {
    padding: 80px 5% 60px;
  }

  .quote-hero h1 {
    font-size: 2.3rem;
  }

  .quote-container {
    grid-template-columns: 1fr;
    max-width: 900px;
    padding: 0 5%;
    margin: 2rem auto 70px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

  /* =====================================================
     CONTACT HERO
     ===================================================== */

  .contact-hero {
    display: flex;
    flex-direction: column;

    min-height: auto;

    padding: 80px 1.2rem 55px;

    gap: 2rem;

    background: linear-gradient(
      145deg,
      #eeeeee 0%,
      #eeeeee 72%,
      #ff7a00 72%,
      #ff7a00 100%
    );
  }


  .hero-left {
    width: 100%;
    text-align: center;
  }


  .hero-left h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: .8rem;  margin-top: 25px;
  }


  .hero-left span {
    color: #ff7b00;
  }


  .hero-left p {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;

    font-size: .92rem;
    line-height: 1.6;

    color: #4b4b4b;
  }


  /* STATS */

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;

    gap: .8rem;

    margin-top: 1.5rem;
  }


  .stat {
    width: 100%;

    padding: 1rem .7rem;

    border-radius: 13px;

    text-align: center;
  }


  .stat h3 {
    font-size: 1.45rem;
  }


  .stat span {
    display: block;

    font-size: .72rem;
    line-height: 1.3;
  }


  /* =====================================================
     CONTACT CARD
     ===================================================== */

  .hero-right {
    width: 100%;
  }


  .hero-contact-card {
    width: 100%;

    padding: 1.5rem 1.1rem;

    border-radius: 18px;

    box-shadow: 0 18px 45px rgba(0,0,0,.18);
  }


  .hero-contact-card h2 {
    font-size: 1.45rem;
    line-height: 1.3;
  }


  .hero-contact-card p {
    font-size: .88rem;
    line-height: 1.5;

    margin-bottom: 1.2rem;
  }


  /* CONTACT INFORMATION */

  .hero-info-grid {
    grid-template-columns: 1fr;

    gap: .8rem;
  }


  .hero-info-box {
    padding: 1rem;

    border-left-width: 4px;
    border-radius: 12px;
  }


  .hero-info-box h4 {
    font-size: .88rem;
  }


  .hero-info-box p {
    font-size: .8rem;
    line-height: 1.5;
  }


  /* =====================================================
     CONTACT MAIN
     ===================================================== */

  .contact-main {
    display: block;

    width: 100%;

    margin: -25px auto 0;

    padding: 0 1rem 3rem;
  }


  /* MAP */

  .map-section {
    margin-top: 2rem;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
  }


  .map-section iframe {
    height: 300px;
  }


  /* =====================================================
     QUOTE HERO
     ===================================================== */

  .quote-hero {
    padding: 70px 1.2rem 45px;

    text-align: center;
  }


  .quote-hero h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }


  .quote-hero p {
    max-width: 100%;

    margin-top: .8rem;

    font-size: .9rem;
    line-height: 1.6;
  }


  /* =====================================================
     QUOTE CONTAINER
     ===================================================== */

  .quote-container {
    display: flex;
    flex-direction: column;

    width: 100%;

    margin: 1.5rem auto 50px;

    padding: 0 1rem;

    gap: 1.5rem;
  }


  /* FORM CARD */

  .quote-form {
    width: 100%;

    padding: 1.4rem 1rem;

    border-radius: 16px;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
  }


  .quote-form h2 {
    font-size: 1.35rem;

    margin-bottom: 1.2rem;
  }


  /* FORM GRID */

  .form-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 1rem;
  }


  .form-group.full {
    grid-column: auto;
  }


  /* FORM FIELDS */

  label {
    font-size: .8rem;
    margin-bottom: 5px;
  }


  input,
  select,
  textarea {
    width: 100%;

    padding: 11px 12px;

    font-size: .88rem;

    border-radius: 9px;
  }


  textarea {
    min-height: 110px;
  }


  /* SUBMIT BUTTON */

  .submit-btn {
    width: 100%;

    margin-top: 1.3rem;

    padding: 13px 18px;

    font-size: .95rem;

    border-radius: 10px;
  }


  /* =====================================================
     QUOTE SIDEBAR
     ===================================================== */

  .quote-sidebar {
    width: 100%;

    gap: 1rem;
  }


  .side-card {
    width: 100%;

    padding: 1.3rem 1.1rem;

    border-radius: 15px;
  }


  .side-card h3 {
    font-size: 1.05rem;

    margin-bottom: .8rem;
  }


  .side-card li {
    font-size: .85rem;

    padding: 6px 0;

    line-height: 1.45;
  }


  /* =====================================================
     PREVENT MOBILE HORIZONTAL SCROLL
     ===================================================== */

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

  /* CONTACT */

  .contact-hero {
    padding: 70px 1rem 45px;

    background: linear-gradient(
      145deg,
      #eeeeee 0%,
      #eeeeee 75%,
      #ff7a00 75%,
      #ff7a00 100%
    );
  }


  .hero-left h1 {
    font-size: 1.7rem;
  }


  .hero-left p {
    font-size: .86rem;
  }


  .hero-stats {
    gap: .6rem;
  }


  .stat {
    padding: .85rem .5rem;
  }


  .stat h3 {
    font-size: 1.25rem;
  }


  .stat span {
    font-size: .67rem;
  }


  .hero-contact-card {
    padding: 1.2rem .9rem;

    border-radius: 15px;
  }


  .hero-contact-card h2 {
    font-size: 1.25rem;
  }


  .hero-contact-card p {
    font-size: .82rem;
  }


  .hero-info-box {
    padding: .85rem;
  }


  .map-section iframe {
    height: 260px;
  }


  /* QUOTE */

  .quote-hero {
    padding: 60px 1rem 40px;
  }


  .quote-hero h1 {
    font-size: 1.6rem;
  }


  .quote-hero p {
    font-size: .84rem;
  }


  .quote-container {
    padding: 0 .8rem;

    margin-top: 1rem;
  }


  .quote-form {
    padding: 1.2rem .9rem;
  }


  .quote-form h2 {
    font-size: 1.2rem;
  }


  input,
  select,
  textarea {
    font-size: .84rem;
  }


  .side-card {
    padding: 1.1rem .9rem;
  }


  .side-card h3 {
    font-size: 1rem;
  }


  .side-card li {
    font-size: .8rem;
  }

}