/* ============================================================
   PREMIER OIL TUNA B.V. — HOMEPAGE STYLES (CLEANED)
   ============================================================ */
/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body.no-scroll {
    overflow: hidden;
    padding-right: 15px; /* Prevents layout shift when scrollbar disappears */
}
/* ── GLOBAL RESETS & VARIABLES (Partial – Uses main.css) ── */
:root {
  --orange: #e85d04;
  --orange-light: #f48c06;
  --gold: #d4a017;
  --gold-light: #e6c35c;
  --navy: #0a1628;
  --navy-2: #0e1c34;
  --navy-3: #05101f;
  --navy-4: #020a14;
  --bg: #f7f8fc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --accent: var(--orange);
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --glass-bg: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] {
  --bg: #0a0f1a;
  --bg-secondary: #0f1420;
  --bg-card: #141a2a;
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #cbd5e0;
  --text-muted: #94a3b8;
  --glass-bg: rgba(0, 0, 0, 0.3);
}

/* ── HERO SECTION (Refined for nav spacing) ── */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* Ensures no overlap with nav */
  padding-top: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  animation: zoomSlide 8s ease forwards;
  background-color: #0a1628;
}

@keyframes zoomSlide {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,14,27,0.2) 0%,
    rgba(7,14,27,0.15) 40%,
    rgba(7,14,27,0.6) 80%,
    rgba(7,14,27,0.85) 100%
  );
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.hero-accent-line {
  position: absolute;
  top: 0;
  right: 25%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(232,93,4,0.4) 40%, rgba(212,160,23,0.3) 70%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-content.hero-transitioning {
  opacity: 0;
  transform: translateY(12px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.8s 0.2s both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.9s 0.35s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: white;
  max-width: 640px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
  animation: fadeSlideUp 0.9s 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
  animation: fadeSlideUp 0.9s 0.65s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  animation: fadeSlideUp 1s 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.hero-dot {
  width: 4px;
  height: 20px;
  border-radius: 99px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--orange);
  height: 32px;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 5;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeSlideUp 1s 0.8s both;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.hero-badge-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero { height: 75vh; min-height: 550px; }
  .hero-title { font-size: clamp(2rem, 5.5vw, 3.5rem); }
  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  .hero { height: 70vh; min-height: 500px; }
  .hero-title { font-size: 1.9rem; line-height: 1.2; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-dots { bottom: 1rem; right: 1rem; }
  .hero-scroll { bottom: 1rem; }
}

/* ── OVERVIEW SECTION ── */
.overview {
  padding: 7rem 0;
  background: var(--bg);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.overview-text .section-subtitle { margin-bottom: 2rem; }

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.overview-feature i {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(232,93,4,0.12), rgba(212,160,23,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
  flex-shrink: 0;
}

.overview-visual { position: relative; }

.overview-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.overview-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overview-image-card:hover img { transform: scale(1.02); }

.overview-float-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.9);
}

[data-theme="dark"] .overview-float-card {
  background: rgba(15, 32, 64, 0.9);
}

.overview-float-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.overview-float-card strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.overview-float-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── HIGHLIGHTS SECTION ── */
.highlights-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.highlight-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.highlight-item:hover {
  transform: translateY(-8px);
  border-color: rgba(232,93,4,0.3);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}

.highlight-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SERVICES SECTION ── */
.services {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,93,4,0.3);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232,93,4,0.12), rgba(212,160,23,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
  animation: float 5s ease-in-out infinite;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.service-card:hover h3 { color: var(--accent); }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}

.service-card:hover .service-link { gap: 0.8rem; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── FEATURED PROJECT ── */
.featured-project {
  padding: 7rem 0;
  background: var(--bg);
}

.project-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.project-content p {
  margin: 1.5rem 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.project-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.project-stats div { text-align: left; }

.project-stats strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
}

.project-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.project-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.project-visual img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.project-visual:hover img { transform: scale(1.02); }

@media (max-width: 768px) {
  .project-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .project-stats { justify-content: center; }
}

/* ── MAP SECTION ── */
.map-section {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.04) 0%, transparent 70%);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.map-operations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-op-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.map-op-item:hover,
.map-op-item.active {
  background: rgba(232,93,4,0.06);
  border-color: rgba(232,93,4,0.25);
  transform: translateX(6px);
}

.map-op-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232,93,4,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,93,4,0.2); }
  50% { box-shadow: 0 0 0 7px rgba(232,93,4,0.08); }
}

.map-op-item strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.map-op-item span { font-size: 0.8rem; color: var(--text-muted); }

.map-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  min-height: 400px;
}

.world-map-svg {
  width: 100%;
  height: auto;
  opacity: 0.25;
}

.leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.map-visual .leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.leaflet-tooltip.map-tooltip {
  background: rgba(7, 14, 27, 0.95);
  color: #fff;
  border: 1px solid rgba(232,93,4,0.35);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
  .map-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── ENERGY TRANSITION ── */
.transition-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
}

.transition-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(232,93,4,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(212,160,23,0.12) 0%, transparent 45%);
}

.transition-section .container { position: relative; z-index: 1; }

.transition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.transition-text .section-label { color: var(--gold-light); }
.transition-text .section-title { color: #fff; }
.transition-text .section-subtitle { color: rgba(255,255,255,0.65); }

.transition-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.transition-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}

.pillar-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pillar-text span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.transition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.transition-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.transition-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,93,4,0.3);
  transform: translateY(-5px);
}

.transition-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.transition-card span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 1024px) {
  .transition-grid { grid-template-columns: 1fr; gap: 3rem; }
  .transition-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .transition-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── SUSTAINABILITY STRIP ── */
.sustain-strip {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sustain-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.sustain-item:hover {
  border-color: rgba(232,93,4,0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sustain-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(212,160,23,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
  animation: float 5s ease-in-out infinite;
}

.sustain-item:hover .sustain-icon {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  transform: scale(1.1);
}

.sustain-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sustain-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sustain-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── STATS SECTION ── */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-4) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-section .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.stat-item:hover {
  border-color: rgba(232,93,4,0.3);
  background: rgba(232,93,4,0.05);
  transform: translateY(-5px);
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 7rem 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,4,0.2);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(212,160,23,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s;
  animation: float 4.5s ease-in-out infinite;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
}

.why-text h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.why-text p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

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

/* ── CORPORATE STATEMENTS ── */
.statements-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.statements-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}

.statements-track:hover { animation-play-state: paused; }

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.statement-card {
  width: 380px;
  flex-shrink: 0;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.statement-quote {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.statement-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.statement-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.statement-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── NEWS SECTION ── */
.news-section {
  padding: 7rem 0;
  background: var(--bg);
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.news-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,93,4,0.2);
}

.news-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.news-card.featured .news-thumb { height: 280px; }

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

.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--orange);
  color: #fff;
  z-index: 2;
}

.news-body { padding: 1.5rem; }

.news-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.news-title {
  font-family: 'inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.news-card.featured .news-title { font-size: 1.4rem; }

.news-card:hover .news-title { color: var(--accent); }

.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: 1 / -1; }
}

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

/* ── CTA SECTION ── */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section .btn-group { flex-direction: column; align-items: center; }
}

/* ── UTILITY CLASSES ── */
.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,93,4,0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(232,93,4,0.1);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline-dark:hover {
  border-color: var(--orange);
  background: rgba(232,93,4,0.05);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
/* ── RESPONSIVE HOME (Additional refinements) ── */
@media (max-width: 1024px) {
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
  
  .overview {
    padding: 5rem 0;
  }
  
  .services,
  .featured-project,
  .map-section,
  .transition-section,
  .why-section,
  .news-section,
  .statements-section {
    padding: 5rem 0;
  }
  
  .stats-section {
    padding: 4rem 0;
  }
  
  .sustain-strip {
    padding: 4rem 0;
  }
  
  .highlights-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .section-label {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }
  
  .overview {
    padding: 4rem 0;
  }
  
  .services,
  .featured-project,
  .map-section,
  .transition-section,
  .why-section,
  .news-section,
  .statements-section {
    padding: 4rem 0;
  }
  
  .stats-section {
    padding: 3rem 0;
  }
  
  .sustain-strip {
    padding: 3rem 0;
  }
  
  .highlights-section {
    padding: 3rem 0;
  }
  
  .overview-features {
    margin-bottom: 1.5rem;
  }
  
  .overview-feature {
    font-size: 0.85rem;
  }
  
  .overview-float-card {
    padding: 0.75rem 1rem;
    bottom: 1rem;
    right: 1rem;
  }
  
  .overview-float-card .icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .overview-float-card strong {
    font-size: 1rem;
  }
  
  .overview-float-card span {
    font-size: 0.7rem;
  }
  
  .highlight-item {
    padding: 1.5rem;
  }
  
  .highlight-icon {
    font-size: 2rem;
  }
  
  .highlight-number {
    font-size: 2rem;
  }
  
  .highlight-label {
    font-size: 0.75rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .project-stats {
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .project-stats strong {
    font-size: 1.4rem;
  }
  
  .project-stats span {
    font-size: 0.7rem;
  }
  
  .map-op-item {
    padding: 0.75rem 1rem;
  }
  
  .map-op-item strong {
    font-size: 0.85rem;
  }
  
  .map-op-item span {
    font-size: 0.75rem;
  }
  
  .map-visual {
    min-height: 300px;
  }
  
  .transition-pillars {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  
  .pillar-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  .pillar-text strong {
    font-size: 0.85rem;
  }
  
  .pillar-text span {
    font-size: 0.8rem;
  }
  
  .transition-card {
    padding: 1.25rem;
  }
  
  .transition-card-num {
    font-size: 1.8rem;
  }
  
  .transition-card span {
    font-size: 0.7rem;
  }
  
  .sustain-item {
    padding: 1.5rem;
  }
  
  .sustain-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .sustain-item h4 {
    font-size: 0.9rem;
  }
  
  .sustain-item p {
    font-size: 0.8rem;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
  
  .stat-num {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .why-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .why-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .why-text h4 {
    font-size: 0.9rem;
  }
  
  .why-text p {
    font-size: 0.8rem;
  }
  
  .statement-card {
    width: 300px;
    padding: 1.25rem;
  }
  
  .statement-quote {
    font-size: 1.5rem;
  }
  
  .statement-text {
    font-size: 0.85rem;
  }
  
  .statement-author strong {
    font-size: 0.85rem;
  }
  
  .statement-author span {
    font-size: 0.7rem;
  }
  
  .news-thumb {
    height: 180px;
  }
  
  .news-card.featured .news-thumb {
    height: 220px;
  }
  
  .news-body {
    padding: 1rem;
  }
  
  .news-title {
    font-size: 1rem;
  }
  
  .news-card.featured .news-title {
    font-size: 1.2rem;
  }
  
  .news-excerpt {
    font-size: 0.8rem;
  }
  
  .news-date {
    font-size: 0.7rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-eyebrow {
    font-size: 0.7rem;
    gap: 0.5rem;
  }
  
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 25px;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    gap: 0.6rem;
  }
  
  .hero-scroll {
    bottom: 1rem;
  }
  
  .hero-scroll-line {
    height: 35px;
  }
  
  .hero-dots {
    bottom: 1rem;
    right: 1rem;
  }
  
  .hero-dot {
    height: 12px;
  }
  
  .hero-dot.active {
    height: 20px;
  }
  
  .highlights-grid {
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 1rem;
  }
  
  .highlight-number {
    font-size: 1.5rem;
  }
  
  .services-grid {
    gap: 1rem;
  }
  
  .transition-cards {
    gap: 0.75rem;
  }
  
  .transition-card {
    padding: 1rem;
  }
  
  .transition-card-num {
    font-size: 1.4rem;
  }
  
  .sustain-grid {
    gap: 1rem;
  }
  
  .stats-grid {
    gap: 1rem;
  }
  
  .why-grid {
    gap: 1rem;
  }
  
  .news-grid {
    gap: 1rem;
  }
  
  .statements-track {
    gap: 1rem;
  }
  
  .statement-card {
    width: 260px;
  }
}

/* ── DARK MODE OVERRIDES ── */
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,0.9) 100%
  );
}

[data-theme="dark"] .hero-badge {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .hero-badge-text span {
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .overview-float-card {
  background: rgba(20, 26, 42, 0.95);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .highlight-item,
[data-theme="dark"] .sustain-item,
[data-theme="dark"] .why-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .statement-card {
  border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .map-op-item {
  background: var(--bg-card);
}

[data-theme="dark"] .map-op-item:hover,
[data-theme="dark"] .map-op-item.active {
  background: rgba(232,93,4,0.12);
}

[data-theme="dark"] .transition-card {
  background: rgba(0,0,0,0.3);
}

[data-theme="dark"] .stat-item {
  background: rgba(0,0,0,0.2);
}

/* ── PRINT STYLES ── */
@media print {
  .hero,
  .hero-scroll,
  .hero-dots,
  .hero-badge,
  .cta-section,
  .statements-track,
  .btn,
  .hero-actions {
    display: none !important;
  }
  
  .overview,
  .services,
  .highlights-section,
  .featured-project,
  .map-section,
  .transition-section,
  .sustain-strip,
  .stats-section,
  .why-section,
  .news-section {
    padding: 2rem 0;
    break-inside: avoid;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .section-title,
  .hero-title {
    color: #000;
  }
  
  .gradient-text {
    background: none !important;
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
  }
}

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-slide-bg {
    animation: none !important;
    transform: scale(1) !important;
  }
  
  .hero-scroll-line,
  .map-op-dot,
  .service-icon,
  .sustain-icon,
  .why-icon,
  .pillar-icon,
  .highlight-icon {
    animation: none !important;
  }
  
  .statements-track {
    animation: none !important;
  }
}

/* ── SMOOTH SCROLL BEHAVIOR ── */
html {
  scroll-behavior: smooth;
}

/* ── FOCUS VISIBLE FOR ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── SKIP TO CONTENT LINK ── */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* ── LOADING STATE ── */
.loading {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loaded {
  opacity: 1;
  visibility: visible;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background: var(--navy-3);
}

/* ── END OF HOMEPAGE STYLES ── *//* ── ADDITIONAL UTILITIES & FIXES ── */

/* Container utility (if not defined in main.css) */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

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

/* Glass morphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover effect */
.card-hover {
  transition: all 0.3s ease;
}

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

/* Animation delays */
.delay-50 { transition-delay: 0.05s; }
.delay-150 { transition-delay: 0.15s; }
.delay-250 { transition-delay: 0.25s; }
.delay-350 { transition-delay: 0.35s; }
.delay-450 { transition-delay: 0.45s; }
.delay-500 { transition-delay: 0.5s; }

/* Pulse animation for CTAs */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.3);
  }
}

.btn-primary.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.btn-primary.pulse:hover {
  animation: none;
}

/* Shimmer effect for loading states */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Dark mode shimmer */
[data-theme="dark"] .shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  background-size: 200% 100%;
}

/* Hero canvas particles */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Particles canvas in CTA */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Ensure CTA content is above particles */
.cta-section .container {
  position: relative;
  z-index: 1;
}

/* Fix for hero transition flash */
.hero-content {
  will-change: transform, opacity;
}

/* Prevent layout shift from scrollbar */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

/* Image optimization */
.news-thumb img,
.project-visual img,
.overview-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lazy loading fade */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {
  .btn,
  .service-card,
  .news-card,
  .map-op-item,
  .hero-dot {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .btn:active,
  .service-card:active,
  .map-op-item:active {
    transform: scale(0.98);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .service-card,
  .news-card,
  .stat-item,
  .transition-card,
  .sustain-item,
  .why-card,
  .highlight-item {
    transition: none;
  }
  
  .hero-content.hero-transitioning {
    transition: none;
  }
  
  .hero-slide {
    transition: opacity 0.5s ease;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.95) 100%);
  }
  
  .btn-primary {
    background: var(--orange);
    box-shadow: none;
  }
  
  .gradient-text {
    background: var(--orange);
    -webkit-text-fill-color: #fff;
    color: #fff;
  }
  
  .hero-title .gradient-text {
    -webkit-text-fill-color: #fff;
    background: none;
    color: #fff;
  }
  
  .service-card,
  .why-card,
  .news-card {
    border-width: 2px;
  }
}

/* Focus ring for keyboard navigation */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.hero-dot:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ensure proper stacking context */
.hero,
.hero-slides,
.hero-slide,
.hero-content {
  isolation: isolate;
}

/* Fix for Safari backdrop-filter issues */
@supports (backdrop-filter: blur(16px)) {
  .hero-badge,
  .transition-card,
  .stat-item {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

@supports not (backdrop-filter: blur(16px)) {
  .hero-badge {
    background: rgba(0, 0, 0, 0.7);
  }
  
  .transition-card {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .stat-item {
    background: rgba(0, 0, 0, 0.4);
  }
}

/* ============================================================
   END OF PREMIER OIL TUNA HOMEPAGE STYLES
   ============================================================ */