/* styles-security.css - fire & security company */
:root {
    --red: #E63946;
    --red-dark: #B71C1C;
    --red-light: #FF6B75;
    --dark: #1A1A2E;
    --dark-light: #2A2A3E;
    --gray: #4A4A5E;
    --gray-light: #8A8A9E;
    --cream: #F5F5F7;
    --white: #FFFFFF;
    --font-display: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

/* ============================================ */
/* CONTACT HERO - contacthero prefix           */
/* ============================================ */

.contacthero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: var(--dark);
    overflow: hidden;
  }
  
  .contacthero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }
  
  /* Background */
  .contacthero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .contacthero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(230, 57, 70, 0.08), transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(230, 57, 70, 0.04), transparent 50%);
  }
  
  .contacthero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
  }
  
  /* Grid Layout */
  .contacthero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  /* Left Column - Content */
  .contacthero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: white;
  }
  
  .contacthero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .contacthero-badge-line {
    width: 40px;
    height: 2px;
    background: var(--red);
  }
  
  .contacthero-badge-text {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .contacthero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 0;
  }
  
  .contacthero-title-line {
    display: block;
    opacity: 0;
    animation: contactheroReveal 1s ease forwards;
    transform: translateY(30px);
  }
  
  .contacthero-title-line:nth-child(1) { animation-delay: 0.2s; }
  .contacthero-title-line:nth-child(2) { animation-delay: 0.4s; }
  
  .contacthero-title-line.accent {
    color: var(--red);
  }
  
  @keyframes contactheroReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .contacthero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 500px;
    opacity: 0;
    animation: contactheroFadeIn 1s ease 0.6s forwards;
  }
  
  @keyframes contactheroFadeIn {
    to {
      opacity: 1;
    }
  }
  
  /* Contact Methods */
  .contacthero-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: contactheroFadeIn 1s ease 0.8s forwards;
  }
  
  .contacthero-method {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
  }
  
  .contacthero-method:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--red);
    transform: translateX(5px);
  }
  
  .contacthero-method-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .contacthero-method-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .contacthero-method-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    font-weight: 600;
  }
  
  .contacthero-method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
  }
  
  .contacthero-method-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* CTA Buttons */
  .contacthero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    animation: contactheroFadeIn 1s ease 1s forwards;
  }
  
  .contacthero-btn-primary {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .contacthero-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
    gap: 1.5rem;
  }
  
  .contacthero-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .contacthero-btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
    background: rgba(230, 57, 70, 0.05);
  }
  
  .contacthero-btn-secondary svg {
    stroke: currentColor;
  }
  
  /* Right Column - Visual */
  .contacthero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contacthero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
  }
  
  .contacthero-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }
  
  .contacthero-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
  }
  
  .contacthero-main-image:hover img {
    transform: scale(1.03);
  }
  
  /* Floating Elements */
  .contacthero-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: contactheroFloat 4s ease-in-out infinite;
    transition: all 0.3s;
  }
  
  .contacthero-float:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
    border-color: var(--red);
  }
  
  .contacthero-float-1 {
    top: -5%;
    right: -10%;
    animation-delay: 0s;
  }
  
  .contacthero-float-2 {
    bottom: 15%;
    left: -15%;
    animation-delay: 1.5s;
  }
  
  .contacthero-float-3 {
    top: 30%;
    right: -20%;
    animation-delay: 3s;
  }
  
  @keyframes contactheroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .contacthero-float-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .contacthero-float-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    font-weight: 500;
  }
  
  .contacthero-float-value {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
  }
  
  /* Trust Badge */
  .contacthero-trust-badge {
    position: absolute;
    bottom: -5%;
    right: -5%;
    background: var(--red);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
    animation: contactheroPulse 2s ease-in-out infinite;
    z-index: 2;
  }
  
  @keyframes contactheroPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .contacthero-trust-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  
  .contacthero-trust-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
  }
  
  /* Info Strip */
  .contacthero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
  }
  
  .contacthero-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    transition: all 0.3s;
  }
  
  .contacthero-strip-item:hover {
    color: white;
    transform: translateY(-3px);
  }
  
  .contacthero-strip-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .contacthero-strip-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
  }
  
  .contacthero-strip-value {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  /* Scroll Indicator */
  .contacthero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    opacity: 0.5;
    animation: contactheroFadeIn 1s ease 1.2s forwards;
  }
  
  .contacthero-scroll-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .contacthero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: contactheroScrollPulse 2s ease-in-out infinite;
  }
  
  @keyframes contactheroScrollPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
  }
  
  /* ============================================ */
  /* RESPONSIVE - contacthero                     */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .contacthero-title {
      font-size: 3.5rem;
    }
    
    .contacthero-float {
      padding: 0.6rem 1.2rem;
    }
    
    .contacthero-float-icon {
      font-size: 1.4rem;
    }
    
    .contacthero-trust-badge {
      width: 100px;
      height: 100px;
    }
    
    .contacthero-trust-number {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .contacthero-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .contacthero-content {
      order: 1;
    }
    
    .contacthero-visual {
      order: 0;
    }
    
    .contacthero-title {
      font-size: 3rem;
    }
    
    .contacthero-image-wrapper {
      max-width: 400px;
      margin: 0 auto;
    }
    
    .contacthero-float-1 {
      top: -5%;
      right: 0%;
    }
    
    .contacthero-float-2 {
      bottom: 10%;
      left: -5%;
    }
    
    .contacthero-float-3 {
      top: 20%;
      right: -5%;
    }
    
    .contacthero-trust-badge {
      width: 90px;
      height: 90px;
      bottom: -2%;
      right: 0%;
    }
    
    .contacthero-trust-number {
      font-size: 1.8rem;
    }
    
    .contacthero-strip {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .contacthero-section {
      padding: 6rem 1.5rem 3rem;
    }
    
    .contacthero-title {
      font-size: 2.5rem;
    }
    
    .contacthero-description {
      font-size: 1rem;
    }
    
    .contacthero-method {
      padding: 0.8rem 1rem;
    }
    
    .contacthero-method-icon {
      font-size: 1.5rem;
    }
    
    .contacthero-method-value {
      font-size: 1rem;
    }
    
    .contacthero-cta {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .contacthero-btn-primary,
    .contacthero-btn-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .contacthero-image-wrapper {
      max-width: 320px;
    }
    
    .contacthero-float {
      padding: 0.5rem 1rem;
      gap: 0.5rem;
    }
    
    .contacthero-float-icon {
      font-size: 1.2rem;
    }
    
    .contacthero-float-label {
      font-size: 0.6rem;
    }
    
    .contacthero-float-value {
      font-size: 0.8rem;
    }
    
    .contacthero-float-1 {
      top: 0%;
      right: 0%;
    }
    
    .contacthero-float-2 {
      bottom: 5%;
      left: 0%;
    }
    
    .contacthero-float-3 {
      display: none;
    }
    
    .contacthero-trust-badge {
      width: 75px;
      height: 75px;
    }
    
    .contacthero-trust-number {
      font-size: 1.5rem;
    }
    
    .contacthero-trust-label {
      font-size: 0.6rem;
    }
    
    .contacthero-strip {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
      padding-top: 2rem;
    }
    
    .contacthero-strip-item {
      padding: 0.3rem;
    }
    
    .contacthero-strip-icon {
      font-size: 1.4rem;
    }
    
    .contacthero-scroll {
      display: none;
    }
    
    .contacthero-badge-line {
      width: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .contacthero-title {
      font-size: 2rem;
    }
    
    .contacthero-image-wrapper {
      max-width: 280px;
    }
    
    .contacthero-strip {
      grid-template-columns: 1fr;
    }
    
    .contacthero-methods {
      gap: 0.8rem;
    }
    
    .contacthero-method {
      padding: 0.6rem 0.8rem;
    }
    
    .contacthero-method-value {
      font-size: 0.9rem;
    }
  }












  /* ============================================ */
/* GET IN TOUCH BANNER - gitb prefix           */
/* ============================================ */

.gitb-section {
    padding: 4rem 2rem;
    position: relative;
    background: var(--dark);
    overflow: hidden;
  }
  
  .gitb-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  
  /* Background */
  .gitb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .gitb-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(230, 57, 70, 0.12), transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(230, 57, 70, 0.06), transparent 50%);
  }
  
  .gitb-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
  }
  
  /* Main Content */
  .gitb-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0 3rem;
  }
  
  /* Left Column */
  .gitb-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
  }
  
  .gitb-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .gitb-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .gitb-accent {
    color: var(--red);
  }
  
  .gitb-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 2.5rem;
  }
  
  .gitb-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .gitb-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  
  .gitb-feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .gitb-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
  }
  
  .gitb-feature p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
  }
  
  /* Right Column - Form */
  .gitb-right {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
  }
  
  .gitb-right:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .gitb-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .gitb-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .gitb-form-group {
    position: relative;
  }
  
  .gitb-form-group input,
  .gitb-form-group select,
  .gitb-form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
  }
  
  .gitb-form-group select {
    appearance: none;
    cursor: pointer;
  }
  
  .gitb-form-group select option {
    background: var(--dark);
  }
  
  .gitb-form-group textarea {
    resize: vertical;
    min-height: 60px;
  }
  
  .gitb-form-group input:focus,
  .gitb-form-group select:focus,
  .gitb-form-group textarea:focus {
    outline: none;
  }
  
  .gitb-form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    pointer-events: none;
    font-size: 0.95rem;
  }
  
  .gitb-form-group input:focus ~ label,
  .gitb-form-group input:not(:placeholder-shown) ~ label,
  .gitb-form-group select:focus ~ label,
  .gitb-form-group select:not([value=""]):valid ~ label,
  .gitb-form-group textarea:focus ~ label,
  .gitb-form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.8rem;
    font-size: 0.75rem;
    color: var(--red);
  }
  
  .gitb-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
  }
  
  .gitb-form-group input:focus ~ .gitb-input-border,
  .gitb-form-group select:focus ~ .gitb-input-border,
  .gitb-form-group textarea:focus ~ .gitb-input-border {
    width: 100%;
  }
  
  .gitb-form-group textarea ~ .gitb-input-border {
    bottom: 2px;
  }
  
  /* Submit Button */
  .gitb-submit-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }
  
  .gitb-submit-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
    gap: 1.5rem;
  }
  
  .gitb-submit-btn:active {
    transform: translateY(0);
  }
  
  .gitb-form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  /* Contact Bar */
  .gitb-contact-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
  }
  
  .gitb-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    border-radius: 8px;
  }
  
  .gitb-contact-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: white;
  }
  
  .gitb-contact-emergency {
    background: rgba(230, 57, 70, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(230, 57, 70, 0.15);
  }
  
  .gitb-contact-emergency:hover {
    background: rgba(230, 57, 70, 0.15);
  }
  
  .gitb-contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .gitb-contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
  }
  
  .gitb-contact-value {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .gitb-contact-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* ============================================ */
  /* RESPONSIVE - gitb                            */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .gitb-title {
      font-size: 2.8rem;
    }
    
    .gitb-content {
      gap: 3rem;
    }
  }
  
  @media (max-width: 992px) {
    .gitb-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 1rem 0 2rem;
    }
    
    .gitb-left {
      text-align: center;
    }
    
    .gitb-description {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .gitb-features {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .gitb-feature {
      flex: 1;
      min-width: 200px;
      justify-content: center;
    }
    
    .gitb-contact-bar {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .gitb-contact-divider {
      display: none;
    }
    
    .gitb-contact-item {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .gitb-section {
      padding: 3rem 1.5rem;
    }
    
    .gitb-title {
      font-size: 2.2rem;
    }
    
    .gitb-right {
      padding: 1.5rem;
    }
    
    .gitb-features {
      flex-direction: column;
      align-items: center;
    }
    
    .gitb-feature {
      width: 100%;
      justify-content: flex-start;
    }
    
    .gitb-contact-bar {
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
      padding-top: 2rem;
    }
    
    .gitb-contact-item {
      padding: 0.8rem;
      justify-content: flex-start;
    }
    
    .gitb-contact-value {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 480px) {
    .gitb-title {
      font-size: 1.8rem;
    }
    
    .gitb-description {
      font-size: 0.95rem;
    }
    
    .gitb-contact-bar {
      grid-template-columns: 1fr;
    }
    
    .gitb-contact-item {
      justify-content: center;
      text-align: center;
    }
    
    .gitb-form-title {
      font-size: 1.3rem;
    }
    
    .gitb-submit-btn {
      padding: 1rem;
      font-size: 0.95rem;
    }
  }












  /* ============================================ */
/* CONTACT INFORMATION - cinfo prefix           */
/* ============================================ */

.cinfo-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .cinfo-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .cinfo-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .cinfo-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .cinfo-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .cinfo-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
  }
  
  /* Contact Grid */
  .cinfo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  /* Contact Cards */
  .cinfo-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .cinfo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .cinfo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(230, 57, 70, 0.1);
  }
  
  .cinfo-card:hover::before {
    opacity: 1;
  }
  
  .cinfo-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
  }
  
  .cinfo-card-icon {
    font-size: 2rem;
  }
  
  .cinfo-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
    flex: 1;
  }
  
  .cinfo-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  /* Address Card */
  .cinfo-address-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cinfo-address-line {
    display: flex;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    color: var(--charcoal-light);
  }
  
  .cinfo-address-label {
    font-weight: 600;
    color: var(--dark);
    min-width: 70px;
  }
  
  .cinfo-map-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(230, 57, 70, 0.03);
    border-radius: 12px;
    color: var(--red);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .cinfo-map-preview:hover {
    background: rgba(230, 57, 70, 0.08);
    gap: 1rem;
  }
  
  /* Phone Card */
  .cinfo-phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream);
  }
  
  .cinfo-phone-item:last-child {
    border-bottom: none;
  }
  
  .cinfo-phone-label {
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  .cinfo-phone-number {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
  }
  
  .cinfo-phone-emergency {
    background: rgba(230, 57, 70, 0.03);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 1px solid rgba(230, 57, 70, 0.05);
  }
  
  .cinfo-phone-emergency .cinfo-phone-label {
    color: var(--red);
    font-weight: 600;
  }
  
  .cinfo-phone-emergency .cinfo-phone-number {
    color: var(--red);
  }
  
  /* Email Card */
  .cinfo-email-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
  }
  
  .cinfo-email-item:last-child {
    border-bottom: none;
  }
  
  .cinfo-email-label {
    font-size: 0.9rem;
    color: var(--gray);
  }
  
  .cinfo-email-address {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
    transition: color 0.3s;
    cursor: pointer;
  }
  
  .cinfo-email-address:hover {
    color: var(--red);
  }
  
  /* Hours Card */
  .cinfo-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
  }
  
  .cinfo-hours-item:last-child {
    border-bottom: none;
  }
  
  .cinfo-hours-day {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
  }
  
  .cinfo-hours-time {
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  .cinfo-hours-emergency {
    background: rgba(230, 57, 70, 0.03);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 1px solid rgba(230, 57, 70, 0.05);
  }
  
  .cinfo-hours-emergency .cinfo-hours-day {
    color: var(--red);
    font-weight: 600;
  }
  
  .cinfo-hours-emergency .cinfo-hours-time {
    color: var(--red);
    font-weight: 500;
  }
  
  /* Quick Contact Strip */
  .cinfo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 2rem;
    background: var(--dark);
    border-radius: 24px;
    color: white;
  }
  
  .cinfo-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    border-radius: 8px;
  }
  
  .cinfo-strip-item:hover {
    background: rgba(255, 255, 255, 0.03);
  }
  
  .cinfo-strip-emergency {
    background: rgba(230, 57, 70, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(230, 57, 70, 0.1);
  }
  
  .cinfo-strip-emergency:hover {
    background: rgba(230, 57, 70, 0.15);
  }
  
  .cinfo-strip-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .cinfo-strip-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
  }
  
  .cinfo-strip-value {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .cinfo-strip-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* ============================================ */
  /* RESPONSIVE - cinfo                           */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .cinfo-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .cinfo-strip {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .cinfo-strip-divider {
      display: none;
    }
  }
  
  @media (max-width: 992px) {
    .cinfo-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .cinfo-section {
      padding: 4rem 1.5rem;
    }
    
    .cinfo-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .cinfo-title {
      font-size: 2rem;
    }
    
    .cinfo-card {
      padding: 1.5rem;
    }
    
    .cinfo-phone-item,
    .cinfo-email-item,
    .cinfo-hours-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.3rem;
    }
    
    .cinfo-address-line {
      flex-direction: column;
      gap: 0.2rem;
    }
    
    .cinfo-address-label {
      min-width: auto;
    }
    
    .cinfo-strip {
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
      padding: 1.5rem;
    }
    
    .cinfo-strip-item {
      padding: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .cinfo-title {
      font-size: 1.8rem;
    }
    
    .cinfo-strip {
      grid-template-columns: 1fr;
      gap: 0.5rem;
      padding: 1rem;
    }
    
    .cinfo-strip-item {
      justify-content: center;
      text-align: center;
    }
    
    .cinfo-card-header h3 {
      font-size: 1.1rem;
    }
    
    .cinfo-email-address {
      font-size: 0.85rem;
      word-break: break-all;
    }
    
    .cinfo-phone-number {
      font-size: 0.85rem;
    }
  }











  /* ============================================ */
/* CONTACT US - cnt prefix                      */
/* ============================================ */

.cnt-section {
    padding: 6rem 2rem;
    background: var(--cream);
    position: relative;
  }
  
  .cnt-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Page Header */
  .cnt-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .cnt-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .cnt-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .cnt-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Contact Grid */
  .cnt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  /* Left Column - Contact Info */
  .cnt-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .cnt-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.05);
  }
  
  .cnt-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
  }
  
  .cnt-contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream);
  }
  
  .cnt-contact-item:last-child {
    border-bottom: none;
  }
  
  .cnt-contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  
  .cnt-contact-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .cnt-contact-item p {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.2rem;
  }
  
  .cnt-contact-sub {
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  /* Social Links */
  .cnt-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .cnt-social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: var(--cream);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
  }
  
  .cnt-social-link:hover {
    background: var(--red);
    color: white;
    transform: translateX(5px);
  }
  
  .cnt-social-icon {
    font-size: 1.4rem;
  }
  
  /* Emergency CTA */
  .cnt-card-emergency {
    background: var(--dark);
    color: white;
    border: none;
  }
  
  .cnt-emergency-content {
    text-align: center;
  }
  
  .cnt-emergency-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .cnt-emergency-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  
  .cnt-emergency-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .cnt-emergency-btn {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .cnt-emergency-btn:hover {
    background: var(--red-dark);
    transform: scale(1.05);
  }
  
  .cnt-emergency-phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
  }
  
  .cnt-emergency-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-top: 0.3rem;
  }
  
  /* Right Column - Contact Form */
  .cnt-form-wrapper {
    display: flex;
    align-items: flex-start;
  }
  
  .cnt-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    width: 100%;
  }
  
  .cnt-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .cnt-form-card p {
    color: var(--gray);
    margin-bottom: 2rem;
  }
  
  .cnt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .cnt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .cnt-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .cnt-form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
  }
  
  .cnt-form-group input,
  .cnt-form-group select,
  .cnt-form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--cream);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--cream);
  }
  
  .cnt-form-group input:focus,
  .cnt-form-group select:focus,
  .cnt-form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: white;
  }
  
  .cnt-submit-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }
  
  .cnt-submit-btn:hover {
    background: var(--red-dark);
    gap: 1.5rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.25);
  }
  
  /* ============================================ */
  /* SERVICE AREAS - sra prefix                   */
  /* ============================================ */
  
  .sra-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(230, 57, 70, 0.05);
  }
  
  .sra-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .sra-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .sra-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .sra-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
  }
  
  /* Interactive Map */
  .sra-map-container {
    margin-bottom: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .sra-map {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--dark);
    overflow: hidden;
  }
  
  .sra-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
  }
  
  /* Map Pins */
  .sra-pin {
    position: absolute;
    cursor: pointer;
    animation: sraPinPulse 2s ease-in-out infinite;
  }
  
  .sra-pin:hover .sra-pin-label {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  
  .sra-pin-dot {
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
    position: relative;
    z-index: 2;
  }
  
  .sra-pin-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.2);
    animation: sraPinRing 2s ease-in-out infinite;
  }
  
  .sra-pin-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
    margin-bottom: 8px;
    pointer-events: none;
  }
  
  .sra-pin-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(26, 26, 46, 0.95);
  }
  
  @keyframes sraPinPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
  
  @keyframes sraPinRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
  }
  
  /* Pin Positions */
  .sra-pin-1 { top: 38%; left: 48%; }
  .sra-pin-2 { top: 55%; left: 78%; }
  .sra-pin-3 { top: 30%; left: 22%; }
  .sra-pin-4 { top: 30%; left: 55%; }
  .sra-pin-5 { top: 20%; left: 35%; }
  .sra-pin-6 { top: 42%; left: 58%; }
  .sra-pin-7 { top: 58%; left: 75%; }
  .sra-pin-8 { top: 22%; left: 62%; }
  
  /* Map Legend */
  .sra-legend {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .sra-legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
  }
  
  .sra-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid white;
  }
  
  .sra-legend-dot-regional {
    background: #FFA500;
  }
  
  .sra-legend-dot-service {
    background: #4CAF50;
  }
  
  /* Regions Grid */
  .sra-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .sra-region-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    transition: all 0.3s;
  }
  
  .sra-region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--red);
  }
  
  .sra-region-card.sra-region-main {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: white;
    border-color: var(--red);
  }
  
  .sra-region-card.sra-region-main .sra-region-type {
    color: var(--red);
  }
  
  .sra-region-card.sra-region-main .sra-region-desc {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .sra-region-card.sra-region-main .sra-region-contact {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .sra-region-card.sra-region-main .sra-status-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .sra-region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .sra-region-icon {
    font-size: 2rem;
  }
  
  .sra-region-header h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
  }
  
  .sra-region-type {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
  }
  
  .sra-region-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .sra-region-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  
  .sra-region-status {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .sra-status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border-radius: 50px;
  }
  
  /* Extra Service Areas */
  .sra-extra {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.05);
    margin-bottom: 3rem;
  }
  
  .sra-extra-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .sra-extra-icon {
    font-size: 2rem;
  }
  
  .sra-extra-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
  }
  
  .sra-extra-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .sra-extra-tag {
    padding: 0.4rem 1.2rem;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--dark);
    transition: all 0.3s;
    cursor: default;
  }
  
  .sra-extra-tag:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
  }
  
  .sra-extra-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
  }
  
  .sra-extra-flag {
    font-size: 2rem;
  }
  
  .sra-extra-badge {
    background: var(--red);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  /* Service Coverage CTA */
  .sra-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
    padding: 2rem 3rem;
    border-radius: 20px;
    color: white;
  }
  
  .sra-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .sra-cta-icon {
    font-size: 3rem;
  }
  
  .sra-cta-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .sra-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
  }
  
  .sra-cta-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .sra-cta-btn:hover {
    background: var(--red-dark);
    gap: 1.5rem;
    transform: translateY(-2px);
  }
  
  /* ============================================ */
  /* RESPONSIVE - cnt & sra                       */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .cnt-grid {
      grid-template-columns: 1fr;
    }
    
    .sra-regions {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .cnt-title {
      font-size: 2.8rem;
    }
    
    .sra-title {
      font-size: 2.2rem;
    }
    
    .sra-map {
      height: 400px;
    }
    
    .sra-pin-label {
      font-size: 0.65rem;
      padding: 0.2rem 0.6rem;
    }
  }
  
  @media (max-width: 768px) {
    .cnt-section {
      padding: 4rem 1rem;
    }
    
    .cnt-title {
      font-size: 2.2rem;
    }
    
    .cnt-form-row {
      grid-template-columns: 1fr;
    }
    
    .cnt-social {
      grid-template-columns: 1fr;
    }
    
    .sra-title {
      font-size: 1.8rem;
    }
    
    .sra-map {
      height: 300px;
    }
    
    .sra-pin {
      display: none;
    }
    
    .sra-legend {
      display: none;
    }
    
    .sra-regions {
      grid-template-columns: 1fr;
    }
    
    .sra-extra-grid {
      gap: 0.5rem;
    }
    
    .sra-extra-tag {
      font-size: 0.8rem;
      padding: 0.3rem 0.8rem;
    }
    
    .sra-cta {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
      padding: 2rem;
    }
    
    .sra-cta-content {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .cnt-title {
      font-size: 1.8rem;
    }
    
    .sra-title {
      font-size: 1.5rem;
    }
    
    .sra-map {
      height: 220px;
    }
    
    .cnt-card {
      padding: 1.5rem;
    }
    
    .cnt-form-card {
      padding: 1.5rem;
    }
    
    .sra-extra-note {
      flex-wrap: wrap;
    }
  }













  /* ============================================ */
/* WHY CONTACT US - whycus prefix               */
/* ============================================ */

.whycus-section {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .whycus-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Section Header */
  .whycus-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .whycus-tag {
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  
  .whycus-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .whycus-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Benefits Grid */
  .whycus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .whycus-card {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
  }
  
  .whycus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  
  .whycus-card:hover::before {
    opacity: 1;
  }
  
  .whycus-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.08);
  }
  
  .whycus-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s;
  }
  
  .whycus-card:hover .whycus-card-icon {
    transform: scale(1.1);
  }
  
  .whycus-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }
  
  .whycus-card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .whycus-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--red);
  }
  
  /* Highlight cards for specific benefits */
  .whycus-card:nth-child(1) .whycus-card-tag { background: rgba(76, 175, 80, 0.1); color: #2E7D32; }
  .whycus-card:nth-child(2) .whycus-card-tag { background: rgba(33, 150, 243, 0.1); color: #1565C0; }
  .whycus-card:nth-child(3) .whycus-card-tag { background: rgba(255, 152, 0, 0.1); color: #E65100; }
  .whycus-card:nth-child(4) .whycus-card-tag { background: rgba(156, 39, 176, 0.1); color: #6A1B9A; }
  .whycus-card:nth-child(5) .whycus-card-tag { background: rgba(0, 150, 136, 0.1); color: #00695C; }
  .whycus-card:nth-child(6) .whycus-card-tag { background: rgba(255, 193, 7, 0.1); color: #F57F17; }
  .whycus-card:nth-child(7) .whycus-card-tag { background: rgba(244, 67, 54, 0.1); color: #C62828; }
  .whycus-card:nth-child(8) .whycus-card-tag { background: rgba(96, 125, 139, 0.1); color: #37474F; }
  .whycus-card:nth-child(9) .whycus-card-tag { background: rgba(233, 30, 99, 0.1); color: #880E4F; }
  .whycus-card:nth-child(10) .whycus-card-tag { background: rgba(0, 188, 212, 0.1); color: #006064; }
  
  /* Trust Badges */
  .whycus-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    background: var(--dark);
    border-radius: 20px;
    margin-bottom: 3rem;
  }
  
  .whycus-trust-item {
    text-align: center;
    color: white;
  }
  
  .whycus-trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  
  .whycus-trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* CTA Banner */
  .whycus-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 2.5rem 3rem;
    border-radius: 20px;
    color: white;
  }
  
  .whycus-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .whycus-cta-icon {
    font-size: 3rem;
  }
  
  .whycus-cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  .whycus-cta-content p {
    opacity: 0.9;
    font-size: 1rem;
  }
  
  .whycus-cta-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .whycus-cta-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .whycus-cta-btn.primary {
    background: white;
    color: var(--red);
  }
  
  .whycus-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .whycus-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .whycus-cta-btn.secondary:hover {
    background: white;
    color: var(--red);
    border-color: white;
    transform: translateY(-3px);
  }
  
  /* ============================================ */
  /* RESPONSIVE - whycus                          */
  /* ============================================ */
  
  @media (max-width: 1200px) {
    .whycus-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .whycus-trust {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .whycus-title {
      font-size: 2.5rem;
    }
    
    .whycus-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .whycus-cta {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
      padding: 2rem;
    }
    
    .whycus-cta-content {
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .whycus-section {
      padding: 4rem 1rem;
    }
    
    .whycus-title {
      font-size: 2rem;
    }
    
    .whycus-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .whycus-trust {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      padding: 2rem;
    }
    
    .whycus-trust-number {
      font-size: 2rem;
    }
    
    .whycus-cta-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .whycus-cta-btn {
      justify-content: center;
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .whycus-title {
      font-size: 1.6rem;
    }
    
    .whycus-subtitle {
      font-size: 0.95rem;
    }
    
    .whycus-trust {
      grid-template-columns: 1fr 1fr;
      padding: 1.5rem;
    }
    
    .whycus-trust-number {
      font-size: 1.6rem;
    }
    
    .whycus-trust-label {
      font-size: 0.75rem;
    }
    
    .whycus-cta {
      padding: 1.5rem;
    }
    
    .whycus-cta-content h3 {
      font-size: 1.4rem;
    }
  }