  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red: #ff0000;
    --red-dark: #ff0000;
    --dark: #1a1a1a;
    --gray: #555;
    --light-bg: #f5f5f5;
    --border: #e0e0e0;
    --font-head: 'Open Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-btn: 'Open Sans', sans-serif;
  }

  body {
    font-family: var(--font-body);
    color: var(--dark);
    background: #fff;
  }

  /* NAV */


  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    overflow: hidden;
    background: #fff;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px 60px 60px;
    position: relative;
  }
  .hero-left h1 {
    font-family: var(--font-head);
    font-size: 3.2rem;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 20px;
  }
  .hero-left p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    max-width: 380px;
  }
  .hero-red-accent {
    position: absolute;
    bottom: 40px;
    left: 50px;
    width: 120px;
    height: 10px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }
  .hero-right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .scroll-badge {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }
  .scroll-badge svg { width: 20px; height: 20px; color: var(--dark); }

  /* BODY */
  .page-body {
    padding: 60px 60px;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
  }

  /* FORM */
  .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 26px;
  }
  .section-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
  }
  .section-header h2 {
    font-family: var(--font-btn);
    font-size: 15px;
    color: #888;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
  }
  .form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
  }
  .req { color: var(--red); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: var(--font-body);
    font-size: 13.5px;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--red);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #bbb;
  }
  .form-group textarea { resize: vertical; }

  .dropzone {
    border: 2px dashed #ccc;
    background: var(--light-bg);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
  }
  .dropzone:hover { background: #ebebeb; }
  .dropzone input[type="file"] {
    position: absolute; top:0; left:0; width:100%; height:100%; opacity:0; cursor:pointer; border:none; padding:0;
  }
  .dropzone-icon { font-size: 24px; color: #aaa; display: block; margin-bottom: 8px; }
  .dropzone p { font-size: 13px; color: var(--gray); }
  .dropzone p span { display: block; font-size: 11px; color: #aaa; margin-top: 3px; }

  .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 22px 0;
  }
  .checkbox-row input { margin-top: 2px; accent-color: var(--red); }
  .checkbox-row label { font-size: 12px; color: var(--gray); line-height: 1.5; }

  .btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 14px 42px;
    font-family: var(--font-btn);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-submit:hover { background: var(--red-dark); }

  .mt-36 { margin-top: 36px; }

  /* SIDEBAR */
  .sidebar { display: flex; flex-direction: column; gap: 26px; }

  .sidebar-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 28px;
  }
  .sidebar-card h3 {
    font-family: var(--font-btn);
    font-size: 14px;
    color: #888;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }

  .prop-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
  }
  .prop-item:last-child { margin-bottom: 0; }
  .prop-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prop-icon svg { width: 34px; height: 34px; }
  .prop-item h4 {
    font-family: var(--font-btn);
    font-size: 13.5px;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .prop-item p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
  }

  .contact-list { display: flex; flex-direction: column; gap: 14px; }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  a.contact-item:hover { color: var(--red); }
  .contact-item svg { width: 18px; height: 18px; color: var(--gray); flex-shrink: 0; margin-top: 1px; }
  .contact-item span { line-height: 1.5; }
  .card-intro { font-size: 13px; color: var(--gray); margin-bottom: 18px; line-height: 1.55; }

  /* BOTTOM BANNER */
  .bottom-banner {
    background: var(--red);
    padding: 30px 60px;
    text-align: center;
    margin-top: 20px;
  }
  .bottom-banner h2 {
    font-family: var(--font-head);
    font-size: 1.55rem;
    color: #fff;
    letter-spacing: 0.5px;
  }

  /* FOOTER CTA CARD */
  .footer-cta-wrap {
    background: #2c2c2c;
    padding: 0 60px 0;
  }
  .footer-cta-card {
    background: #fff;
    border-radius: 12px 12px 0 0;
    padding: 22px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
  }
  .footer-cta-left { display: flex; align-items: center; gap: 18px; }
  .footer-cta-left svg { width: 38px; height: 38px; color: #999; }
  .footer-cta-left h3 { font-size: 17px; font-weight: 600; color: var(--dark); line-height: 1.3; }
  .footer-cta-actions { display: flex; gap: 12px; }
  .btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 11px 26px;
    font-family: var(--font-btn);
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }
  .btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    border-radius: 24px;
    padding: 10px 26px;
    font-family: var(--font-btn);
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }

  /* FOOTER */
  footer {
    background: #2c2c2c;
    padding: 36px 60px 20px;
    color: #ccc;
  }
  .footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 50px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
    margin-bottom: 16px;
  }
  .footer-logo-area { display: flex; flex-direction: column; gap: 6px; }
  .footer-logo-area svg { width: 70px; height: 70px; }
  .footer-tagline { font-size: 10px; color: #888; max-width: 130px; line-height: 1.4; }
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 8px 40px;
    align-content: start;
    padding-top: 10px;
  }
  .footer-links-grid a { font-size: 13px; color: #bbb; text-decoration: none; }
  .footer-links-grid a:hover { color: #fff; }
  .footer-social-area { text-align: right; }
  .footer-social-area h4 { font-size: 13px; color: #fff; font-family: var(--font-btn); letter-spacing: 1px; margin-bottom: 12px; }
  .social-icons { display: flex; gap: 10px; justify-content: flex-end; }
  .social-icons a {
    width: 32px; height: 32px; border-radius: 4px;
    border: 1px solid #555; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: border-color 0.2s;
  }
  .social-icons a:hover { border-color: #aaa; }
  .social-icons svg { width: 16px; height: 16px; color: #bbb; }
  .footer-bottom {
    font-size: 11px;
    color: #777;
    text-align: center;
  }
  .footer-address {
    text-align: right;
    font-size: 11px;
    color: #888;
    line-height: 1.6;
    padding-top: 10px;
  }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — max-width 767px
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* force inline widths to be fluid */
  [style*="width:600px"],
  [style*="width: 600px"] {
    width: auto !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* hero height / margin-top overrides */
  .gi-service-hero,
  .gi-service-hero[style*="height:"] {
    height: auto !important;
    min-height: 300px !important;
    padding: 100px 0 40px !important;
  }

  [style*="margin-top: 130px"],
  [style*="margin-top:130px"] {
    margin-top: 80px !important;
  }

  .gi-hero-grid-split {
    flex-direction: column !important;
  }

  .gi-hero-content-container {
    padding: 0 15px !important;
  }

  .gi-hero-bg img {
    height: 100% !important;
  }

  .gi-hero-textbox2 {
    margin-left: 0 !important;
    max-width: 100% !important;
    padding: 25px 20px !important;
    width: auto !important;
  }

  .gi-hero-textbox2 h1 {
    font-size: 1.6rem !important;
  }

  .gi-hero-textbox2 p {
    max-width: 100% !important;
  }

  img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
  }

  input, textarea, select, button {
    max-width: 100% !important;
  }

  /* page-body: collapse 2-col grid to single column */
  .page-body {
    grid-template-columns: 1fr !important;
    padding: 30px 15px !important;
    gap: 30px !important;
  }

  .row-2 {
    grid-template-columns: 1fr !important;
  }

  .bottom-cta-banner {
    padding: 20px 15px 40px !important;
  }

  .cta-marquee-text {
    font-size: 1rem !important;
  }

  section {
    overflow-x: hidden;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — max-width 480px
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .gi-hero-textbox2 h1 {
    font-size: 1.4rem !important;
  }

  .gi-hero-textbox2 {
    padding: 15px !important;
  }

  .section-header h2 {
    font-size: 13px !important;
  }

  .sidebar-card {
    padding: 20px !important;
  }
}
