 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red: #c64331;
      --red-dark: #96281b;
      --red-light: #c64331;
      --white: #ffffff;
      --off-white: #f9f9f9;
      --light-gray: #f2f2f2;
      --text-dark: #1a1a1a;
      --text-mid: #444444;
      --text-muted: #777777;
      --border: #e5e5e5;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

    /* ── HERO ── */
    .hero {
      background: #96281b;
      color: var(--white); text-align: center;
      padding: 110px 40px 90px;
    }
    .hero-tag {
     display: inline-block;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 22px;
    }
    .hero h1 {  font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px; margin-bottom: 18px; color:#fff; }
    .hero h1 span { color: #fff; display:block;}
    .hero p { font-size: 1.05rem; max-width: 560px; margin: 0 auto; color: rgba(255,255,255,0.88); line-height: 1.7; }

    /* ── CONTACT MAIN ── */
    .contact-main { padding: 80px 60px; background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }

    /* Info Side */
    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .section-tag {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; color: var(--red);
      margin-bottom: 10px;
    }
    .section-title { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
    .section-title span { color: var(--red); }
    .contact-intro { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

    .info-card {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--off-white); border-radius: var(--radius);
      padding: 20px; transition: box-shadow .2s;
    }
    .info-card:hover { box-shadow: var(--shadow); }
    .info-icon {
      min-width: 46px; height: 46px; border-radius: 10px;
      background: var(--red); display: flex; align-items: center; justify-content: center;
    }
    .info-icon svg { width: 22px; height: 22px; fill: var(--white); }
    .info-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
    .info-text a, .info-text p { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; line-height: 1.6; display: block; }
    .info-text a:hover { color: var(--red); }

    .offices { margin-top: 4px; }
    .offices h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
    .office-list { display: flex; flex-direction: column; gap: 10px; }
    .office-item {
      display: flex; align-items: center; gap: 12px;
      background: var(--off-white); border-radius: 8px; padding: 12px 16px;
    }
    .office-flag { font-size: 1.3rem; }
    .office-item strong { font-size: 0.88rem; font-weight: 700; display: block; }
    .office-item span { font-size: 0.82rem; color: var(--text-muted); }

    /* Form Side */
    .contact-form-wrap {
      background: var(--white); border-radius: var(--radius);
      box-shadow: 0 8px 40px rgba(0,0,0,0.09);
      padding: 40px 36px;
    }
    .contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
    .contact-form-wrap p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

.contact-form-wrap .form-group  p{
    margin:0px;
}
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
    .form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }.form-group  span{
        width:100%;
    }
     .form-group textarea {
         max-height:150px;
     }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width:100%;
      border: 1.5px solid var(--border); border-radius: 8px;
      padding: 11px 14px; font-size: 0.9rem; font-family: 'Inter', sans-serif;
      color: var(--text-dark); background: var(--white);
      transition: border-color .2s, box-shadow .2s; outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select { appearance: none; cursor: pointer; }

    .submit-btn {
      width: 100%; padding: 16px; background: var(--red); color: var(--white);
      border: none; border-radius: 36px; font-size: 1rem; font-weight: 700;
      cursor: pointer; 
      transition: background .2s, transform .1s;
      display: flex; align-items: center; justify-content: center; 
      height:auto !important;
    }
    .submit-btn:hover { background: var(--red-dark); }
    .submit-btn:active { transform: scale(0.99); }
    .submit-btn svg { width: 18px; height: 18px; fill: var(--white); }

    .form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin: 0px !important; }

    /* ── MAP / LOCATIONS ── */
    .locations-section { background: var(--off-white); padding: 80px 60px; text-align: center; }
    .locations-section .section-title { margin-bottom: 8px; }
    .locations-section .section-sub { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 48px; line-height: 1.7; }
    .locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .location-card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px 24px; box-shadow: var(--shadow);
      border-top: 4px solid var(--red); transition: transform .2s;
    }
    .location-card:hover { transform: translateY(-4px); }
    .location-card .flag { font-size: 2.2rem; margin-bottom: 14px; }
    .location-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .location-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
    .location-card .badge {
      display: inline-block; background: var(--red-light);
      color: var(--red); font-size: 0.75rem; font-weight: 600;
      padding: 3px 12px; border-radius: 20px; margin-top: 12px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      
      .contact-main, .locations-section, .faq-section { padding: 60px 24px; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .locations-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 580px) {
      .hero h1 { font-size: 2rem; }
    }