/* ========================================
   OutLand Power and Turf — Design System
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rubik+Dirt&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue: #1B3A5C;
  --blue-dark: #122840;
  --blue-light: #2A5580;
  --green: #4CAF50;
  --green-dark: #3D8B40;
  --green-light: #66BB6A;
  --orange: #4CAF50; /* Changed to green per request */
  --orange-light: #66BB6A; /* Changed to green per request */
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-grey: #E8ECF0;
  --grey: #7A8A9A;
  --dark: #1A1A2E;
  --text: #2C3E50;
  --text-light: #5A6B7D;
  --shadow: 0 4px 24px rgba(27, 58, 92, 0.10);
  --shadow-lg: 0 12px 40px rgba(27, 58, 92, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

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); }

.section-subtitle {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
  background: var(--blue);
  box-shadow: 0 6px 24px rgba(27, 58, 92, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.btn-orange:hover {
  background: var(--blue);
  box-shadow: 0 6px 24px rgba(27, 58, 92, 0.3);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(27, 58, 92, 0.1);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px; /* slightly taller to fit the text underneath */
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.logo-outland {
  font-family: 'Rubik Dirt', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #C26732; /* Orange color matching image */
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 4px;
}

.logo-dash {
  color: #122840;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a.active {
  color: var(--green);
  font-weight: 600;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--green);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Transparent navbar state (over hero) */
/* Logo colors remain consistent even when navbar is transparent */

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--green-light);
}

.navbar:not(.scrolled) .nav-links a.active {
  color: var(--green-light);
}

.navbar:not(.scrolled) .nav-links a::after {
  background: var(--green-light);
}

.navbar:not(.scrolled) .hamburger span {
  background: var(--white);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero V2 — Premium Outdoor-Industrial ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

@keyframes heroScrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 15, 20, 0.75) 0%,
      rgba(10, 15, 20, 0.5) 40%,
      rgba(10, 15, 20, 0.6) 70%,
      rgba(10, 15, 20, 0.9) 100%
    ),
    linear-gradient(135deg,
      rgba(27, 58, 92, 0.4) 0%,
      transparent 60%
    );
  z-index: 1;
}

/* Decorative grid lines */
.hero-v2-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: space-evenly;
}

.hero-grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.04) 70%, transparent 100%);
}

/* Inner layout */
.hero-v2-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 60px 0 100px;
  width: 100%;
}

/* Badge */
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  width: fit-content;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.2s;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: heroPulse 2s ease-in-out infinite;
}

/* Title */
.hero-v2-title {
  color: var(--white) !important;
  font-size: clamp(2.4rem, 6vw, 4.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  animation: heroFadeUp 0.8s ease both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.55s; }
.hero-title-line:nth-child(3) { animation-delay: 0.7s; }

.hero-title-accent {
  color: var(--orange) !important;
  position: relative;
}

/* Description */
.hero-v2-desc {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin-bottom: 12px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.85s;
}

.hero-v2-subdesc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--green-light);
  font-weight: 500;
  max-width: 640px;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1s;
}

/* CTA Buttons */
.hero-v2-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1.15s;
}

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--orange);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--orange) 0%, #3D8B40 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.25);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

/* Feature trust cards */
.hero-v2-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1.35s;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: all 0.35s ease;
}

.hero-feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--orange) 0%, #3D8B40 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-feature-text strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-feature-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 400;
}

/* Scroll indicator */
.hero-v2-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1.8s;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  animation: heroScrollLine 2s ease-in-out infinite;
}

.hero-v2-scroll span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-light-grey {
  background: var(--light-grey);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-blue .section-subtitle {
  color: var(--green-light);
}

.section-blue .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.text-center {
  text-align: center;
}

/* ---- Who We Are Section ---- */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.who-we-are-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.who-we-are-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.who-we-are-img:hover img {
  transform: scale(1.04);
}

.who-img-accent {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 100px;
  height: 100px;
  border-left: 4px solid var(--orange);
  border-top: 4px solid var(--orange);
  border-radius: 12px 0 0 0;
  opacity: 0.7;
  pointer-events: none;
  transition: var(--transition);
}

.who-we-are-img:hover .who-img-accent {
  width: 120px;
  height: 120px;
  opacity: 1;
}

.who-we-are-text h2 {
  margin-bottom: 20px;
}

.who-lead {
  font-size: 1.1rem;
  color: var(--text) !important;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}

.who-we-are-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.who-we-are-text p strong {
  color: var(--blue);
}

/* Brand Tags */
.who-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.who-brand-tag {
  display: inline-block;
  padding: 7px 18px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: default;
}

.who-brand-tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 58, 92, 0.2);
}

.who-we-are-text .btn {
  margin-top: 8px;
}

/* ---- What We Do Section ---- */
.what-we-do-section {
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.what-we-do-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.012) 40px,
      rgba(255, 255, 255, 0.012) 41px
    );
  pointer-events: none;
}

.wwd-subtitle {
  color: var(--orange-light) !important;
}

.wwd-title {
  color: var(--white) !important;
}

.wwd-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.wwd-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.wwd-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(76, 175, 80, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.wwd-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, #3D8B40 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25);
  transition: var(--transition);
}

.wwd-card:hover .wwd-card-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.35);
}

.wwd-card h3 {
  color: var(--white) !important;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.wwd-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.wwd-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 0 0 var(--radius) var(--radius);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd-card:hover .wwd-card-line {
  width: 100%;
}

.wwd-supporting {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 700px;
  margin: 48px auto 0;
  line-height: 1.8;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Our Approach Section ---- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.approach-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 44px 32px 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.approach-card-number {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--off-white);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: var(--transition);
}

.approach-card:hover .approach-card-number {
  color: rgba(76, 175, 80, 0.08);
}

.approach-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.approach-card:hover .approach-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.3);
}

.approach-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 700;
}

.approach-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* Approach closing statement */
.approach-closing {
  max-width: 740px;
  margin: 56px auto 0;
  text-align: center;
  position: relative;
}

.approach-closing-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  margin: 0 auto 24px;
}

.approach-closing p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  font-weight: 500;
  font-style: italic;
}

/* ---- Product & Service Category Cards ---- */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.ps-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ps-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.ps-card-img {
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.ps-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ps-card:hover::before {
  transform: scaleX(1);
}

.ps-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.ps-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: var(--transition);
}

.ps-card:hover .ps-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.ps-card-header h3 {
  font-size: 1.15rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ps-card-tagline {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.ps-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  flex: 1;
}

.ps-card-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.ps-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
  opacity: 0.5;
  transition: var(--transition);
}

.ps-card:hover .ps-card-list li::before {
  opacity: 1;
  transform: scale(1.15);
}

.ps-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
  transition: var(--transition);
}

.ps-card-link span {
  transition: transform 0.3s ease;
}

.ps-card-link:hover {
  color: var(--blue);
  gap: 10px;
}

.ps-card-link:hover span {
  transform: translateX(4px);
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 92, 0.6), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---- Gallery Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  line-height: 1;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- Reviews / Testimonials ---- */
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--light-grey);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-card cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  font-style: normal;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-grey);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ---- Reviews Grid (Reviews Page) ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card .testimonial-stars {
  text-align: left;
}

.review-card blockquote {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-card cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  font-style: normal;
}

/* ---- Contact CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ---- Page Header (Inner Pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(76, 175, 80, 0.08);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(76, 175, 80, 0.06);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.page-header .section-subtitle {
  color: var(--green-light);
  position: relative;
  z-index: 1;
}

/* ---- NEW HOMEPAGE SECTIONS ---- */

/* ---- Short Who We Are ---- */
.who-we-are-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.who-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.who-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.who-card h3 {
  font-size: 1.1rem;
  color: var(--blue);
}

/* ---- What We Offer Preview ---- */
.offer-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offer-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.offer-tile-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.offer-tile:hover .offer-tile-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.offer-tile h3 {
  font-size: 1.05rem;
  color: var(--blue);
  transition: var(--transition);
}

.offer-tile:hover h3 {
  color: var(--orange);
}

/* ---- Brands We Supply ---- */
.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.text-white {
  color: var(--white) !important;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin-top: 48px;
}

.brand-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.brand-logo-text:hover {
  color: var(--white);
  transform: scale(1.05);
}

.brand-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
  gap: 12px;
  text-decoration: none;
  position: relative;
  padding: 15px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
}

.brand-logo-link:hover {
  opacity: 1;
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.brand-logo-link::after {
  content: "Shop Now";
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 1.5px solid var(--orange);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.brand-logo-link:hover::after {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4);
}

.brand-logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.brand-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

/* ---- Detailed Sections ---- */
.detailed-section {
  padding: 80px 0;
}

.detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.detailed-grid-rev {
  direction: rtl;
}

.detailed-grid-rev > * {
  direction: ltr;
}

.detailed-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.detailed-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.detailed-img:hover img {
  transform: scale(1.05);
}

.detailed-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.detailed-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--blue);
}

.detailed-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ---- Why Choose OutLand ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card-large {
  grid-column: span 3;
  text-align: center;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.why-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.why-list li {
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-list li::before {
  content: '✓';
  color: var(--green);
}

/* ---- About Page ---- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.values-list {
  margin: 24px 0;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
}

.values-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Products Page ---- */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.product-section:nth-child(even) {
  direction: rtl;
}

.product-section:nth-child(even) > * {
  direction: ltr;
}

.product-section-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-section-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: var(--transition);
}

.product-section-img:hover img {
  transform: scale(1.03);
}

.product-section-text h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.product-section-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.product-features {
  margin: 20px 0;
}

.product-features li {
  padding: 8px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '▸';
  color: var(--green);
  font-weight: 700;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.contact-item-text h4 {
  font-size: 0.95rem;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-item-text a:hover {
  color: var(--green);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
}

.contact-form h3 {
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-message {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: var(--green-dark);
  border: 1px solid var(--green);
}

/* ---- Footer ---- */
.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 72px;
  margin-bottom: 16px;
  /* Mask out the white square corners for transparency */
  -webkit-mask-image: radial-gradient(circle at 50% 45%, black 48%, transparent 50%);
  mask-image: radial-gradient(circle at 50% 45%, black 48%, transparent 50%);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--green);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Used Items Page ---- */
.used-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.used-item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
  position: relative;
}

.used-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.used-item-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.used-item-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.used-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.used-item-card:hover .used-item-img img {
  transform: scale(1.05);
}

.used-item-body {
  padding: 24px 28px 28px;
}

.used-item-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--blue);
}

.used-item-condition {
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 10px;
}

.used-item-body > p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.used-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
}

.used-item-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Empty State */
.used-items-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--light-grey);
}

.used-items-empty-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.used-items-empty h3 {
  margin-bottom: 12px;
  color: var(--blue);
}

.used-items-empty p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .who-we-are-grid,
  .about-content,
  .product-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-section:nth-child(even) {
    direction: ltr;
  }

  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-v2-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-we-are-img img {
    height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-v2 {
    min-height: auto;
    padding-top: 90px;
  }

  .hero-v2-inner {
    padding: 40px 0 80px;
    gap: 36px;
  }

  .hero-v2-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
    letter-spacing: -0.8px;
  }

  .hero-v2-desc {
    font-size: 0.98rem;
  }

  .hero-v2-scroll {
    display: none;
  }

  .navbar:not(.scrolled) .nav-links a {
    color: var(--text-dark) !important;
  }
  .navbar:not(.scrolled) .nav-links a:hover,
  .navbar:not(.scrolled) .nav-links a.active {
    color: var(--green) !important;
  }

  .detailed-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .detailed-grid-rev {
    direction: ltr !important;
  }

  .detailed-grid-rev > * {
    direction: ltr !important;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-card-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 60px 0;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .approach-card {
    padding: 36px 28px 30px;
  }

  .approach-card-number {
    font-size: 3.5rem;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  .hero-v2-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem) !important;
  }

  .hero-v2-buttons {
    flex-direction: column;
  }

  .hero-v2-buttons .btn,
  .hero-v2-buttons .btn-hero-primary,
  .hero-v2-buttons .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-feature-card {
    padding: 16px 18px;
  }

  .hero-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-card {
    padding: 28px 22px 24px;
  }

  .approach-card {
    padding: 32px 22px 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 32px 24px;
  }
}

/* ---- Mobile Nav Overlay ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  color: #FFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---- Custom Chatbot Float & Window ---- */
.chatbot-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 115px;
  right: 40px;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.chatbot-window {
  position: fixed;
  bottom: 190px;
  right: 40px;
  width: 320px;
  height: 400px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-grey);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot-window.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.chatbot-header {
  background: var(--blue);
  color: var(--white);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1rem;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off-white);
}

.chatbot-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chatbot-msg.bot {
  background: var(--white);
  color: var(--text);
  align-self: flex-start;
  border: 1px solid var(--light-grey);
  border-bottom-left-radius: 4px;
}

.chatbot-msg.user {
  background: var(--blue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-input-area {
  display: flex;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

#chatbot-input:focus {
  outline: none;
  border-color: var(--blue);
}

#chatbot-send {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  margin-left: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}

#chatbot-send:hover {
  background: var(--blue-dark);
}

@media (max-width: 768px) {
  .chatbot-float {
    width: 50px;
    height: 50px;
    bottom: 85px; /* Above mobile whatsapp */
    right: 20px;
  }
  .chatbot-float svg {
    width: 20px;
    height: 20px;
  }
  .chatbot-window {
    right: 20px;
    bottom: 145px;
    width: calc(100vw - 40px);
    height: 60vh;
  }
}

/* ---- Mobile-only CTA blocks (hidden on desktop) ---- */
.mobile-ps-cta,
.mobile-gallery-cta {
  display: none;
}

/* ---- Mobile Layout Fixes ---- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
  }

  /* Hide the extra logo in the hero section on mobile */
  .hero-v2-logo {
    display: none !important;
  }

  /* ---- Navbar: show text but smaller ---- */
  .nav-logo-text {
    display: flex !important;
  }

  .logo-outland {
    font-size: 1.2rem !important;
    letter-spacing: 1px !important;
  }

  .logo-sub {
    font-size: 0.45rem !important;
    letter-spacing: 2px !important;
    margin-top: 2px !important;
  }

  .nav-logo img {
    height: 45px;
  }

  .nav-logo {
    gap: 8px !important;
    flex-shrink: 0;
  }

  /* ---- Who We Are Cards: stack all 3 vertically ---- */
  .who-we-are-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .who-card {
    padding: 24px 20px;
  }

  /* ---- Products & Services: hide grid, show single CTA ---- */
  .ps-grid {
    display: none !important;
  }

  .desktop-only-btn {
    display: none !important;
  }

  .mobile-ps-cta {
    display: block !important;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 1px solid var(--light-grey);
    transition: all 0.35s ease;
    margin-top: 8px;
  }

  .mobile-ps-cta:hover,
  .mobile-ps-cta:active {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 58, 92, 0.2);
  }

  .mobile-ps-cta-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .mobile-ps-cta-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .mobile-ps-cta-content {
    padding: 24px 20px;
    text-align: center;
  }

  .mobile-ps-cta-content h3 {
    font-size: 1.2rem;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .mobile-ps-cta-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .mobile-ps-cta-btn {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  }

  /* ---- Gallery: hide grid, show simple CTA ---- */
  .desktop-gallery {
    display: none !important;
  }

  .mobile-gallery-cta {
    display: block !important;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 1px solid var(--light-grey);
    transition: all 0.35s ease;
    margin-top: 8px;
  }

  .mobile-gallery-cta:hover,
  .mobile-gallery-cta:active {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 58, 92, 0.2);
  }

  .mobile-gallery-cta-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .mobile-gallery-cta-images img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }

  .mobile-gallery-cta-content {
    padding: 24px 20px;
    text-align: center;
  }

  .mobile-gallery-cta-content h3 {
    font-size: 1.2rem;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .mobile-gallery-cta-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .mobile-gallery-cta-btn {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.3);
  }

  /* ---- Why Choose OutLand: single column on mobile ---- */
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .why-card {
    padding: 28px 24px;
  }

  .why-card-large {
    grid-column: span 1 !important;
    text-align: left;
  }

  .why-list {
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  /* ---- Fix hamburger menu visibility ---- */
  .hamburger {
    display: flex !important;
    margin-left: auto;
  }
  
  /* Hide the navbar overlay to prevent invisible clickable areas */
  .nav-overlay {
    display: none;
  }
  
  .nav-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }

  /* Prevent any element from causing horizontal overflow */
  .container,
  .section,
  .hero-v2,
  .footer,
  .cta-section,
  .brands-grid,
  .footer-grid {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Brands grid fix */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}



/* ---- Service Overlap Layout ---- */
.service-overlap {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .service-overlap {
    flex-direction: row;
    align-items: flex-start;
  }
}

.service-overlap-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

@media (min-width: 992px) {
  .service-overlap-img {
    width: 60%;
    margin-top: 40px;
  }
}

.service-overlap-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.service-overlap-img:hover img {
  transform: scale(1.05);
}

.service-overlap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(27, 58, 92, 0.15);
  z-index: 2;
  position: relative;
  margin-top: -60px;
  width: 92%;
}

@media (min-width: 992px) {
  .service-overlap-card {
    width: 50%;
    margin-top: 0;
    margin-left: -10%;
  }
}

.service-overlap-card h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  color: var(--blue-dark);
}

.service-overlap-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.feature-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .feature-pills {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-pill {
  display: flex;
  align-items: center;
  background: var(--off-white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--blue-dark);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
}

.feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  margin-right: 12px;
  font-size: 14px;
  font-weight: bold;
}

.service-overlap-cta {
  border-top: 1px solid var(--light-grey);
  padding-top: 32px;
  text-align: center;
}

.service-overlap-cta .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .service-overlap-cta .btn {
    width: auto;
    padding: 16px 40px;
  }
}

/* ---- Premium Gradient Layout ---- */
.premium-gradient-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #204060 100%);
  position: relative;
}

.unified-content-card {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(to bottom right, #ffffff, #f0f4f8);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin: 0 auto;
}

.unified-card-top-grid {
  display: flex;
  flex-direction: column;
}

.unified-card-text {
  width: 100%;
  padding: 60px 80px;
  text-align: center;
}

.unified-card-text h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.unified-card-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.brands-dark-strip {
  background: var(--blue-dark);
  padding: 40px 20px;
  text-align: center;
}

.shop-here-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---- Mobile Layout Adjustments ---- */
@media (max-width: 768px) {
  .premium-gradient-section {
    padding: 40px 0;
  }
  
  .unified-card-text {
    padding: 40px 24px;
  }
  
  .unified-card-text h2 {
    font-size: 1.8rem;
  }
  
  .brands-dark-strip {
    padding: 32px 16px;
  }
  
  .shop-here-title {
    font-size: 1.25rem;
  }
}
