/* ============================================================
   TIRAXON — Premium Web Studio
   Main Stylesheet
   ============================================================ */

/* ——— Google Fonts ——— */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Oi&family=Syne+Mono&family=Lato:wght@300;400;700&display=swap');

/* ——— CSS Variables ——— */
:root {
  --primary: #FD5320;
  --primary-lt: #fd7c47;
  --dark: #040404;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --text: #37373d;
  --text-lt: #888;
  --border: #ffffff12;
  --white: #ffffff;
  --light-bg: #f4f5f6;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-nav: 'Bricolage Grotesque', sans-serif;
  --font-loader: 'Oi', serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --radius-xl: 60px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— Reset & Base ——— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ——— Skeleton Loading Cards ——— */
.skeleton-card {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-md);
  width: 100%;
}

/* Dark-background skeleton (testimonials, etc.) */
.testimonials-section .skeleton-card,
.section--dark .skeleton-card {
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ——— Loading Screen (Premium Split Screen) ——— */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}

#loading-screen .loader-panel {
  position: absolute;
  width: 100%;
  height: 50%;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  pointer-events: auto;
  background-image: linear-gradient(135deg, rgba(4, 4, 4, 0.95) 0%, rgba(4, 4, 4, 0.85) 100%), url('../images/hero-section-background-scaled.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

#loading-screen .panel-top {
  top: 0;
  height: 50%;
  background-position: center top;
  border-bottom: none;
}

#loading-screen .panel-bottom {
  bottom: 0;
  height: 50%;
  background-position: center bottom;
  border-top: none;
}

/* Mobile: solid dark bg for loader — avoids stretched/broken background */
@media (max-width: 480px) {
  #loading-screen .loader-panel {
    background-image: linear-gradient(135deg, #060606 0%, #0d0d0d 100%);
  }
}

/* Logo split positioning */
#loading-screen .loader-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 3 / 1;
  /* logo image is sized so its centre aligns with panel edge */
}

#loading-screen .loader-logo-img {
  width: clamp(160px, 55vw, 520px);
  height: auto;
  aspect-ratio: 3 / 1;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Mobile: tighter loader logo */
@media (max-width: 480px) {
  #loading-screen .loader-logo-img {
    width: min(72vw, 280px);
    aspect-ratio: 3 / 1;
  }
}

/* Top panel: anchor logo bottom to panel bottom edge (= screen centre) */
#loading-screen .top-logo {
  bottom: 0;
  /* move the image up by half its own height so the mid-line of the logo
     sits exactly on the cut edge */
  transform: translateX(-50%) translateY(50%);
  animation: slideInLogoTop 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Bottom panel: anchor logo top to panel top edge (= screen centre) */
#loading-screen .bottom-logo {
  top: 0;
  transform: translateX(-50%) translateY(-50%);
  animation: slideInLogoBottom 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLogoTop {
  0%   { transform: translateX(-50%) translateY(0%);  opacity: 0; }
  100% { transform: translateX(-50%) translateY(50%); opacity: 1; }
}

@keyframes slideInLogoBottom {
  0%   { transform: translateX(-50%) translateY(0%);   opacity: 0; }
  100% { transform: translateX(-50%) translateY(-50%); opacity: 1; }
}


/* Cut line */
#loading-screen .loader-cut-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 20%, var(--primary) 50%, rgba(255,255,255,0.8) 80%, rgba(255,255,255,0) 100%);
  z-index: 10;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

#loading-screen.draw-line .loader-cut-line {
  transform: scaleX(1);
}

#loading-screen.loaded .panel-top {
  transform: translateY(-100%);
}

#loading-screen.loaded .panel-bottom {
  transform: translateY(100%);
}

#loading-screen.loaded .loader-cut-line {
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}


/* ——— Typography ——— */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-nav);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--trans);
}

a:hover {
  color: var(--primary-lt);
}

img {
  max-width: 100%;
  display: block;
}

/* ——— Container ——— */
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ——— Section Base ——— */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--dark);
}

.section--dark-2 {
  background: var(--dark-2);
}

.section--light {
  background: var(--light-bg);
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: rgba(253, 83, 32, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-lt);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-circle {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-circle:hover {
  background: var(--primary-lt);
  color: var(--white);
  transform: scale(1.1);
}

.btn svg,
.btn-circle svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ——— HEADER / NAVIGATION ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--trans);
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  background: rgba(4, 4, 4, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header.white-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.white-header .nav-link {
  color: var(--text) !important;
}

.header.white-header .nav-link:hover,
.header.white-header .nav-link.active {
  color: var(--primary) !important;
}

.header.white-header .logo-text {
  color: var(--dark) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}

.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--trans);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(500px, 90vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  border-radius: 30px 0 0 30px;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--trans);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 10px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ——— HERO SECTION ——— */
.hero {
  min-height: 100vh;
  background: var(--dark);
  background-image: url('../images/hero-section-background-scaled.webp');
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 4, 4, 0.9) 0%, rgba(4, 4, 4, 0.6) 100%);
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 30px;
}

.hero-badge-avatar-group {
  display: flex;
  align-items: center;
}

.hero-badge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  object-fit: cover;
}

.hero-badge-avatar:not(:first-child) {
  margin-left: -10px;
}

.hero-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.hero-badge-icon {
  width: 18px;
  height: 18px;
  color: var(--white);
  margin-left: 4px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  background: transparent;
}

.hero-play-btn:hover {
  color: var(--primary-lt);
}

.hero-play-circle {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--trans);
}

.hero-play-btn:hover .hero-play-circle {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-img-main {
  width: 100%;
  height: 540px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

.hero-img-main img {
  max-width: 115%;
  width: auto;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;
}

@media (max-width: 768px) {

  .hero-img-main {
    height: 420px;
  }

  .hero-img-main img {
    width: 100%;
    height: 100%;
    max-width: 120%;

    object-fit: contain;
  }

}

/* Floating CTA on image */
.hero-float-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 160px;
  background: var(--primary);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--trans);
  z-index: 2;
}

.hero-float-cta:hover {
  background: var(--primary-lt);
  transform: scale(1.05);
}

.hero-float-cta-icon {
  color: var(--white);
  font-size: 22px;
}

.hero-float-cta-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* ——— BRANDS / CLIENTS BAR ——— */
.brands-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand-item {
  opacity: 0.4;
  transition: var(--trans);
  display: flex;
  align-items: center;
}

.brand-item:hover {
  opacity: 0.8;
}

.brand-item svg {
  height: 22px;
  width: auto;
  fill: var(--white);
}

/* =========================================
   ABOUT SECTION - FIXED
========================================= */

.about-grid {
  display: grid;

  /* Image side smaller, content side bigger */
  grid-template-columns: 40% 60%;

  /* More gap so image breathes away from text */
  gap: 60px;

  align-items: center;

  width: 100%;
}


/* =========================================
   IMAGE AREA
========================================= */

.about-images {
  width: 100%;
  height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
}


/* Main image box */

.about-img {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;

  width: 100%;
}


/* Tall image */

.about-img--tall {
  width: 100%;
  max-width: 480px;
  height: 560px;

  grid-row: auto;

  border-radius: 0;

  overflow: visible;
}


/* Actual image */

.about-img img,
.about-img--tall img {
  width: 100%;
  height: 100%;

  display: block;

  /* Image crop nahi hogi */
  object-fit: contain;

  /* Image ko CENTER bottom side align karega */
  object-position: center bottom;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
  width: 100%;
  min-width: 0;

  padding-left: 0;

  /* Extra left space remove */
  margin-left: 0;
}


.about-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;

  color: var(--dark);

  margin-bottom: 20px;

  line-height: 1.2;
}


.about-desc {
  font-size: 17px;
  line-height: 1.7;

  color: var(--text-lt);

  margin-bottom: 30px;
}


/* =========================================
   ABOUT STATS CARDS
========================================= */

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
}

.about-stat-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.about-stat-card:hover {
  box-shadow: 0 8px 32px rgba(253,83,32,0.10);
  transform: translateY(-3px);
}

.about-stat-icon {
  color: var(--primary);
  display: block;
  margin-bottom: 2px;
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* =========================================
   SUCCESS DIALOG
========================================= */

.success-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-dialog-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-dialog {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  position: relative;
}

.success-dialog-overlay.active .success-dialog {
  transform: scale(1) translateY(0);
}

.success-dialog-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), #ff7043);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.success-dialog h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.success-dialog p {
  color: var(--text-lt);
  line-height: 1.65;
  margin-bottom: 28px;
}

.success-dialog-close {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.success-dialog-close:hover {
  opacity: 0.85;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .about-grid {
    grid-template-columns: 40% 60%;
    gap: 20px;
  }


  .about-images {
    height: 480px;
  }


  .about-img--tall {
    height: 480px;
    max-width: 100%;
  }


  .about-title {
    font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  }


  .about-desc {
    font-size: 16px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .about-images {
    width: 100%;
    height: 420px;

    justify-content: center;
  }


  .about-img--tall {
    width: 100%;
    max-width: 450px;

    height: 420px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
  }


  .about-img img,
  .about-img--tall img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    /* Mobile pe center */
    object-position: center center;
  }


  .about-content {
    width: 100%;

    padding-left: 0;
    margin-left: 0;
  }


  .about-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }


  .about-desc {
    font-size: 15px;

    line-height: 1.75;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .about-grid {
    gap: 25px;
  }


  .about-images {
    height: 350px;
  }


  .about-img--tall {
    height: 350px;
  }


  .about-title {
    font-size: 1.85rem;
  }


  .about-desc {
    font-size: 14px;
  }

}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.stat-item {}

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-lt);
  margin-top: 4px;
}

/* ——— TEAM PROFILE CARD ——— */
.team-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--trans);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.team-card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.team-card-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card-info p {
  font-size: 13px;
  color: var(--text-lt);
  margin: 0;
}

/* ——— CLIENTS CTA ——— */
.clients-cta {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.clients-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 83, 32, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.clients-cta-left {
  position: relative;
  z-index: 1;
}

.clients-cta-right {
  position: relative;
  z-index: 1;
}

.clients-cta-decoration {
  width: 100%;
  max-width: 300px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
}

.clients-cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.clients-cta-desc {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

.client-avatars {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.client-avatar {
  width: 70px;
  height: 260px;
  object-fit: cover;
  border-radius: 50px;
  border: 3px solid var(--dark);
}

.client-avatar:not(:first-child) {
  margin-left: -20px;
}

/* ——— PROJECTS SECTION ——— */
.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.projects-header h2 {
  margin: 0;
}

/* Project slider */
.project-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.project-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item {
  flex: 0 0 calc(33.333% - 20px);
  position: relative;
  cursor: pointer;
}

.project-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.project-item:hover .project-item-img {
  transform: scale(1.05);
}

.project-item-info {
  padding: 20px 0 0;
}

.project-item-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.project-item-info h3 a {
  color: inherit;
}

.project-item-info h3 a:hover {
  color: var(--primary);
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(253, 83, 32, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.slider-arrows {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  color: var(--text);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ——— SERVICES SECTION ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--trans);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(253, 83, 32, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(253, 83, 32, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-lt);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-more svg {
  width: 20px;
  height: 20px;
  transition: var(--trans);
}

.service-more:hover svg {
  transform: translateX(4px);
}

/* ——— PROCESS SECTION ——— */
.process-section {
  background: var(--dark);
  padding: 100px 0;
}

.process-section h2 {
  color: var(--white);
}

.process-section .section-tag {
  background: rgba(253, 83, 32, 0.2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.process-step:last-child::after {
  display: none;
}

.process-step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ——— BLOG SECTION ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--trans);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-card-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 4/3;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-lt);
  margin-bottom: 12px;
}

.blog-card-meta span {
  color: var(--primary);
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

/* ——— TESTIMONIALS ——— */
.testimonials-section {
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 0 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--trans);
  min-width: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFC107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-lt);
}

/* ——— NEWSLETTER ——— */
.newsletter-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--trans);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

/* ——— FOOTER ——— */
.footer {
  background: var(--dark);
  background-image: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)), url('../images/hero-section-background-scaled.webp');
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 30px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--trans);
  font-size: 14px;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--trans);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-link:hover {
  color: var(--white);
}

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  background: var(--dark);
  background-image: url('../images/hero-section-background-scaled.webp');
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.75);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: var(--primary);
}

/* ——— CONTACT PAGE ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--trans);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(253, 83, 32, 0.1);
}

.form-control::placeholder {
  color: #ccc;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: rgba(253, 83, 32, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-lt);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

/* ——— PRICING PAGE ——— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 40px);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: var(--trans);
  position: relative;
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--dark);
  border-color: var(--primary);
  transform: scale(1.04);
}

.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 50px;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-feature,
.pricing-card.featured h3 {
  color: var(--white);
}

.pricing-price sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-price sub {
  font-size: 1rem;
  color: var(--text-lt);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-lt);
  margin-bottom: 32px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 24px 0;
}

.pricing-card.featured .pricing-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
}

.pricing-feature-icon {
  color: var(--primary);
  flex-shrink: 0;
}

/* ——— FAQ SECTION ——— */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--trans);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
  font-size: 18px;
  color: var(--text);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-lt);
  line-height: 1.7;
}

/* ——— PROJECTS PAGE ——— */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  cursor: pointer;
  transition: var(--trans);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.projects-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.projects-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects-grid-item:hover img {
  transform: scale(1.08);
}

.projects-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 4, 4, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projects-grid-item:hover .projects-grid-overlay {
  opacity: 1;
}

.projects-grid-overlay h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.projects-grid-tags {
  display: flex;
  gap: 6px;
}

.projects-grid-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(253, 83, 32, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ——— TEAM PAGE ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-member-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--trans);
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-member-img-wrap {
  overflow: hidden;
  height: 280px;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-img {
  transform: scale(1.05);
}

.team-member-body {
  padding: 28px;
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.team-member-bio {
  font-size: 14px;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.team-member-socials {
  display: flex;
  gap: 10px;
}

.team-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 13px;
  transition: var(--trans);
}

.team-social:hover {
  background: var(--primary);
  color: var(--white);
}

/* ——— ERROR PAGES ——— */
.error-page {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.80) 100%), url('../images/hero-section-background-scaled.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 40px;  /* top padding accounts for fixed nav */
  position: relative;
  overflow: hidden;
}

.error-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(253, 83, 32, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.error-code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(253, 83, 32, 0.4);
  margin-bottom: 20px;
  position: relative;
}

.error-code-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 0 50% 0);
  transition: clip-path 0.5s ease;
}

.error-page:hover .error-code-fill {
  clip-path: inset(0 0 0% 0);
}

.error-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.error-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ——— ANIMATIONS ——— */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.7s ease forwards;
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos-delay="400"] {
  transition-delay: 0.4s;
}

/* ——— COUNTER ——— */
.counter {
  font-family: var(--font-head);
  font-weight: 900;
}

/* ——— SCROLL TO TOP ——— */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  z-index: 500;
  box-shadow: 0 8px 25px rgba(253, 83, 32, 0.4);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-lt);
  transform: translateY(-4px);
}



/* ——— RESPONSIVE ——— */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 350px;
  }

  .clients-cta {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .project-item {
    flex: 0 0 calc(50% - 15px);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-step::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .header-inner {
    padding: 0 20px;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-actions {
    justify-content: center;
    align-items: center;
  }

  .brands-inner {
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .about-images {
    display: none;
  }

  .clients-cta {
    padding: 30px;
  }

  .contact-form {
    padding: 30px;
  }

  .project-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .hero-grid {
    padding: 0 16px;
  }

  .brands-inner {
    padding: 0 16px;
  }

  .clients-cta {
    padding: 24px;
  }
}
/* ====================================================
   ICONIFY ICON ALIGNMENT
   ==================================================== */
iconify-icon {
  display: inline-flex;
  vertical-align: middle;
  flex-shrink: 0;
}

.btn iconify-icon,
.btn-circle iconify-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ====================================================
   NAV CTA BUTTON
   ==================================================== */
.nav-cta {
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ====================================================
   GLOBAL RESPONSIVE IMPROVEMENTS
   ==================================================== */

/* ── Large tablet ── */
@media (max-width: 1100px) {
  .hero-grid   { grid-template-columns: 1fr; gap: 50px; }
  .hero-images { display: block; opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-left   { text-align: center; }
  .hero-badge  { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc   { margin-left: auto; margin-right: auto; }

  .about-grid  { grid-template-columns: 1fr !important; gap: 40px; }
  .about-images { height: auto; min-height: 340px; justify-content: center; }
  .about-img--tall { height: 400px; max-width: 400px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-step::after { display: none; }
  .project-item  { flex: 0 0 calc(50% - 15px); }
  .contact-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .clients-cta   { grid-template-columns: 1fr; padding: 50px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .section  { padding: 60px 0; }

  /* Header */
  .hamburger  { display: flex; }
  .nav        { display: none; }
  .nav-cta    { display: none; }
  .header-inner { padding: 0 20px; }

  /* Hero — mobile: single column, image below text */
  .hero-content  { padding-top: 110px; padding-bottom: 0; }
  .hero-title    { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc     { font-size: 16px; margin-bottom: 32px; }
  .hero-actions  { justify-content: center; align-items: center; gap: 12px; }

  /* Single column: text top, image bottom */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  /* Show hero image on mobile — below the text */
  .hero-images {
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-img-main {
    width: 80%;
    max-width: 320px;
    height: 360px;
    margin: 0 auto;
    /* Fade out bottom so it blends into next section */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }

  .hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  /* Remove the ::after ghost since image is now visible */
  .hero::after { display: none; }

  /* About */
  .about-grid    { grid-template-columns: 1fr !important; }
  .about-images  { display: none; }
  .about-content { padding-left: 0; margin-left: 0; }
  .about-title   { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Brands */
  .brands-inner { justify-content: center; flex-wrap: wrap; gap: 20px; }

  /* Stats */
  .stats-row  { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Projects */
  .project-item  { flex: 0 0 100%; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .projects-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid  { grid-template-columns: 1fr; }

  /* Team */
  .team-grid  { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step::after { display: none; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* CTA */
  .clients-cta   { grid-template-columns: 1fr; padding: 30px; }

  /* Forms */
  .newsletter-form { flex-direction: column; }
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-form  { padding: 24px; }

  /* Pricing */
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  /* Page hero */
  .page-hero     { padding: 100px 0 50px; }

  /* Error pages */
  .error-nav     { padding: 16px 20px; }
  .error-page    { padding: 90px 20px 40px; }
  .error-code    { font-size: clamp(4.5rem, 20vw, 8rem); }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .container   { padding: 0 16px; }
  .hero-title  { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .section-tag { font-size: 10px; }
  .btn         { padding: 12px 22px; font-size: 14px; }
  .stats-row   { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .clients-cta { padding: 24px 16px; }
  .process-steps { grid-template-columns: 1fr; }

  /* Reduce section heading sizes */
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  h3 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
}

/* ============================================================
   PREMIUM CUSTOM CURSOR (Desktop pointer devices only)
   ============================================================ */
@media (pointer: fine) and (min-width: 1025px) {
  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    will-change: transform;
  }

  .custom-cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    will-change: transform, width, height, border-radius;
    /* NO css transitions — GSAP exclusively controls size/color/radius */
  }

  /* When ring is locked to a button, hide the dot slightly */
  body.cursor-btn-hover .custom-cursor-dot {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.6);
  }

  /* VIEW cursor for project cards */
  body.cursor-hover-view .custom-cursor-ring {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background-color: var(--primary);
    border-color: var(--primary);
  }

  body.cursor-hover-view .custom-cursor-ring::after {
    content: 'VIEW';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-family: var(--font-head);
  }

  body.cursor-hover-view .custom-cursor-dot {
    opacity: 0;
  }
}

/* ============================================================
   LENIS SMOOTH SCROLL OPTIMIZATIONS
   ============================================================ */
html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-aos] {
  transition-duration: 800ms !important;
}

/* ============================================================
   MAGNETIC BUTTON & ICON MICRO-INTERACTIONS
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.3s, 
              background-color 0.3s, 
              color 0.3s;
}

/* Hover translation for icons inside buttons */
.btn iconify-icon {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover iconify-icon[icon*="arrow-right"],
.btn:hover iconify-icon[icon*="send"] {
  transform: translateX(4px);
}

.btn:hover iconify-icon[icon*="chevron-up"] {
  transform: translateY(-3px);
}

/* Magnetic helper class */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}

