/*! 10X Experts – WP/Elementor compatibility layer v1.0
   - Purpose: make legacy WP content (.wp-block-*) and Elementor markup (.elementor-*) render
     correctly inside the new static site without importing the old theme.
   - Safe to load after 10x-shared.css.
   - No global resets. Scoped shims and utilities only.
*/

/* ------------------------------------------------------------------
   1) Tokens and gradients (bridge old vars to new theme)
------------------------------------------------------------------- */
:root {
  /* Bridge variables often found in legacy theme */
  --grad-1: var(--gold-1, #e2a642);
  --grad-2: var(--gold-2, #f4d27b);
  --muted: var(--muted, rgba(255, 255, 255, 0.72));
}

/* Gradient text utility used across headings */
.text-grad {
  background: linear-gradient(100deg, var(--grad-2) 0%, #ffe9a8 50%, var(--grad-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Typographic utilities parity */
.font-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.font-medium {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
} /* exists already, kept for safety */
.font-extrabold {
  font-weight: 900;
} /* already in shared, kept due to scattered usage */

/* ------------------------------------------------------------------
   2) Page hero used on About/Expertise/Contact/Initiatives
------------------------------------------------------------------- */
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 46vh;
  padding: 88px 0 60px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.7), rgba(28, 28, 30, 0.85));
  z-index: 0;
}
/* Remove the dark overlay on selected pages that use a GIF hero */
body.initiatives-page .page-hero::after,
body.contact-page .page-hero::after {
  content: none !important;
  background: none !important;
}
.page-hero .page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 16px;
}

/* ------------------------------------------------------------------
   3) Footer niceties
------------------------------------------------------------------- */
.site-footer {
  background: #0e0e10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer .footer-nav a {
  opacity: 0.9;
}
.site-footer .footer-nav a:hover {
  opacity: 1;
}

/* Footer structure parity with legacy theme */
.site-footer .footer-brand {
  display: block;
  margin-bottom: 20px;
}
.site-footer .footer-brand img {
  max-width: 220px;
  width: 100%;
  height: auto;
}
.site-footer h4 {
  color: #fff;
  margin: 0 0 16px 0;
}
.site-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.site-footer .footer-contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
  align-items: start;
}
.site-footer .footer-contact li > a {
  /* When the contact item is a link (email), the <a> itself should
     span the two parent columns so its inner grid (icon + text)
     has the full available width. Otherwise it gets confined to
     the first 22px column on small screens. */
  grid-column: 1 / -1;
}
.site-footer .footer-contact a {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
  align-items: start;
  min-width: 0; /* allow content column to shrink/wrap */
}
.site-footer .footer-contact img {
  width: 20px;
  height: 20px;
}
.site-footer .footer-contact a > span {
  min-width: 0;
}
.site-footer .icon-send,
.site-footer .icon-phone,
.site-footer .icon-pin,
.site-footer .icon-instagram,
.site-footer .icon-email {
  width: 22px;
  height: 22px;
}
.site-footer .social-handles {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Tablet-ish phones (~480–680px):
   Keep items left-aligned and force "Powered by" to wrap onto its own line,
   matching the reference screenshot. */
@media (min-width: 480px) and (max-width: 680px) {
  .site-footer .footer-bottom {
    justify-content: flex-start;
    gap: 14px 20px; /* row gap, column gap */
  }
  .site-footer .footer-bottom p {
    flex-basis: 100%; /* break to new line */
    margin: 0; /* keep spacing tight */
  }
}

/* Small phones: center the bottom bar items; keep Powered-by on its own line */
@media (max-width: 479.98px) {
  .site-footer .footer-bottom {
    justify-content: center !important;
    text-align: center;
    gap: 12px;
  }
  .site-footer .footer-bottom p {
    flex-basis: 100%;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .site-footer .footer-brand {
    margin-bottom: 0;
  }
}

/* Unified mobile footer layout (phones + small tablets) */
@media (max-width: 991.98px) {
  /* Center brand and tighten vertical rhythm */
  .site-footer .footer-brand {
    margin: 0 auto 16px auto;
    display: inline-block;
  }
  /* Bottom bar: center items and place Powered-by on its own line */
  .site-footer .footer-bottom {
    justify-content: flex-start; /* keep alignment consistent with lists */
    text-align: left;
    gap: 12px 16px;
  }
  .site-footer .footer-bottom p {
    flex-basis: 100%;
    margin: 0;
  }
  /* Keep legal links on one row when space allows */
  .site-footer .footer-bottom a {
    white-space: nowrap;
  }
}

/* Extra small phones: stack footer bottom items vertically for clarity */
@media (max-width: 767.98px) {
  /* Stack footer columns and center the brand */
  .site-footer .row {
    display: grid;
    gap: 28px;
  }
  .site-footer .footer-brand {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
  }
  .site-footer h4 {
    text-align: center;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: 28px;
  }
  .site-footer .footer-bottom p {
    order: 3;
    width: 100%;
    margin: 0;
  }
  .site-footer .social-handles {
    order: 1;
    justify-content: center;
    gap: 18px;
  }
  .site-footer .footer-bottom a {
    order: 2;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .site-footer .footer-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    transition:
      background 0.2s,
      transform 0.2s;
  }
  .site-footer .footer-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transform: translateY(-1px);
  }
  .site-footer .footer-contact {
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 18px 14px;
    border-radius: 18px;
    gap: 16px;
  }
  .site-footer .footer-contact li,
  .site-footer .footer-contact a {
    grid-template-columns: 26px 1fr;
  }
  .site-footer .footer-contact span {
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .site-footer .footer-bottom {
    gap: 14px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .site-footer .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }
}

/* ------------------------------------------------------------------
   4) Contact form UI (contact.html)
------------------------------------------------------------------- */
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px 20px;
}
@media (max-width: 680px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-links__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-links__item > * {
  min-width: 0;
}
.contact-links__item > .icon-24 {
  flex: 0 0 auto;
}
.contact-links__item a,
.contact-links__item span.text-white,
.contact-links__item .text-white.font-light {
  flex: 1 1 200px;
}
@media (max-width: 360px) {
  .contact-links__item {
    gap: 8px;
  }
  .contact-links__item a,
  .contact-links__item span.text-white,
  .contact-links__item .text-white.font-light {
    flex-basis: 160px;
  }
}
.contact-form label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: #0f0f12;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-1);
  box-shadow: 0 0 0 3px rgba(226, 166, 66, 0.25);
}

/* ------------------------------------------------------------------
   5) About counters
------------------------------------------------------------------- */
.square-counter {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #141416;
  border-radius: 14px;
}
.square-counter .h4 {
  margin: 0;
}
.counter {
  user-select: none;
}

/* ------------------------------------------------------------------
   6) WordPress block shims (Gutenberg)
------------------------------------------------------------------- */

/* Alignments */
.alignleft {
  float: left;
  margin: 0 1.25rem 1rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1rem 1.25rem;
}
.aligncenter {
  display: block;
  margin-inline: auto;
}
.alignwide {
  margin-left: max(calc(50% - 600px), 16px);
  margin-right: max(calc(50% - 600px), 16px);
}
.alignfull {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  left: 0;
  right: 0;
}

/* Images and captions */
.wp-caption {
  max-width: 100%;
}
.wp-caption img {
  height: auto;
}
.wp-caption-text,
.wp-block-image figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin-top: 8px;
}

/* Columns */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wp-block-column {
  flex: 1 1 280px;
  min-width: 240px;
}

/* Buttons */
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold-1);
  color: var(--gold-1);
  background: rgba(203, 127, 44, 0.08);
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.wp-block-button .wp-block-button__link:hover {
  background: linear-gradient(100deg, var(--gold-1), var(--gold-2));
  color: #0e0e10;
  border-color: transparent;
}

/* Embeds */
.wp-block-embed {
  position: relative;
}
.wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Quote and separator */
.wp-block-quote {
  border-left: 3px solid var(--gold-1);
  padding-left: 1rem;
  color: var(--muted);
}
.wp-block-separator {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.5rem 0;
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #141416;
  color: #fff;
  font-weight: 600;
}
.pagination .current,
.nav-links .current {
  border-color: var(--gold-1);
  color: var(--gold-1);
}

/* Screen-reader text */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  clip: auto !important;
  height: auto;
  width: auto;
  display: block;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  border-radius: 8px;
}

/* ------------------------------------------------------------------
   7) Elementor shims
------------------------------------------------------------------- */
.elementor {
  --container-w: 1200px;
}
.elementor-section {
  padding: 60px 0;
}
.elementor-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 16px;
}
.elementor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.elementor-column {
  flex: 1 1 280px;
}

/* Common widget fixes */
.elementor-widget:not(:last-child) {
  margin-bottom: 18px;
}
.elementor-widget-heading .elementor-heading-title {
  font-weight: 800;
  line-height: 1.1;
}
.elementor-widget-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* Buttons */
.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(100deg, var(--gold-1), var(--gold-2));
  color: #0e0e10;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}
.elementor-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.elementor-button:active {
  transform: none;
}

/* Icon list */
.elementor-icon-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.elementor-icon-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.elementor-icon-list-icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-grid;
  place-items: center;
}
.elementor-icon-list-text {
  opacity: 0.85;
}

/* Accordion (basic parity) */
.elementor-accordion .elementor-accordion-item {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.elementor-accordion .elementor-tab-title {
  position: relative;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
}
.elementor-accordion .elementor-tab-content {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}
.elementor-accordion .elementor-accordion-item.active .elementor-tab-content {
  display: block;
}

/* Nav menu states commonly emitted by WordPress */
.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 0.45em;
  font-size: 0.8em;
  opacity: 0.8;
}
.navbar .menu li {
  position: relative;
}
.navbar .menu li ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.96);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar .menu li:hover > ul {
  display: block;
}
.navbar .menu a[aria-current="page"],
.navbar .menu .current-menu-item > a {
  color: var(--gold-2);
  opacity: 1;
}

/* ------------------------------------------------------------------
   8) Misc utilities used in markup but missing in shared css
------------------------------------------------------------------- */
.mt-4 {
  margin-top: 1rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}

/* Balanced half opacity utility */
.opacity-50 {
  opacity: 0.5 !important;
}

/* Padding top utility for large screens (parity with old footer spacing) */
@media (min-width: 992px) {
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
}

/* ------------------------------------------------------------------
   9) Small polish for News cards on dark
------------------------------------------------------------------- */
.news-carousel .card-fold {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ------------------------------------------------------------------
   10) About Us Page Components
------------------------------------------------------------------- */

/* Display utilities for large headings */
.display-1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
}
.display-3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 900;
}
.h4 {
  font-size: 1.125rem;
  line-height: 1.4;
}

/* Signature text with background script */
.text-signature {
  position: relative;
  isolation: isolate;
}
.text-signature .signature {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Allura", cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.opacity-01 {
  opacity: 0.1 !important;
}
/* Full opacity utility for legacy parity */
.opacity-100 {
  opacity: 1 !important;
}

/* Background overlay for dark sections */
.background-overlay-dark {
  background: linear-gradient(180deg, #0e0e10 0%, #1c1c1e 100%);
  position: relative;
}

/* Card fold corner effect */
.card-fold {
  position: relative;
  isolation: isolate;
  overflow: visible;
}
.card-fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, var(--gold-1) 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}
.card-fold.grad-fold-down::after {
  background: linear-gradient(135deg, transparent 50%, var(--grad-1) 50%);
}

/* Team/Founders section */
.our-team-section {
  padding: 80px 0;
}
.our-team-section .card {
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.our-team-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.our-team-section .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

/* Button outline variant */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}
.btn-arrow::after {
  content: "→";
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.btn-outline.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* Border radius utilities */
.rounded-top {
  border-radius: 20px 20px 0 0 !important;
}
.rounded-4 {
  border-radius: 1.5rem !important;
}

/* Spacing utilities */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-lg-5 {
  @media (min-width: 992px) {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
.pb-lg-5 {
  @media (min-width: 992px) {
    padding-bottom: 3rem !important;
  }
}
.pt-5 {
  padding-top: 3rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-md-5 {
  @media (min-width: 768px) {
    padding: 3rem !important;
  }
}
.p-lg-5 {
  @media (min-width: 992px) {
    padding: 3rem !important;
  }
}
.px-lg-5 {
  @media (min-width: 992px) {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}

/* Layout utilities */
.overflow-hidden {
  overflow: hidden !important;
}
.isolation {
  isolation: isolate !important;
}
.position-relative {
  position: relative !important;
}
.d-block {
  display: block !important;
}
.d-lg-block {
  @media (min-width: 992px) {
    display: block !important;
  }
}

/* Flexbox utilities */
.d-flex {
  display: flex !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.gap-2 {
  gap: 0.5rem !important;
}

/* Text utilities */
.text-center {
  text-align: center !important;
}
.text-white {
  color: #fff !important;
}

/* Award logo in news cards */
.award-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Card utilities */
.border-0 {
  border: 0 !important;
}
.h-100 {
  height: 100% !important;
}

/* Background utilities
   Use light neutral for .bg-light to match original comps. */
.bg-light {
  /* Use background-color so other layers (e.g., .background-overlay-dark) can add a background-image */
  background-color: #e9eaec !important;
}
.bg-dark-light {
  background: #1c1c1e !important;
}
.bg-grad {
  background: linear-gradient(100deg, var(--gold-1) 0%, var(--gold-2) 100%) !important;
}

/* Container fluid */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Row and column utilities */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.col {
  position: relative;
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* Ensure breakpoint-based column classes behave like columns at all widths.
   Without this, elements that only use e.g. `.col-lg-6` won’t get the
   base padding/width on small screens, causing side-by-side layout on mobile.
   This mirrors Bootstrap’s make-col-ready behavior. */
[class^="col-"],
[class*=" col-"] {
  position: relative;
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* Basic column sizes (Bootstrap-like utilities for our layout) */
.col-12 {
  position: relative;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  flex: 0 0 100%;
  max-width: 100%;
}

/* Additional fixed columns used in content-create section */
.col-3 {
  position: relative;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-9 {
  position: relative;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  flex: 0 0 75%;
  max-width: 75%;
}

/* Display helpers */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-lg-block {
  @media (min-width: 992px) {
    display: block !important;
  }
}

/* Text alignment helpers */
.text-center {
  text-align: center !important;
}
@media (min-width: 992px) {
  .text-lg-center {
    text-align: center !important;
  }
}

/* Spacing helpers for large screens */
@media (min-width: 992px) {
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
}

/* z-index helper */
.z-2 {
  z-index: 2 !important;
}

/* Responsive grid (only the sizes used in our pages) */
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333%;
  }
}
@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-xl-2 {
    margin-left: 16.6667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6667%;
  }
}

/* Optional: extra large vertical padding utility used on some sections */
@media (min-width: 1400px) {
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* Let's Talk section specific */
.lets-talk .bg-grad {
  position: relative;
  margin-top: -40px;
  z-index: 10;
}
.lets-talk-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  opacity: 0.2;
  pointer-events: none;
}
.btn-send {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #0e0e10;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-send .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.btn-white {
  background: #fff !important;
  color: #0e0e10 !important;
}
.btn-lg {
  padding: 16px 32px !important;
  font-size: 1.125rem !important;
}

/* End of file */
