/* company-contact-static.css */
* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: var(--font);
      color: #334155;
      background-color: #ffffff;
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }/* Layout: Split (Map left + Info right) */
    .co-split {
      display: flex;
      min-height: 500px;
    }
    .split-map {
      flex: 1.2;
      background: #f1f5f9;
    }
    .split-map iframe {
      width: 100%;
      height: 100%;
      min-height: 500px;
      border: 0;
      display: block;
    }
    .split-info {
      flex: 1;
      padding: 4rem 3rem;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .section-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 2rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background: var(--primary);
      position: absolute;
      bottom: 0;
      left: 0;
      border-radius: 2px;
    }

    /* Layout: Grid (Cards + full width map below) */
    .detail-body {
      max-width: var(--content-width);
      margin: 4rem auto;
      padding: 0 1.5rem;
    }
    .map-section {
      margin-top: 4.5rem;
    }
    .map-section .section-title {
      margin-bottom: 1.5rem;
    }
    .map-frame {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      background: #f1f5f9;
    }
    .map-frame iframe {
      width: 100%;
      height: 450px;
      border: 0;
      display: block;
    }

    /* Contact info list grid cards */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .contact-card {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .contact-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    .contact-card.wide {
      grid-column: span 2;
    }
    .cc-icon {
      width: 44px;
      height: 44px;
      background: var(--primary);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
    }
    .line-icon.cc-icon {
      font-weight: 800;
      font-size: 1.2rem;
      background: #06c755;
      box-shadow: 0 4px 10px rgba(6, 199, 85, 0.15);
    }
    .cc-body {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .cc-label {
      font-size: 0.8rem;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .cc-value {
      font-size: 1rem;
      font-weight: 600;
      color: #334155;
      word-break: break-word;
    }
    a.cc-value {
      color: #1e293b;
      transition: color 0.18s;
    }
    a.cc-value:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    /* Scroll top button */
    .scroll-top-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--primary);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
      transition: opacity 0.2s, transform 0.2s;
      opacity: 0;
      pointer-events: none;
    }
    .scroll-top-btn.visible {
      opacity: 1;
      pointer-events: all;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .co-split {
        flex-direction: column;
      }
      .split-info {
        padding: 3rem 1.5rem;
      }
      .split-map iframe {
        min-height: 350px;
      }
    }
    @media (max-width: 768px) {
      .navbar-links {
        display: none;
      }
      .navbar-hamburger {
        display: block;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .contact-card.wide {
        grid-column: span 1;
      }
    }