/**
 * Premium refinements — loaded last so these rules win the cascade over
 * style.css / responsive.css (see inc/enqueue.php, enqueued as a dependent
 * of validus-responsive). Covers: footer "View More Services" link, the
 * redesigned About intro section, a lighter Services treatment, the new
 * Projects gallery + lightbox, a refreshed Contact info column, and a more
 * compact FAQ accordion (both homepage and contact-page variants).
 *
 * @package Validus_Plumbing
 */

/* ==========================================================================
   1. Footer — View More Services
   ========================================================================== */
.footer-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.2px;
  transition: 0.3s;
}
.footer-view-more i {
  font-size: 12px;
  transition: transform 0.3s;
}
.footer-view-more:hover {
  color: #fff;
  gap: 12px;
}
.footer-view-more:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   2. About — Intro section
   ========================================================================== */
.about-intro {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-intro-media {
  position: relative;
  padding: 30px 30px 60px 0;
}
.about-intro-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-intro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro-frame-a {
  aspect-ratio: 4 / 5;
  box-shadow: 0 35px 70px rgba(18, 18, 18, 0.14);
}
.about-intro-frame-b {
  position: absolute;
  right: -10px;
  bottom: 20px;
  width: 46%;
  aspect-ratio: 1 / 1;
  border: 6px solid #fff;
  box-shadow: 0 25px 50px rgba(18, 18, 18, 0.18);
}
.about-intro-years {
  position: absolute;
  left: -20px;
  top: 10px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(18, 18, 18, 0.2);
}
.about-intro-years-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}
.about-intro-years-num span {
  font-size: 20px;
}
.about-intro-years-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
}
.about-intro-content {
  padding-right: 10px;
}
.about-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.about-intro-eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}
.about-intro-heading {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 24px;
}
.about-intro-heading em {
  font-style: normal;
  color: var(--primary);
}
.about-intro-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 16px;
}
.about-intro-content > p {
  font-size: 16px;
  line-height: 1.85;
  color: #6b7280;
  margin-bottom: 30px;
}
.about-intro-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.about-intro-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}
.about-intro-list-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(36, 229, 142, 0.1);
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
}
.about-intro-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.about-intro-call {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-intro-call-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.about-intro-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.about-intro-call-text small {
  font-size: 12px;
  color: #9ca3af;
}
.about-intro-call-text strong {
  font-size: 16px;
  color: var(--dark);
}

@media (max-width: 991px) {
  .about-intro {
    padding: 70px 0;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-intro-media {
    padding: 0 20px 50px 0;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-intro-content {
    padding-right: 0;
  }
  .about-intro-heading {
    font-size: 32px;
  }
  .about-intro-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   3. Services — lighter, more refined treatment
   ========================================================================== */
.service-card,
.service-grid-card {
  border-radius: var(--radius-md);
  border: 1px solid #eef1f0;
  box-shadow: none;
  font-weight: 400;
}
.service-grid-card::before {
  display: none;
}
.service-card:hover,
.service-grid-card:hover {
  border-color: rgba(36, 229, 142, 0.35);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.06);
  transform: translateY(-4px);
}
.service-card h4,
.service-card h5,
.service-grid-card h4,
.service-grid-card h5 {
  font-weight: 600;
}
.service-card p,
.service-grid-card p {
  font-weight: 400;
  color: #6b7280;
}
.service-card .service-icon,
.service-grid-card .service-icon {
  box-shadow: none;
  background: rgba(36, 229, 142, 0.08);
}

/* ==========================================================================
   4. Projects — premium editorial gallery + lightbox
   ========================================================================== */
.validus-gallery-section {
  background: #fff;
}
.validus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.validus-gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f4f6f5;
}
.validus-gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.validus-gallery-item-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.validus-gallery-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.validus-gallery-item:hover .validus-gallery-item-link img {
  transform: scale(1.05);
}
.validus-gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 45%, rgba(18, 18, 18, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.validus-gallery-item:hover .validus-gallery-item-overlay {
  opacity: 1;
}
.validus-gallery-item-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: translateY(-8px);
  opacity: 0;
  transition: 0.4s ease;
}
.validus-gallery-item:hover .validus-gallery-item-zoom {
  transform: translateY(0);
  opacity: 1;
}
.validus-gallery-item-caption {
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s ease 0.05s;
}
.validus-gallery-item:hover .validus-gallery-item-caption {
  transform: translateY(0);
  opacity: 1;
}
.validus-gallery-item-caption em {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.validus-gallery-item-caption strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}
.validus-gallery-item-link-out {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 10px 0 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s ease;
  pointer-events: none;
}
.validus-gallery-item:hover .validus-gallery-item-link-out {
  opacity: 0;
}
.validus-gallery-item-link-out a {
  pointer-events: auto;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(18, 18, 18, 0.55);
  border-radius: 30px;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
  .validus-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .validus-gallery-item-wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 575px) {
  .validus-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.validus-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  padding: 40px;
}
.validus-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}
.validus-lightbox-stage {
  position: relative;
  max-width: 1100px;
  max-height: 82vh;
  width: 100%;
  margin: 0;
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.35s ease;
}
.validus-lightbox.is-active .validus-lightbox-stage {
  transform: scale(1);
}
.validus-lightbox-stage img {
  max-width: 100%;
  max-height: 68vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.validus-lightbox-stage figcaption {
  margin-top: 18px;
  color: #fff;
}
.validus-lightbox-title {
  display: block;
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 600;
}
.validus-lightbox-caption {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.validus-lightbox-close,
.validus-lightbox-prev,
.validus-lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.validus-lightbox-close:hover,
.validus-lightbox-prev:hover,
.validus-lightbox-next:hover {
  background: var(--primary);
  color: var(--dark);
}
.validus-lightbox-close {
  top: 24px;
  right: 24px;
}
.validus-lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.validus-lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .validus-lightbox {
    padding: 16px;
  }
  .validus-lightbox-prev,
  .validus-lightbox-next {
    width: 40px;
    height: 40px;
  }
  .validus-lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* ==========================================================================
   5. Contact — info column refresh
   ========================================================================== */
.contact-info-wrapper {
  background: linear-gradient(160deg, #14181f 0%, #10151c 100%);
  border-radius: var(--radius-lg);
}
.contact-info-wrapper::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(36, 229, 142, 0.06);
}
.contact-info-item {
  position: relative;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s;
}
.contact-info-item:hover {
  background: rgba(36, 229, 142, 0.06);
  border-color: rgba(36, 229, 142, 0.25);
  transform: translateX(4px);
}
.contact-info-item:hover .contact-icon {
  background: var(--primary);
}
.contact-info-item:hover .contact-icon i {
  color: var(--dark);
}
.contact-icon {
  border-radius: 50%;
  background: rgba(36, 229, 142, 0.14);
}
.contact-info-item span {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}
.contact-info-item h5 {
  font-weight: 600;
}
.contact-info-item h5 a {
  color: inherit;
}
.contact-info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
  padding: 17px 20px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: 0.3s;
}
.contact-info-cta i {
  font-size: 14px;
}
.contact-info-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}
.contact-social a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-social a:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

/* ==========================================================================
   6. FAQ — more compact, lightweight
   ========================================================================== */
.faq-section {
  padding: 55px 0;
}
.faq-wrapper {
  gap: 12px;
}
.faq-title,
.faq-question {
  padding: 16px 22px;
}
.faq-title h5 {
  font-size: 16px;
  font-weight: 500;
}
.faq-body-inner,
.faq-answer {
  padding: 0 22px 18px;
}
.faq-body-inner p,
.faq-answer p {
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-item {
  border-radius: var(--radius-sm);
  box-shadow: none;
}
.faq-item:hover {
  transform: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.faq-icon {
  width: 36px;
  height: 36px;
}
.faq-icon i {
  font-size: 13px;
}

/* ==========================================================================
   7. Contact CTA area — "Let's Discuss Your Next Project" section polish
   ========================================================================== */
#contact-quote {
  position: relative;
}
#contact-quote .row.mt-5 {
  align-items: stretch;
}

/* Call CTA button — replaces the plain "Call Now" link with an icon badge +
   two-line label (small eyebrow + large number) for clearer hierarchy. */
.contact-call-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(36, 229, 142, 0.14) 0%, rgba(36, 229, 142, 0.05) 100%);
  border: 1px solid rgba(36, 229, 142, 0.3);
  transition: 0.3s;
}
.contact-call-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.contact-call-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  font-size: 17px;
  transition: 0.3s;
}
.contact-call-cta:hover .contact-call-cta-icon {
  background: var(--dark);
  color: var(--primary);
}
.contact-call-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.contact-call-cta-text small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.contact-call-cta:hover .contact-call-cta-text small {
  color: rgba(18, 18, 18, 0.65);
}
.contact-call-cta-text strong {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.contact-call-cta:hover .contact-call-cta-text strong {
  color: var(--dark);
}
.contact-call-cta-arrow {
  margin-left: auto;
  color: var(--primary);
  font-size: 13px;
  transition: 0.3s;
}
.contact-call-cta:hover .contact-call-cta-arrow {
  color: var(--dark);
  transform: translateX(3px);
}

/* Form panel — lighter refinement so it visually matches the dark left card. */
.contact-form-wrapper {
  border: 1px solid #eef1f0;
  box-shadow: 0 20px 50px rgba(18, 18, 18, 0.05);
}
.contact-form-wrapper:hover {
  transform: none;
}
.contact-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-form-eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}
.contact-form-wrapper h3 {
  font-weight: 600;
  margin-bottom: 28px;
}
.contact-form-wrapper .form-control {
  border-color: #eef1f0;
  background: #fafbfb;
  font-size: 14.5px;
}
.contact-form-wrapper .form-control::placeholder {
  color: #9aa3a1;
}
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-submit-btn i {
  font-size: 13px;
}

/* "Call Anytime" phone number — give it the brand color instead of the
   browser-default link blue, and make it visually prominent. */
.location-phone {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
}
.location-phone:hover {
  color: var(--dark) !important;
}

@media (max-width: 575px) {
  .contact-call-cta {
    padding: 14px;
  }
  .contact-call-cta-text strong {
    font-size: 17px;
  }
}

/* ==========================================================================
   8. Projects gallery — breathing room above the grid
   ========================================================================== */
.validus-gallery-section {
  padding: 130px 0 120px;
}
@media (max-width: 991px) {
  .validus-gallery-section {
    padding: 90px 0 80px;
  }
}

/* ==========================================================================
   9. Inner page banner — cap the tagline at two lines everywhere
   ========================================================================== */
.page-banner-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}

/* ==========================================================================
   10. Scrollbar — integrated with the site's design system
   ========================================================================== */
:root {
  --scrollbar-track: var(--off-white);
  --scrollbar-thumb: var(--primary);
  --scrollbar-thumb-hover: var(--dark);
  --scrollbar-width: 10px;
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 20px;
  border: 2px solid var(--scrollbar-track);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
  background-clip: padding-box;
}

/* ==========================================================================
   11. Native WordPress photo galleries — content-editor safety net
   ========================================================================== */
/*
 * Whenever a photo is added through WordPress's own built-in gallery tools
 * (Add Media → Create Gallery, or the block editor's Gallery block), it
 * outputs its own markup/classes independent of our custom Projects grid
 * above. Without rules here those default galleries fall back to WP core's
 * bare styling, which lets images keep their own natural aspect ratio and
 * can leave uneven gaps between rows when photos of different sizes are
 * uploaded — regardless of which page or post they're added to. These
 * rules force every native gallery into the same clean, gap-free,
 * object-fit:cover grid as the rest of the site, no matter what dimensions
 * future client uploads happen to be.
 */

/* Classic "Add Media → Create Gallery" shortcode output. */
.gallery {
  display: grid !important;
  grid-template-columns: repeat(var(--gallery-columns, 3), 1fr);
  gap: 18px;
  margin: 0 0 30px;
}
.gallery-item {
  width: auto !important;
  margin: 0 !important;
  max-width: none !important;
}
.gallery-icon {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f4f6f5;
}
.gallery-icon a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.gallery-caption {
  padding: 10px 2px 0;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}
.gallery-columns-1 { --gallery-columns: 1; }
.gallery-columns-2 { --gallery-columns: 2; }
.gallery-columns-3 { --gallery-columns: 3; }
.gallery-columns-4 { --gallery-columns: 4; }
.gallery-columns-5 { --gallery-columns: 5; }
.gallery-columns-6 { --gallery-columns: 6; }
.gallery-columns-7 { --gallery-columns: 7; }
.gallery-columns-8 { --gallery-columns: 8; }
.gallery-columns-9 { --gallery-columns: 9; }

/* Block editor Gallery block. */
.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wp-block-gallery.columns-2 { grid-template-columns: repeat(2, 1fr); }
.wp-block-gallery.columns-4 { grid-template-columns: repeat(4, 1fr); }
.wp-block-gallery.columns-5 { grid-template-columns: repeat(5, 1fr); }
.wp-block-gallery .wp-block-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0;
}
.wp-block-gallery .wp-block-image figure,
.wp-block-gallery .blocks-gallery-item figure {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f4f6f5;
  margin: 0;
}
.wp-block-gallery .wp-block-image img,
.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-block-gallery figcaption {
  position: static;
  padding: 8px 2px 0;
  font-size: 13px;
  color: #6b7280;
  text-shadow: none;
  background: none;
}

/* Single (non-gallery) block-editor images placed in page/post content —
   keep their natural ratio but round the corners for visual consistency. */
.wp-block-image img {
  border-radius: var(--radius-sm);
}

@media (max-width: 767px) {
  .gallery,
  .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .gallery,
  .wp-block-gallery {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   12. Footer — design credit
   ========================================================================== */
.footer-credit {
  color: rgba(255, 255, 255, 0.4);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  transition: 0.3s;
}
.footer-credit a:hover {
  color: var(--primary);
}

/* ==========================================================================
   13. Contact page — compact two-panel layout
   ========================================================================== */
/*
 * Replaces the old shared heading + long stacked info list + 6-row form
 * with two clearly separated, self-contained panels: "Let's Talk" (info)
 * and "Send Us An Enquiry" (form). Each panel carries its own eyebrow +
 * heading so the section reads as two areas rather than one tall block.
 */
.contact-section-compact {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .contact-section-compact {
    padding: 60px 0;
  }
}

/* Info panel */
.contact-info-wrapper-compact {
  padding: 40px;
}
.contact-info-wrapper-compact h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.contact-info-wrapper-compact > p {
  margin-bottom: 28px;
  font-size: 15px;
}
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-grid .contact-info-item {
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.contact-info-grid .contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 13px;
}
.contact-info-grid .contact-icon i {
  font-size: 17px;
}
.contact-info-grid .contact-info-item span {
  font-size: 12px;
  margin-bottom: 3px;
}
.contact-info-grid .contact-info-item h5 {
  font-size: 15px;
  line-height: 1.4;
}
.contact-info-wrapper-compact .contact-social {
  margin-top: 30px;
}

/* Form panel */
.contact-form-wrapper-compact {
  padding: 40px;
}
.contact-form-wrapper-compact h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-form-lead {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-form-wrapper-compact .form-group {
  margin-bottom: 16px;
}
.contact-form-wrapper-compact .form-control {
  height: 52px;
}
.contact-form-wrapper-compact textarea.form-control {
  height: 110px;
  padding-top: 14px;
}
.contact-form-wrapper-compact .contact-submit-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .contact-info-wrapper-compact,
  .contact-form-wrapper-compact {
    padding: 30px;
  }
}
