/* ============================================
   SPECTRON ENERGY OIL TRADING - FZCO
   Dark Luxury Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #2A1810;
  --bg-card: #151010;
  --bg-glass: rgba(42, 24, 16, 0.45);
  --accent-copper: #C47A4A;
  --accent-gold: #D4A06A;
  --accent-warm: #E8B87A;
  --text-primary: #F5F0EB;
  --text-secondary: #BFB5A8;
  --text-muted: #8A7E72;
  --border-subtle: rgba(196, 122, 74, 0.15);
  --border-accent: rgba(196, 122, 74, 0.35);
  --glass-bg: rgba(15, 10, 8, 0.6);
  --glass-border: rgba(196, 122, 74, 0.12);
  --shadow-glow: 0 0 60px rgba(196, 122, 74, 0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--accent-warm);
}

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-copper);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold));
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 122, 74, 0.35);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent-copper);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-copper);
  color: var(--bg-primary);
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--accent-copper);
  letter-spacing: 0.15em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-copper);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
  color: var(--accent-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.7) sepia(0.2);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(42, 24, 16, 0.7) 50%,
    rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-headline .accent {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--border-accent);
  transform: translateX(-8px);
}

.stat-card .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

/* Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--border-accent),
    transparent);
  margin: 0;
}

/* ============================================
   SERVICES OVERVIEW (Home)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.15), rgba(196, 122, 74, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-copper);
}

.service-card h4 {
  margin-bottom: 0.75rem;
}

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

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-copper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 74, 0.06), transparent 70%);
}

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

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) sepia(0.15);
}

.why-image .overlay-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
}

.why-image .overlay-badge .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.why-image .overlay-badge .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
}

.why-feature .feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.2), rgba(196, 122, 74, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
}

.why-feature h4 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.why-feature p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================================
   NUMBERS / STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-secondary), #1E120C);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.stats-bar .stat {
  padding: 1rem;
}

.stats-bar .stat .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-bar .stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary), #1A0E08);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 74, 0.1), transparent 60%);
}

.cta-inner h2 {
  position: relative;
  margin-bottom: 1rem;
}

.cta-inner p {
  position: relative;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-inner .btn {
  position: relative;
}

/* ============================================
   INDUSTRIES / SECTORS
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: default;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.7) sepia(0.2);
  transition: all 0.6s ease;
}

.industry-card:hover img {
  filter: brightness(0.5) saturate(0.8) sepia(0.15);
  transform: scale(1.05);
}

.industry-card .card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
}

.industry-card h3 {
  margin-bottom: 0.5rem;
}

.industry-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 400px;
}

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

.testimonial-card {
  padding: 2.5rem;
}

.testimonial-card .stars {
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.testimonial-card .author .info .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card .author .info .role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   NEWS / INSIGHTS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--transition);
}

.news-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.news-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) sepia(0.15);
  transition: transform 0.6s ease;
}

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

.news-card .body {
  padding: 1.75rem;
}

.news-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-copper);
  margin-bottom: 0.75rem;
}

.news-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.news-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.news-card:first-child {
  grid-row: span 2;
}

.news-card:first-child .thumb {
  aspect-ratio: 16/12;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

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

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: var(--text-muted);
}

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

.page-hero .lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* Company Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) sepia(0.15);
}

.story-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 3rem;
  text-align: center;
}

.mv-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.2), rgba(196, 122, 74, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-copper);
}

.mv-card h3 {
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.value-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.15), rgba(196, 122, 74, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent-copper);
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Team */
.team-card {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 3rem;
}

.team-card .avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin: 0 auto 1.5rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--accent-copper);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-copper), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-copper);
  border: 3px solid var(--bg-primary);
  margin-left: -5px;
}

.timeline-item .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  margin-bottom: 0.35rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

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

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail .service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) sepia(0.15);
}

.service-detail .service-content .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.2), rgba(196, 122, 74, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-copper);
}

.service-detail .service-content h3 {
  margin-bottom: 1rem;
}

.service-detail .service-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.service-detail .service-content ul {
  list-style: none;
  margin-top: 1.25rem;
}

.service-detail .service-content ul li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-detail .service-content ul li svg {
  color: var(--accent-copper);
  flex-shrink: 0;
}

/* ============================================
   INDUSTRIES PAGE
   ============================================ */
.industry-detail {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.industry-detail .bg-image {
  position: absolute;
  inset: 0;
}

.industry-detail .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.6) sepia(0.2);
}

.industry-detail .bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.5) 60%,
    transparent 100%);
}

.industry-detail:nth-child(even) .bg-image::after {
  background: linear-gradient(-90deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.5) 60%,
    transparent 100%);
}

.industry-detail .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.industry-detail:nth-child(even) .container {
  display: flex;
  justify-content: flex-end;
}

.industry-detail h2 {
  margin-bottom: 1rem;
}

.industry-detail p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.industry-detail .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industry-detail .feature-list span {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
}

.contact-info-card .icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(196, 122, 74, 0.2), rgba(196, 122, 74, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
}

.contact-info-card h4 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
}

.map-placeholder .map-overlay-text {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder .map-overlay-text svg {
  display: block;
  margin: 0 auto 0.75rem;
  color: var(--accent-copper);
}

/* Contact Form */
.contact-form-wrap {
  padding: 3rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(10, 10, 10, 0.6);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-copper);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

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

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A7E72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.contact-form select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-submit {
  margin-top: 1.5rem;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.active {
  display: block;
}

.form-success svg {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #060404;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-copper);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================
   GRADIENT PLACEHOLDERS (for blocked images)
   ============================================ */
.gradient-placeholder {
  width: 100%;
  height: 100%;
}

/* ============================================
   TEXT VISIBILITY — shadows for text over images
   ============================================ */
.hero-content h1,
.hero-content .hero-subtitle,
.industry-card h3,
.industry-card p,
.industry-detail h2,
.industry-detail p,
.industry-detail .section-label {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal,
.reveal-left,
.reveal-right {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Only hide elements when JS is loaded — ensures content visible without JS */
body.js-loaded .reveal {
  opacity: 0;
  transform: translateY(40px);
}

body.js-loaded .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

body.js-loaded .reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-left.visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-right.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 180px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .news-card:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

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

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

  .story-grid,
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

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

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

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

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

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

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

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

  .news-card:first-child {
    grid-column: auto;
  }

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

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

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

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

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

  .footer-legal {
    justify-content: center;
  }

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

  .page-hero {
    padding: 8rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
  }

  .stat-card {
    min-width: auto;
  }

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

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