/* CSS reset and base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --red-primary: #8B0000;
      --red-mid: #B22222;
      --red-dark: #5C0000;
      --red-shadow: #2C0000;
      --white: #FFFFFF;
      --off-white: #FDF5F5;
      --light-grey: #F4EEEE;
      --text-dark: #1A0000;
      --text-mid: #4A1010;
      --text-muted: #888888;
      --border: rgba(139,0,0,0.20);
      --red-glow: 0 4px 24px rgba(139,0,0,0.18);
      
      --font-heading: 'Cormorant Garamond', serif;
      --font-nav: 'Montserrat', sans-serif;
      --font-body: 'Lato', sans-serif;
    }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--red-primary);
    }
    a { text-decoration: none; }
    ul { list-style: none; }
    .btn {
      font-family: var(--font-nav);
      display: inline-block;
      text-align: center;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
      padding: 12px 24px;
      font-size: 13px;
      border: 1px solid transparent;
    }
    .btn-red-solid { background-color: var(--red-primary); color: var(--white); border-color: var(--red-primary); }
    .btn-red-solid:hover { background-color: var(--red-mid); border-color: var(--red-mid); }
    .btn-red-outline { background-color: transparent; color: var(--red-primary); border-color: var(--red-primary); }
    .btn-red-outline:hover { background-color: var(--red-primary); color: var(--white); }
    .btn-white-solid { background-color: var(--white); color: var(--red-primary); border-color: var(--white); }
    .btn-white-solid:hover { box-shadow: var(--red-glow); transform: translateY(-2px); }
    .btn-white-outline { background-color: transparent; color: var(--white); border-color: var(--white); }
    .btn-white-outline:hover { background-color: var(--white); color: var(--red-primary); }

    /* Common Section Styles */
    section { padding: 80px 5%; }
    .section-header { text-align: center; margin-bottom: 50px; }
    .section-title { font-size: 44px; font-weight: 700; margin-bottom: 20px; }
    .section-title.white { color: var(--white); }
    .section-divider { width: 60px; height: 3px; background-color: var(--red-primary); margin: 0 auto; }
    .section-divider.white { background-color: rgba(255,255,255,0.4); }

    /* Navigation */
    .navbar {
      position: fixed; top: 0; left: 0; width: 100%; background-color: var(--white);
      border-bottom: 2px solid var(--red-primary); z-index: 1000; transition: box-shadow 0.3s ease;
      display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; 
    }
    .navbar.scrolled { box-shadow: 0 2px 20px rgba(139,0,0,0.10); }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: auto; max-height: 120px; display: block; }
    
    /* Navbar Logo Image */
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo-img { width: 256px; height: auto; object-fit: contain; flex-shrink: 0; }
    .nav-logo-text { display: none; }
    @media (max-width: 768px) {
      .nav-logo-img { width: 144px; height: auto; }
    }

    .nav-links { display: flex; gap: 30px; }
    .nav-links a {
      font-family: var(--font-nav); font-size: 13px; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--text-dark); position: relative;
      font-weight: 500; padding-bottom: 5px; transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: ''; position: absolute; width: 0; height: 2px;
      bottom: 0; left: 0; background-color: var(--red-primary); transition: width 0.3s ease;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--red-primary); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a.active { font-weight: 700; }
    .nav-ctas { display: flex; gap: 15px; }
    .hamburger { display: none; font-size: 24px; color: var(--red-primary); cursor: pointer; }

    /* Mobile Nav */
    .mobile-nav-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
      background-color: var(--white); z-index: 1001; display: flex;
      flex-direction: column; justify-content: center; align-items: center;
      transform: translateX(100%); transition: transform 0.4s ease;
    }
    .mobile-nav-overlay.open { transform: translateX(0); }
    .mobile-nav-overlay a { font-family: var(--font-nav); font-size: 20px; color: var(--red-primary); margin: 15px 0; text-transform: uppercase; letter-spacing: 2px; }
    .mobile-nav-close { position: absolute; top: 25px; right: 5%; font-size: 30px; color: var(--red-primary); cursor: pointer; }

    /* Section 1 - Page Hero */
    .contact-hero {
      position: relative;
      height: 60vh;
      min-height: 380px;
      margin-top: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding: 0 5%;
    }
    .ch-bg {
      position: absolute;
      inset: 0;
      background: url('../img/contact-hero.jpg') center/cover no-repeat;
      transform: scale(1.05);
      transition: transform 8s ease;
      z-index: 1;
    }
    .contact-hero:hover .ch-bg { transform: scale(1); }
    .ch-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(44,0,0,0.75) 0%, rgba(139,0,0,0.55) 100%);
      z-index: 2;
    }
    .ch-content { position: relative; z-index: 3; }
    .ch-eyebrow {
      font-family: var(--font-nav);
      font-size: 11px;
      letter-spacing: 5px;
      color: rgba(255,255,255,0.70);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }
    .breadcrumb { font-family: var(--font-nav); font-size: 12px; color: rgba(255,255,255,0.60); margin-bottom: 15px; letter-spacing: 1px; }
    .breadcrumb a { color: var(--white); }
    .breadcrumb span { margin: 0 8px; }
    .contact-hero h1 {
      font-size: 66px;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 18px;
      line-height: 1.05;
    }
    .contact-hero h1 span { color: rgba(255,200,200,0.90); }
    .hero-divider { width: 80px; height: 3px; background-color: rgba(255,255,255,0.45); margin: 0 auto 18px auto; }
    .contact-hero p {
      font-family: var(--font-heading);
      font-style: italic;
      font-size: 20px;
      color: rgba(255,255,255,0.85);
    }

    /* Section 2 - 4 Quick Action Cards */
    .quick-actions-wrap {
      position: relative;
      z-index: 10;
      background-color: transparent;
      padding: 0 5%;
    }
    .qa-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1100px;
      margin: -50px auto 40px auto; /* Pulled up -50px */
    }
    .qa-card {
      background-color: var(--white);
      box-shadow: var(--red-glow);
      border-radius: 8px;
      border-top: 5px solid var(--red-primary);
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .qa-card:hover {
      transform: translateY(-8px);
      border-top-color: var(--red-mid);
    }
    .qa-icon { font-size: 48px; color: var(--red-primary); margin-bottom: 15px; line-height: 1; }
    .qa-title { font-size: 24px; color: var(--text-dark); margin-bottom: 10px; }
    .qa-detail { font-family: var(--font-nav); font-size: 16px; color: var(--red-primary); font-weight: 700; margin-bottom: 5px; }
    .qa-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
    .qa-card .btn { width: 100%; padding: 12px 0; }

    /* Section 3 - Contact Form + Map Split */
    .split-section { background-color: var(--off-white); }
    .split-container {
      display: flex; gap: 40px; max-width: 1200px; margin: 0 auto;
    }
    
    /* Left Form */
    .form-panel {
      flex: 0 0 55%;
      background-color: var(--white);
      border-top: 5px solid var(--red-primary);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      padding: 40px;
      border-radius: 6px;
    }
    .form-panel h2 { font-size: 32px; color: var(--red-primary); margin-bottom: 5px; }
    .form-panel > p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
    
    .c-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
    .c-form .form-group { flex: 1; display: flex; flex-direction: column; }
    .c-form .form-group.full { width: 100%; flex: none; margin-bottom: 20px; }
    
    .c-form label { font-family: var(--font-nav); font-size: 12px; color: var(--text-dark); font-weight: 600; margin-bottom: 8px; display: block; }
    .c-form input, .c-form select, .c-form textarea {
      width: 100%; padding: 12px 15px; font-family: var(--font-body); font-size: 14px;
      border: 1px solid var(--border); border-radius: 4px; background-color: var(--white);
      color: var(--text-dark); outline: none; transition: border-color 0.3s;
    }
    .c-form input:focus, .c-form select:focus, .c-form textarea:focus { border-color: var(--red-primary); }
    .c-form textarea { resize: vertical; min-height: 100px; }
    
    /* Custom Checkbox */
    .checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; }
    .checkbox-group input[type="checkbox"] {
      width: 18px; height: 18px; accent-color: var(--red-primary); cursor: pointer; margin-top: 2px;
    }
    .checkbox-group label { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); font-weight: 400; margin: 0; cursor: pointer; }
    
    .c-form .btn-submit { width: 100%; padding: 15px; font-size: 14px; border: none; }
    
    .error-msg { font-size: 12px; color: var(--red-primary); margin-top: 5px; display: none; }
    .has-error input, .has-error select, .has-error textarea { border-color: var(--red-primary); }
    .has-error .error-msg { display: block; }
    
    .form-success { display: none; text-align: center; padding: 40px 20px; }
    .form-success-icon { color: #2E7D32; font-size: 48px; margin-bottom: 15px; }
    .form-success h3 { font-size: 26px; color: var(--text-dark); margin-bottom: 10px; }
    .form-success p { font-size: 14px; color: var(--text-mid); }

    /* Right Map Panel */
    .map-panel {
      flex: 0 0 calc(45% - 40px);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .map-graphic {
      height: 400px;
      background-color: var(--light-grey);
      border: 1px solid var(--border);
      border-radius: 8px;
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .map-grid {
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background-image: 
        linear-gradient(rgba(139,0,0,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,0,0,0.10) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    .map-dot {
      width: 16px; height: 16px;
      background-color: var(--red-primary);
      border-radius: 50%;
      position: relative;
      z-index: 5;
    }
    .map-dot::before {
      content: ''; position: absolute; top: -12px; left: -12px;
      width: 40px; height: 40px; background-color: var(--red-primary);
      border-radius: 50%; opacity: 0.4; animation: pulse-pin 2s infinite;
    }
    @keyframes pulse-pin {
      0% { transform: scale(0.5); opacity: 0.8; }
      100% { transform: scale(2.5); opacity: 0; }
    }
    .map-tooltip {
      position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
      background-color: var(--white); color: var(--red-primary);
      font-family: var(--font-nav); font-size: 12px; font-weight: 700;
      padding: 6px 12px; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      white-space: nowrap; z-index: 10;
    }
    .map-tooltip::after {
      content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
      border-left: 6px solid transparent; border-right: 6px solid transparent;
      border-top: 6px solid var(--white);
    }
    .map-watermark {
      position: absolute; bottom: 15px; right: 15px;
      font-family: var(--font-nav); font-size: 11px; color: var(--text-muted);
      letter-spacing: 2px; z-index: 5;
    }
    
    .address-card {
      background-color: var(--white);
      border-left: 4px solid var(--red-primary);
      border-radius: 0 8px 8px 0;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .ac-title { font-family: var(--font-nav); font-size: 13px; color: var(--red-primary); letter-spacing: 1px; font-weight: 700; margin-bottom: 10px; }
    .ac-content { font-size: 14px; color: var(--text-dark); line-height: 1.6; }
    .ac-content strong { color: var(--text-dark); }
    .ac-phone { margin-top: 8px; font-family: var(--font-nav); font-size: 13px; color: var(--red-primary); font-weight: 600; display: block; }

    /* Section 4 - Multi-City Offices */
    .offices-section { background-color: var(--red-primary); padding: 80px 5%; }
    .offices-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto;
    }
    .office-card {
      background-color: var(--white); border-radius: 8px; padding: 24px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: 2px solid transparent;
      transition: all 0.3s ease;
    }
    .office-card:hover { border-color: var(--red-primary); transform: translateY(-5px); }
    .oc-city { font-size: 24px; color: var(--red-primary); margin-bottom: 10px; }
    .oc-address { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.5; min-height: 42px; }
    .oc-actions { display: flex; flex-direction: column; gap: 10px; }
    .oc-call { font-family: var(--font-nav); font-size: 13px; color: var(--red-primary); font-weight: 700; display: flex; align-items: center; gap: 8px; }
    .oc-wa { font-family: var(--font-nav); font-size: 13px; color: var(--text-dark); font-weight: 500; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
    .oc-wa:hover { color: var(--red-mid); }

    /* Section 5 - Schedule a Callback */
    .callback-section { background-color: var(--white); }
    .callback-card {
      max-width: 800px; margin: 0 auto; background-color: var(--white);
      border-top: 5px solid var(--red-primary); box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border-radius: 8px; padding: 50px 40px; text-align: center;
    }
    .cb-title { font-size: 30px; color: var(--red-primary); margin-bottom: 10px; }
    .cb-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
    .cb-form-inline { display: flex; gap: 15px; }
    .cb-form-inline input, .cb-form-inline select {
      flex: 1; padding: 12px 15px; font-family: var(--font-body); font-size: 14px;
      border: 1px solid var(--border); border-radius: 4px; outline: none;
    }
    .cb-form-inline input:focus, .cb-form-inline select:focus { border-color: var(--red-primary); }
    .cb-btn { flex: 0 0 auto; padding: 12px 25px; border: none; font-size: 13px; }
    .cb-success { display: none; margin-top: 20px; color: #2E7D32; font-family: var(--font-nav); font-size: 14px; font-weight: 600; }

    /* Section 6 - Social Media Links */
    .social-section { background-color: var(--off-white); }
    .social-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
    .social-card {
      background-color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-radius: 8px; padding: 30px 15px; text-align: center;
      transition: all 0.3s ease; border: 1px solid transparent; display: block;
    }
    .social-card:hover { transform: translateY(-5px); border-color: var(--red-primary); }
    .sc-icon { font-size: 40px; margin-bottom: 15px; display: block; line-height: 1; }
    .sc-name { font-family: var(--font-nav); font-size: 14px; color: var(--text-dark); font-weight: 700; margin-bottom: 5px; display: block; }
    .sc-desc { font-size: 13px; color: var(--text-muted); display: block; }

    /* CTA Banner & Footer */
    .cta-banner { background-color: var(--red-dark); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 15px); }
    .cta-content { position: relative; z-index: 2; }
    .cta-banner h2 { font-size: 44px; color: var(--white); margin-bottom: 15px; }
    .cta-banner p { font-size: 16px; color: rgba(255,255,255,0.80); margin-bottom: 30px; }
    .cta-btns { display: flex; justify-content: center; gap: 15px; }

    .footer { background-color: var(--red-shadow); color: var(--white); border-top: 4px solid var(--red-primary); }
    .footer-top { padding: 60px 5%; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
    .footer-col h4 { font-family: var(--font-nav); font-size: 12px; color: var(--red-mid); letter-spacing: 3px; margin-bottom: 20px; }
    .footer-brand .logo-text-1 { color: var(--white); }
    .footer-brand .logo-text-2 { color: var(--red-mid); }
    .footer-tagline { font-family: var(--font-heading); font-size: 16px; font-style: italic; margin-top: 10px; margin-bottom: 15px; }
    .footer-desc { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }
    .social-links { display: flex; gap: 15px; }
    .social-links a { color: var(--white); font-size: 13px; font-family: var(--font-nav); transition: color 0.3s; }
    .social-links a:hover { color: var(--red-mid); }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a, .footer-col .contact-info p, .footer-col .contact-info a { font-size: 14px; color: var(--white); transition: color 0.3s; }
    .footer-col ul a:hover, .footer-col .contact-info a:hover { color: var(--red-mid); }
    .contact-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
    .footer-bottom { background-color: var(--text-dark); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 12px; color: var(--text-muted); }
    .footer-links a { font-size: 12px; color: var(--red-mid); margin-left: 15px; }
    .footer-links a:hover { color: var(--white); }

    .fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; }
    .fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; box-shadow: 0 4px 16px rgba(139,0,0,0.40); transition: transform 0.3s ease; text-decoration: none; position: relative; }
    .fab:hover { transform: scale(1.10); }
    .fab-call { background-color: var(--red-primary); }
    .fab-wa { background-color: var(--red-mid); }
    .pulse-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--red-mid); animation: pulse 2s infinite; }
    @keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

    /* Responsive */
    @media (max-width: 1024px) {
      .qa-grid { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
      .split-container { flex-direction: column; }
      .form-panel, .map-panel { flex: none; width: 100%; }
      .offices-grid { grid-template-columns: repeat(2, 1fr); }
      .social-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-ctas { display: none; }
      .hamburger { display: block; }
      .contact-hero { height: 50vh; }
      .contact-hero h1 { font-size: 42px; }
      .contact-hero p { font-size: 17px; }
      .qa-grid { grid-template-columns: 1fr; }
      .c-form .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
      .c-form .form-group { margin-bottom: 20px; }
      .offices-grid { grid-template-columns: 1fr; }
      .cb-form-inline { flex-direction: column; }
      .social-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .cta-btns { flex-direction: column; }
      .form-panel { padding: 30px 20px; }
      .callback-card { padding: 40px 20px; }
    }
