/* =============================================
   ARTISPHERE TECHNICAL SERVICE LLC
   Main Stylesheet
   Colors: #ffd565 (Gold) | #000000 (Black)
   ============================================= */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e5a700;
  --gold-dark: #997b03;
  --gold-light: #fff3c4;
  --black: #000000;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #222222;
  --gray-light: #444444;
  --off-white: #f9f7f2;
  --white: #ffffff;
  --border: #e5e0d5;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.13);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s ease;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  /* overflow-x: hidden removed from body — it breaks position:fixed on mobile */
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--gray);
  font-size: 1rem;
}

/* --- UTILITY --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

body.home-root .section-pad {
  padding: 70px 0;
}

body.home-root .hero-grid {
  gap: 40px;
}

body.home-root .hero-btns {
  gap: 12px;
  margin-bottom: 32px;
}

body.home-root .hero-desc {
  margin-bottom: 28px;
}

body.home-root .hero-card {
  margin-bottom: 28px;
}

body.home-root .about-grid {
  gap: 28px;
}

body.home-root .about-features {
  gap: 16px;
}

body.home-root .about-feature {
  gap: 16px;
}

.text-gold {
  color: var(--gold-dark);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

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

.bg-off-white {
  background: var(--off-white);
}

.bg-gold {
  background: var(--gold);
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-header .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  color: var(--dark);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-header .divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 18px rgba(255, 213, 101, 0.35);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 213, 101, 0.45);
}

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

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

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

.btn-outline-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-lg {
  padding: 17px 42px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  padding: 9px 0;
  border-bottom: 2px solid var(--gold);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar i {
  color: var(--gold);
  font-size: 0.9rem;
}

.top-bar .social-links {
  display: flex;
  gap: 10px;
}

.top-bar .social-links a {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.top-bar .social-links a:hover {
  background: var(--gold);
  color: var(--black);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  transition: var(--transition);
  overflow: visible;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 20px;
  height: 72px;
  gap: 0;
  overflow: visible;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.logo-icon i {
  color: var(--gold);
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.logo-text .name span {
  color: var(--gold-dark);
}

.logo-text .tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  flex: 1;
  justify-content: center;
  padding: 0 8px;
  min-width: 0;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 8px;
  font-weight: 600;
  font-size: 0.80rem;
  color: #111111;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: -0.1px;
}

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

.nav-link i.chevron {
  font-size: 0.65rem;
  transition: var(--transition);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222222;
  transition: var(--transition);
}

.dropdown-item a i {
  color: var(--gold-dark);
  width: 18px;
  font-size: 0.85rem;
}

.dropdown-item a:hover {
  background: var(--off-white);
  color: var(--dark);
  padding-left: 24px;
}

.dropdown-cols {
  display: flex;
  gap: 0;
}

.dropdown-cols .dropdown-col {
  flex: 1;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Header CTA */
/* Header CTA — desktop only */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
}

/* =============================================
   HAMBURGER — shown by default, hidden at desktop
   ============================================= */
.hamburger {
  display: flex !important;
  /* Force always visible — only hidden at desktop via min-width query */
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border-radius: 8px;
  border: 1.5px solid #cccccc;
  z-index: 1100;
  position: relative;
}

.hamburger:hover,
.hamburger:active {
  background: #f5f5f5;
  border-color: #999;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: #111111;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100%;
  max-height: 100dvh;
  background: var(--white);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--dark);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mobile-nav-body {
  padding: 10px 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.97rem;
  color: #111111;
  border-bottom: 1px solid var(--off-white);
}

.mobile-nav-link:hover {
  background: var(--off-white);
  color: var(--gold-dark);
}

.mobile-nav-link.has-sub {
  cursor: pointer;
}

.mobile-sub {
  display: none;
  background: var(--off-white);
  padding: 6px 0;
}

.mobile-sub.open {
  display: block;
}

.mobile-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  font-size: 0.92rem;
  color: #222222;
  font-weight: 600;
}

.mobile-sub a:hover {
  color: var(--gold-dark);
}

.mobile-sub a i {
  color: var(--gold-dark);
  width: 16px;
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #111 100%);
  background-size: cover;
  background-position: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px,
      transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-accent {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 101, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-accent-2 {
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 101, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.inline-logo {
  display: inline-block;
  /* important */
  height: 4rem;
  /* matches text size */
  width: auto;
  vertical-align: middle;
  /* aligns with text */
  margin: 0 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 213, 101, 0.12);
  border: 1px solid rgba(255, 213, 101, 0.3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-badge i {
  font-size: 0.9rem;
}

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

.hero h1 span {
  color: var(--gold);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 500;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
  background: var(--gold);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-img-main {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-card-header i {
  font-size: 1.3rem;
  color: var(--dark);
}

.hero-card-header h3 {
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
}

.hero-card-body {
  padding: 24px;
}

.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.hero-card-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 14px;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.hero-card-service:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.hero-card-service i {
  color: var(--gold-dark);
  width: 18px;
}

.hero-card-footer {
  background: var(--off-white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-footer .rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-card-footer .stars {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.hero-card-footer .rating-text {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 600;
}

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-strip {
  background: var(--gold);
  padding: 22px 0;
}

.services-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
  white-space: nowrap;
}

.strip-item i {
  font-size: 1rem;
}

.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.2);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-img-main .img-placeholder i {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

.about-img-main .img-placeholder span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.about-badge-exp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-badge-exp strong {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.about-badge-exp span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 20px;
}

.about-features {
  margin: 28px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon i {
  color: var(--dark);
  font-size: 1rem;
}

.about-feature-text h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.about-feature-text p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gold);
}

.service-card-icon i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-card-icon i {
  color: var(--dark);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-dark);
}

.service-card-link i {
  transition: var(--transition);
  font-size: 0.8rem;
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content .why-items {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.why-item-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.why-item-text h4 {
  color: var(--dark);
  margin-bottom: 6px;
}

.why-item-text p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-stat {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.why-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--dark);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  background: var(--gold);
}

.process-icon i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.process-step:hover .process-icon i {
  color: var(--dark);
}

.process-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--dark);
}

.process-step h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--gray);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner .hero-pattern {
  opacity: 0.03;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-content h2 span {
  color: var(--gold);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #222222;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: #555555;
}

.testimonial-stars {
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 0.78rem;
}

/* =============================================
   COVERAGE / AREAS
   ============================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.area-tag i {
  color: var(--gold-dark);
  font-size: 0.8rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.75);
}

.footer-top {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.8);
  margin: 16px 0 24px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgb(0, 0, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  color: black;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(0, 0, 0, 0.85);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: rgba(0, 0, 0, 0.75);
}

.footer-bottom p span {
  color: var(--gold);
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgb(0, 0, 0);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* =============================================
   LOGO IMAGE — increased for better presence
   ============================================= */
/* Main header logo */
.logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

/* Mobile nav logo */
.logo-img-nav {
  height: 50px;
  max-width: 200px;
  filter: brightness(0) invert(1);
}

/* Footer logo — keep natural colors (footer is now light bg) */
.footer .logo-img {
  height: 70px;
  max-width: 240px;
  margin-bottom: 4px;
}

/* Responsive: shrink logo on small screens */
@media (max-width: 767px) {
  .footer .logo-img {
    height: 60px;
    max-width: 200px;
  }

  .logo-img {
    height: 50px;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 46px;
    max-width: 160px;
  }

  .footer .logo-img {
    height: 54px;
    max-width: 180px;
  }
}

/* =============================================
   INLINE LOGO — replaces "Artisphere" text in paragraphs
   ============================================= */
.inline-logo {
  display: inline-block;
  height: 1.1em;
  width: auto;
  vertical-align: -0.18em;
  margin: 0 2px;
  object-fit: contain;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-btns {
  position: fixed;
  right: 22px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-whatsapp {
  background: #25D366;
}

.float-phone {
  background: var(--gold);
  color: var(--dark);
}

.float-btn-label {
  position: absolute;
  right: 62px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-btn-label {
  opacity: 1;
}

.float-btn {
  position: relative;
}

.scroll-top {
  width: 42px;
  height: 42px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}

.page-hero .hero-pattern {
  opacity: 0.04;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.84rem;
}

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

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

.breadcrumb i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

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

.page-hero h1 span {
  color: var(--gold);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.service-detail-content h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: #222222;
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
}

.service-highlight {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.service-highlight p {
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

.service-features {
  margin: 28px 0;
}

.service-features h3 {
  color: var(--dark);
  margin-bottom: 18px;
}

.service-features ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #222222;
  font-weight: 500;
}

.service-features li i {
  color: var(--gold-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
}

.service-img-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
}

.service-img-placeholder span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-quote {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-quote h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.sidebar-quote p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: var(--transition);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 213, 101, 0.06);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-field select option {
  background: var(--dark);
}

.sidebar-contact {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-contact h4 {
  color: var(--dark);
  margin-bottom: 16px;
}

.sidebar-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #222222;
}

.sidebar-contact-item i {
  color: var(--gold-dark);
  font-size: 1rem;
}

.sidebar-contact-item strong {
  color: var(--dark);
}

/* =============================================
   ABOUT PAGE SPECIFICS
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-img {
  height: 220px;
  background: linear-gradient(135deg, var(--dark), #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-img i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.7;
}

.team-body {
  padding: 20px;
}

.team-body h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 1rem;
}

.team-body span {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.team-body p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 10px;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-icon i {
  font-size: 1.6rem;
  color: var(--dark);
}

.value-card h4 {
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.93rem;
  color: var(--gray);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: var(--dark);
}

.contact-info-text h4 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-info-text a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 36px;
}

.contact-form-wrap h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-wrap>p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--dark);
  transition: var(--transition);
  width: 100%;
  background: var(--white);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 213, 101, 0.15);
}

.cf-field textarea {
  resize: vertical;
  min-height: 120px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background: #e5e0d5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1.5px solid var(--border);
}

.map-wrap i {
  font-size: 3rem;
  color: var(--gray-light);
}

/* =============================================
   SERVICES ALL PAGE
   ============================================= */
.services-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-all-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-all-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-all-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark), #252525);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-all-img i {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.service-all-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-all-body h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-all-body p {
  font-size: 0.93rem;
  color: var(--gray);
  flex: 1;
  line-height: 1.7;
}

.service-all-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-all-footer a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-all-footer a i {
  transition: var(--transition);
}

.service-all-card:hover .service-all-footer a i {
  transform: translateX(4px);
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* AOS only hides elements AFTER JS has confirmed it is running */
html.js-ready [data-aos] {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js-ready [data-aos="fade-up"] {
  transform: translateY(24px);
}

html.js-ready [data-aos="fade-right"] {
  transform: translateX(-24px);
}

html.js-ready [data-aos="fade-left"] {
  transform: translateX(24px);
}

html.js-ready [data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* =============================================
   DESKTOP ONLY — hide hamburger, show nav + CTA
   ============================================= */
@media (min-width: 1281px) {
  .hamburger {
    display: none !important;
  }

  /* hamburger hidden on desktop */
  .header-cta {
    display: flex !important;
  }

  /* CTA visible on desktop */
}

/* =============================================
   RESPONSIVE - LARGE (nav fits but tight)
   ============================================= */
@media (max-width: 1400px) and (min-width: 1281px) {
  .nav {
    padding: 0 4px;
  }

  .nav-link {
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .logo-img {
    height: 38px;
    max-width: 130px;
  }

  .header-cta .btn {
    font-size: 0.78rem;
    padding: 9px 14px;
  }
}

/* =============================================
   LAPTOP / MEDIUM DESKTOP (1025–1280px) — MacBook Air range
   Keep desktop layouts but slightly tighter
   ============================================= */
@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr -0.05fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

  .why-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

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

  .service-detail-grid {
    grid-template-columns: 2fr 1fr;
    gap: 36px;
  }

  .section-pad {
    padding: 80px 0;
  }
}

/* =============================================
   TABLET (768–1024px) — iPad range
   Mostly two-column layouts; full nav still visible
   ============================================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-all-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

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

  .process-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-sidebar {
    position: static;
    max-width: 720px;
    margin: 0 auto;
  }

  .coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .fs-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* =============================================
   MOBILE ONLY (≤767px) — single column
   ============================================= */
@media (max-width: 767px) {
  .container {
    padding: 0 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: .95rem;
  }

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

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

  .services-all-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .process-grid::before {
    display: none;
  }

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

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

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

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-sidebar {
    position: static;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header .container {
    height: 64px;
    padding: 0 16px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .top-bar-left {
    display: none;
  }

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

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stats strong {
    font-size: 1.4rem;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .fs-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    text-align: center;
    justify-content: center;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

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

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

  .services-strip .container {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .strip-divider {
    display: none;
  }

  .about-badge-exp {
    width: 100px;
    height: 100px;
    right: -10px;
    bottom: -10px;
  }

  .about-badge-exp strong {
    font-size: 2rem;
  }

  .logo-img {
    height: 34px;
    max-width: 110px;
  }

  .section-header h2 {
    font-size: 1.45rem;
  }

  .section-pad {
    padding: 48px 0;
  }

  .service-card {
    padding: 22px;
  }
}

/* =============================================
   TESTIMONIALS SLIDER (CSS scroll-snap)
   ============================================= */
.testimonials-slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 18px;
}

.testimonials-track-wrap::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.testimonials-track .testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100vw - 100px) / 3);
  max-width: calc((1180px - 48px) / 3);
  min-width: 280px;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc((100vw - 80px) / 2);
    max-width: 480px;
  }
}

@media (max-width: 767px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: none;
  }

  .testimonials-track {
    gap: 16px;
  }

  .testimonials-track-wrap {
    padding: 4px 2px 18px;
  }
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.testimonial-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 6px;
}

/* =============================================
   AFSAL ACCORDION (FAQ)
   ============================================= */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.afsal-accordion {
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  padding: 20px 24px;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  outline: none;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.afsal-accordion::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.afsal-accordion:hover,
.afsal-accordion.active {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(255, 213, 101, 0.18);
  color: var(--gold-dark);
}

.afsal-accordion.active::after {
  content: "\2212";
  /* minus sign */
  background: var(--gold);
  color: var(--dark);
  transform: rotate(180deg);
}

.afsal-panel {
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
  padding: 0 24px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -8px;
  border: 1.5px solid transparent;
}

.afsal-panel.show {
  max-height: 1200px;
  padding: 18px 24px 22px;
  margin-top: -4px;
  opacity: 1;
  border-color: var(--gold);
  border-top: none;
  box-shadow: 0 4px 18px rgba(255, 213, 101, 0.12);
}

.afsal-panel p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  display: block;
}

.afsal-panel p+p {
  margin-top: 12px;
}

.afsal-panel a {
  color: var(--gold-dark);
  font-weight: 600;
}

.afsal-panel a:hover {
  text-decoration: underline;
}

.afsal-panel strong {
  color: var(--dark);
}

@media (max-width: 767px) {
  .afsal-accordion {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .afsal-panel.show {
    padding: 14px 18px 18px;
  }
}

/* =============================================
   FAQ ACCORDION — modern redesign (v2)
   ============================================= */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.afsal-accordion {
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  padding: 22px 26px;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-align: left;
  outline: none;
  font-size: 1.02rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: -0.1px;
  line-height: 1.4;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.afsal-accordion::after {
  content: "\f067";
  /* Font Awesome plus */
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    color 0.3s ease;
}

.afsal-accordion:hover {
  border-color: var(--gold);
  background: #fffbe9;
  box-shadow: 0 6px 22px rgba(255, 213, 101, 0.14);
  color: var(--gold-dark);
}

.afsal-accordion.active {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(255, 213, 101, 0.18);
  color: var(--gold-dark);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.afsal-accordion.active::after {
  content: "\f068";
  /* Font Awesome minus */
  background: var(--gold);
  color: var(--dark);
  transform: rotate(180deg);
}

.afsal-panel {
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s ease,
    opacity 0.35s ease,
    margin 0.3s ease,
    border-color 0.3s ease;
  padding: 0 26px;
  border-radius: 0 0 14px 14px;
  margin-top: -14px;
  border: 1.5px solid transparent;
}

.afsal-panel.show {
  max-height: 1500px;
  padding: 4px 26px 24px;
  margin-top: -2px;
  opacity: 1;
  border-color: var(--gold);
  border-top: none;
  box-shadow: 0 8px 28px rgba(255, 213, 101, 0.10);
}

.afsal-panel p {
  color: var(--gray-light);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0;
}

.afsal-panel p+p {
  margin-top: 12px;
}

.afsal-panel a {
  color: var(--gold-dark);
  font-weight: 600;
}

.afsal-panel a:hover {
  text-decoration: underline;
}

.afsal-panel strong {
  color: var(--dark);
}

@media (max-width: 767px) {
  .faq-list {
    gap: 10px;
  }

  .afsal-accordion {
    padding: 16px 18px;
    font-size: 0.95rem;
    border-radius: 12px;
    gap: 12px;
  }

  .afsal-accordion::after {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .afsal-panel {
    padding: 0 18px;
    border-radius: 0 0 12px 12px;
  }

  .afsal-panel.show {
    padding: 4px 18px 20px;
  }
}

/* =============================================
   BRAND NAME (inline "Artisphere" text in paragraphs)
   ============================================= */
.brand-name {
  display: inline-block;
  font-weight: 800;
  font-size: 1.08em;
  color: var(--gold-dark);
  letter-spacing: -0.2px;
  background: linear-gradient(180deg, var(--gold-dark) 0%, #b88a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.brand-name:hover {
  transform: translateY(-1px) scale(1.02);
}

/* Also lift the inline-logo image used in paragraphs (replaces "Artisphere" text) */
.inline-logo {
  display: inline-block;
  height: 1.25em;
  width: auto;
  vertical-align: -0.22em;
  margin: 0 3px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.10));
}

/* Slightly larger inside the dark hero band so the brand reads cleanly */
.hero-desc .inline-logo,
.cta-banner .inline-logo {
  height: 1.5em;
  vertical-align: -0.32em;
}

/* =============================================
   STORAGE SOLUTIONS — list grid layout
   ============================================= */
.storage-grid-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.storage-grid-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--gray);
  background: var(--off-white);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.storage-grid-list li:hover {
  border-color: var(--gold);
  background: #fffbe9;
  transform: translateY(-2px);
}

.storage-grid-list li i {
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .storage-grid-list {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   BLOG — Listing grid & Single Post layout
   ============================================= */

/* Blog hero — reuses .page-hero spacing, dark background with image overlay */
.blog-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 70px;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .78) 100%);
  z-index: 1;
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero .breadcrumb {
  margin-bottom: 18px;
}

.blog-hero .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.blog-hero h1 {
  color: #fff;
  max-width: 760px;
  margin-bottom: 14px;
}

.blog-hero h1 span {
  color: var(--gold);
}

.blog-hero .lead {
  color: rgba(255, 255, 255, .92);
  font-size: 1.08rem;
  max-width: 640px;
  line-height: 1.8;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Blog card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .10);
  border-color: var(--gold);
}

.blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--off-white);
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
}

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

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.blog-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .78rem;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.blog-card-meta span i {
  color: var(--gold-dark);
  margin-right: 5px;
}

.blog-card h3 {
  font-size: 1.16rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--dark);
}

.blog-card h3 a {
  color: inherit;
  transition: color .25s ease;
}

.blog-card h3 a:hover {
  color: var(--gold-dark);
}

.blog-card p {
  color: var(--gray-light);
  font-size: .92rem;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}

.blog-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--gold-dark);
  align-self: flex-start;
  transition: gap .25s ease, color .25s ease;
}

.blog-card-btn i {
  transition: transform .25s ease;
}

.blog-card-btn:hover {
  gap: 12px;
  color: var(--dark);
}

.blog-card-btn:hover i {
  transform: translateX(3px);
}

/* Blog grid — responsive */
@media (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-card-body {
    padding: 20px 20px 22px;
  }
}

/* =============================================
   BLOG — Single post layout
   ============================================= */
.blog-post {
  max-width: 820px;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .88rem;
  color: var(--gray-light);
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.blog-post-meta i {
  color: var(--gold-dark);
  margin-right: 6px;
}

.blog-post-featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  max-height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-post-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #2a2a2a;
}

.blog-post-content>p {
  margin: 0 0 22px;
}

.blog-post-content h2 {
  margin: 44px 0 16px;
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  color: var(--dark);
  position: relative;
  padding-left: 16px;
}

.blog-post-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: .15em;
  bottom: .15em;
  width: 4px;
  border-radius: 4px;
  background: var(--gold);
}

.blog-post-content h3 {
  margin: 28px 0 12px;
  font-size: 1.18rem;
  color: var(--dark);
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 22px 24px;
  padding: 0;
}

.blog-post-content ul li,
.blog-post-content ol li {
  margin-bottom: 8px;
  color: #2a2a2a;
}

.blog-post-content ul {
  list-style: disc outside;
}

.blog-post-content ol {
  list-style: decimal outside;
}

.blog-post-content blockquote {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #5b4500;
}

.blog-post-content a {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.blog-post-content a:hover {
  color: var(--dark);
}

.blog-post-content strong {
  color: var(--dark);
}

.blog-post-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 22px 0;
}

/* In-post CTA banner */
.blog-post-cta {
  margin-top: 48px;
  padding: 34px 36px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
}

.blog-post-cta h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.blog-post-cta p {
  color: rgba(255, 255, 255, .78);
  font-size: .98rem;
  margin-bottom: 22px;
}

.blog-post-cta .btn {
  margin: 6px 6px 0;
}

/* Related posts strip */
.blog-related {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.blog-related h3 {
  font-size: 1.25rem;
  margin-bottom: 22px;
  color: var(--dark);
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.blog-related-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.blog-related-card:hover {
  border-color: var(--gold);
  background: #fffbe9;
  transform: translateY(-2px);
}

.blog-related-card img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.blog-related-card-body strong {
  display: block;
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

.blog-related-card-body span {
  font-size: .76rem;
  color: var(--gray-light);
}

/* Mobile adjustments for single post */
@media (max-width: 767px) {
  .blog-post-featured-img {
    max-height: 280px;
    margin-bottom: 26px;
  }

  .blog-post-content {
    font-size: .98rem;
  }

  .blog-post-content h2 {
    margin: 32px 0 12px;
    padding-left: 12px;
    font-size: 1.3rem;
  }

  .blog-post-content h3 {
    font-size: 1.08rem;
  }

  .blog-post-cta {
    padding: 26px 22px;
  }

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

  .blog-related-card img {
    width: 80px;
    height: 60px;
  }
}