/* ============================================================
   connecting.com.au — Connect Power & Cabling — static clone
   Built from live extraction (Divi WP source → hand-written)
   Fonts: Poppins (UI) + Open Sans (body)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --orange:        #EE8812;   /* primary brand orange (text/buttons) */
  --orange-bright: #FF6600;   /* logo orange */
  --orange-cta:    #F59E2E;   /* top-bar pill CTA */
  --purple:        #6B1579;   /* Wattmaster / CTA pill */
  --purple-dark:   #59116A;
  --blue:          #2EA3F2;
  --black:         #000;
  --grey-900:      #1f2024;
  --grey-700:      #4f5356;   /* dark phone bar / floating fab */
  --grey-600:      #666;      /* body text default */
  --grey-300:      #c4c4c4;
  --grey-200:      #e7e8ea;
  --grey-100:      #f1f7fb;   /* hero pill section bg */
  --grey-50:       #f8f9fa;
  --white:         #fff;

  --font-heading: 'Poppins', Helvetica, Arial, 'Lucida Sans', sans-serif;
  --font-body:    'Open Sans', Arial, sans-serif;

  --row-max:        1080px;
  --row-max-wide:   1280px;
  --section-pad-y:  54px;
  --topbar-h:       44px;
  --nav-h:          80px;

  --shadow-card:   0 10px 30px rgba(0,0,0,0.10);
  --shadow-pill:   0 8px 24px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-600);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}
a:hover { color: var(--orange); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 .5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

ul { margin: 0 0 1em; padding-left: 1.25em; }

/* ---------- Layout primitives ---------- */
.row {
  max-width: var(--row-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.row--wide { max-width: var(--row-max-wide); }

section {
  padding: var(--section-pad-y) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.two-col--reverse { grid-template-columns: 1.2fr 1fr; }

@media (max-width: 900px) {
  .two-col, .two-col--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--grey-700);
  color: var(--white);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.topbar__inner {
  width: 100%;
  max-width: var(--row-max-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--orange); }
.topbar__phone, .topbar__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar__email { justify-content: center; }
.topbar__cta {
  justify-self: end;
  background: var(--orange-cta);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0 18px;
  height: var(--topbar-h);
  line-height: var(--topbar-h);
  display: inline-block;
  white-space: nowrap;
}
.topbar__cta:hover { background: var(--orange-bright); color: var(--white) !important; }
.topbar svg { width: 16px; height: 16px; flex: 0 0 16px; fill: currentColor; }

@media (max-width: 900px) {
  .topbar__inner { grid-template-columns: 1fr; gap: 6px; padding: 8px 16px; text-align: center; }
  .topbar__email { justify-content: flex-start; }
  .topbar__cta { justify-self: stretch; text-align: center; }
  .topbar { height: auto; }
}

/* ---------- MAIN NAV ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.site-header__inner {
  max-width: var(--row-max-wide);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-header__logo img {
  height: 56px;
  width: auto;
}
.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--grey-900);
  padding: 8px 12px;
}
.primary-nav a:hover,
.primary-nav a.is-active { color: var(--purple); }
.primary-nav .has-submenu { position: relative; }
.primary-nav .has-submenu > a::after {
  content: ' \203A';
  display: inline-block;
  transform: rotate(90deg);
  font-size: 12px;
  margin-left: 4px;
  color: var(--orange);
}
.primary-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  display: none;
}
.primary-nav .has-submenu:hover .submenu { display: block; }
.primary-nav .submenu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
}
.primary-nav .submenu a:hover { background: var(--grey-50); color: var(--purple); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--grey-900);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 320px;
    max-width: 90vw;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.12);
    z-index: 1000;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-200);
    font-size: 16px;
  }
  .primary-nav .submenu {
    position: static;
    box-shadow: none;
    display: block;
    padding-left: 14px;
  }
  .primary-nav .submenu a {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--grey-200);
  }
}

/* ---------- HERO PILL (inner pages) ---------- */
.hero-pill {
  background: var(--grey-100);
  padding: 60px 24px 80px;
  position: relative;
}
.hero-pill__pill {
  background: var(--white);
  border-radius: 100px;
  padding: 30px 70px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-pill);
}
.hero-pill__pill h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
  color: var(--black);
}

@media (max-width: 700px) {
  .hero-pill__pill { padding: 22px 34px; }
}

/* ---------- HOME HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #000;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-slider__caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  width: 90%;
}
.hero-slider__caption h1 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-slider__caption p {
  font-size: 18px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.85);
  color: var(--black);
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.hero-slider__nav:hover { background: var(--white); }
.hero-slider__nav--prev { left: 24px; }
.hero-slider__nav--next { right: 24px; }
.hero-slider__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}
.hero-slider__dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
}
.hero-slider__dots button.is-active { background: var(--white); }

/* ---------- SECTION WELCOME / IMAGE+TEXT ---------- */
.section--with-bg-shape {
  background-image: url('../assets/images/shape-2.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 480px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  margin: 0 0 18px;
  color: var(--black);
  line-height: 1.15;
}
.section-subtitle {
  font-weight: 700;
  color: var(--orange);
  font-size: 17px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.section-body p {
  color: var(--grey-900);
  font-size: 16px;
  line-height: 1.75;
}

/* Polaroid-style image with white border + shadow */
.frame-img {
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-card);
  display: inline-block;
  max-width: 100%;
}
.frame-img img { width: 100%; height: auto; display: block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  text-align: center;
  transition: all .2s ease;
}
.btn--purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--grey-300);
}
.btn--purple:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--grey-300);
}
.btn--dark {
  background: var(--grey-900);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--grey-300);
}
.btn--dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--grey-300);
}
.btn--orange {
  background: var(--orange-cta);
  color: var(--white);
}
.btn--orange:hover { background: var(--orange-bright); color: var(--white); }

/* ---------- PHONE DIVIDER BAR ---------- */
.phone-bar {
  background: var(--grey-700);
  color: var(--white);
  text-align: center;
  padding: 18px 16px;
  margin: 30px 0;
  position: relative;
}
.phone-bar a {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.phone-bar a:hover { color: var(--white); }
.phone-bar::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 6px;
  background: var(--orange);
}

/* ---------- OUR SERVICES (home: 6 service cards) ---------- */
.services-section {
  background: var(--grey-200);
  padding: 70px 0;
}
.services-section__head { text-align: center; max-width: 740px; margin: 0 auto 40px; }
.services-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin: 0 0 12px;
}
.services-section__head p { color: var(--grey-900); font-size: 16px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.service-card__img { aspect-ratio: 3/2; overflow: hidden; background: #eee; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 18px 20px 22px; }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.service-card__desc {
  color: var(--grey-900);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  min-height: 72px;
}
.service-card__btn {
  align-self: flex-start;
  background: var(--grey-900);
  color: var(--white);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.service-card__btn:hover { background: var(--black); color: var(--white); }

/* ---------- ACCREDITATIONS ROW ---------- */
.accred-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
.accred-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.accred-list__item {
  background: var(--white);
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
}
.accred-list__item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 4px;
  font-family: var(--font-heading);
}
.accred-list__item p { margin: 0; color: var(--grey-600); font-size: 14px; }
@media (max-width: 900px) { .accred-row { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- BRAND CIRCLES (home: 6 brand partners) ---------- */
.brand-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 40px 0;
}
@media (max-width: 900px) { .brand-circles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .brand-circles { grid-template-columns: 1fr; } }

.brand-card {
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
  font-family: var(--font-heading);
}
.brand-card__name {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
}
.brand-card__sub {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 80%;
}
.brand-card--purple { background: var(--purple); }
.brand-card--orange { background: var(--orange-cta); }
.brand-card--black  { background: #111; }
.brand-card--white  { background: var(--white); color: var(--grey-900); border: 2px solid var(--grey-200); }
.brand-card--white .brand-card__sub { color: var(--grey-600); }

/* ---------- INFO CARD GRID (home automation page: 4 colored cards) ---------- */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 40px 0;
}
@media (max-width: 700px) { .info-cards-grid { grid-template-columns: 1fr; } }
.info-card {
  padding: 36px 32px;
  color: var(--white);
  min-height: 200px;
}
.info-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 14px;
}
.info-card p { color: rgba(255,255,255,0.92); margin: 0; line-height: 1.6; font-size: 15px; }
.info-card--purple { background: var(--purple); }
.info-card--orange { background: var(--orange-cta); }
.info-card--white  { background: var(--white); color: var(--grey-900); }
.info-card--white h3 { color: var(--grey-900); }
.info-card--white p  { color: var(--grey-600); }

/* ---------- GALLERY (home: bottom 4-image strip) ---------- */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .mini-gallery { grid-template-columns: repeat(2, 1fr); } }
.mini-gallery a { display: block; overflow: hidden; }
.mini-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s ease; }
.mini-gallery a:hover img { transform: scale(1.05); }

/* ---------- INSTAGRAM-STYLE GRID (home) ---------- */
.ig-section { padding: 70px 0; }
.ig-section__head { text-align: center; margin-bottom: 30px; }
.ig-section__head h2 { font-size: 24px; font-weight: 700; }
.ig-section__head p { color: var(--grey-600); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: pointer; transition: opacity .25s ease; }
.ig-grid img:hover { opacity: 0.85; }
.ig-loadmore { display: block; margin: 30px auto 0; padding: 12px 32px; background: var(--orange-cta); color: var(--white); border: 0; font-family: var(--font-heading); font-weight: 600; cursor: pointer; }

/* ---------- LOGO CIRCLE DIVIDER ---------- */
.logo-circle {
  margin: 60px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid var(--orange-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.logo-circle img { max-width: 80%; height: auto; }

/* ---------- ABOUT US (footer-adjacent bio) ---------- */
.about-strip {
  border-bottom: 1px solid var(--grey-200);
  padding: 30px 0;
}
.about-strip h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.about-strip p { margin: 0; color: var(--grey-900); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--white); padding: 50px 0 30px; color: var(--grey-900); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--grey-900);
}
.footer-grid p, .footer-grid li {
  font-size: 14px;
  color: var(--grey-900);
  line-height: 1.7;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid ul li { padding: 4px 0; }
.footer-grid a:hover { color: var(--orange); }

.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  color: var(--grey-900);
}
.footer-legal strong { display: block; margin-bottom: 4px; }

.footer__contact .contact-label {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 14px 0 4px;
}
.footer__contact p { margin: 0 0 4px; }

.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  margin-top: 16px;
}
.footer__instagram svg { width: 18px; height: 18px; fill: currentColor; }

.send-message-btn {
  display: inline-block;
  padding: 10px 26px;
  background: var(--grey-700);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 4px 4px 0 var(--grey-300);
  margin-top: 16px;
}
.send-message-btn:hover { background: var(--grey-900); color: var(--white); }

/* ---------- FLOATING PHONE FAB ---------- */
.call-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grey-700);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .2s ease, background .2s ease;
}
.call-fab:hover {
  background: var(--orange-cta);
  color: var(--white);
  transform: scale(1.05);
}
.call-fab svg { width: 24px; height: 24px; fill: var(--white); }

/* ---------- CONTACT FORM (contact-us page) ---------- */
.contact-card {
  background: var(--orange-cta);
  padding: 36px 40px;
  color: var(--white);
}
.contact-card h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  margin: 0 0 16px;
}
.contact-card p { color: var(--white); margin-bottom: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-size: 13px; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-900);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form__field-label {
  background: var(--white);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-900);
  display: block;
}
.contact-form__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-top: 4px;
}
.contact-form__captcha input { width: 60px; padding: 8px; text-align: center; }
.contact-form__submit {
  background: var(--black);
  color: var(--white);
  padding: 10px 28px;
  border: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.contact-form__submit:hover { background: var(--grey-900); }

.contact-details h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px;
}
.contact-details p { color: var(--grey-900); margin: 0 0 8px; }
.contact-details strong { color: var(--grey-900); }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-light { background: var(--grey-50); }
.bg-blue-tint { background: var(--grey-100); }

.bullet-list { padding-left: 22px; }
.bullet-list li { margin-bottom: 8px; color: var(--grey-900); }

.divider-line {
  border: 0;
  border-top: 1px solid var(--grey-200);
  margin: 30px 0;
}

/* ---------- IT services page specific ---------- */
.it-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
.it-row:nth-child(even) .it-row__img { order: 2; }
@media (max-width: 900px) {
  .it-row { grid-template-columns: 1fr; gap: 30px; }
  .it-row:nth-child(even) .it-row__img { order: 0; }
}

/* ---------- Network/contact info card ---------- */
.contact-block strong { display: inline-block; min-width: 70px; }
