/* ===== DARK CORPORATE BAR ===== */

.panel-row-style {
  position: relative;
}

/* Cards */
.panel-grid-cell .so-widget-sow-editor {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all .35s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Hover subtle engineering feel */
.panel-grid-cell .so-widget-sow-editor:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Icon */
.contact-icon {
  font-size: 30px;
  color: #005bbb; /* Daikin Blue */
  margin-bottom: 18px;
  display: block;
}

/* Titles */
.panel-grid-cell h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: 0.5px;
}

/* Text */
.panel-grid-cell p {
  font-size: 15px;
  color: #475569;
}

/* Emergency */
.emergency-icon {
  color: #dc2626;
}

.emergency-text {
  font-weight: 700;
  color: #dc2626;
  font-size: 17px;
}

/* Responsive */
@media(max-width:768px){
  .panel-grid-cell{
    width:100% !important;
    margin-bottom:20px;
  }
}


/* General Titles */
.contact-hero-title {
  font-size: 32px;
  font-weight:700;
  text-align:center;
  color:#111827;
  margin-bottom:8px;
}
.contact-hero-subtitle {
  text-align:center;
  font-size:16px;
  color:#4b5563;
  margin-bottom:32px;
}

/* Dark Corporate Contact Bar */
.premium-contact-bar {
  background:#0f172a;
  padding:60px 0;
}
.contact-container {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:space-between;
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}
.contact-card {
  background:#ffffff;
  flex:1 1 230px;
  padding:30px 22px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:all .35s ease;
}
.contact-card:hover {
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}
.contact-icon {
  font-size:28px;
  color:#005bbb;
  margin-bottom:14px;
}
.contact-card h4 {
  font-size:17px;
  font-weight:600;
  margin-bottom:6px;
  color:#111827;
}
.contact-card p {
  font-size:15px;
  color:#475569;
}
.emergency-icon {
  color:#dc2626;
}
.emergency-text {
  font-weight:700;
  color:#dc2626;
  font-size:16px;
}

/* Trust Strip */
.contact-trust-strip {
  text-align:center;
  margin-top:36px;
  font-size:15px;
  color:#374151;
}

/* Mobile CTA */
.mobile-cta-call {
  display:none;
}
@media (max-width:768px){
  .mobile-cta-call {
    display:block;
    position:fixed;
    bottom:20px;
    left:0;
    width:100%;
    text-align:center;
    z-index:999;
  }
  .mobile-cta-call a {
    background:#005bbb;
    color:#fff;
    font-size:18px;
    padding:14px 0;
    display:block;
    font-weight:600;
    text-decoration:none;
    border-radius:8px;
  }
}

/* Responsive Cards */
@media(max-width:992px){
  .contact-card{
    flex:1 1 45%;
  }
}
@media (max-width:600px){
  .contact-card{
    flex:1 1 100%;
    margin-bottom:16px;
  }
}
/* ===== WHY CHOOSE US SECTION ===== */

#page .contact-values {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  max-width: 750px;
}

#page .contact-values li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

#page .contact-values li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #005bbb; /* corporate Daikin-style blue */
  font-weight: 700;
}

#page h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

/* Responsive scaling */
@media (max-width:992px) {
  #page .contact-values li {
    font-size: 15px;
  }
}