/* =========================================
   ROAM TELECOMS — REDESIGN CSS
   Palette: #006d5b (brand), #0a0a0a (dark), #ffffff, #f4f4f2 (off-white), #1a1a1a
   ========================================= */

:root {
  --brand: #006d5b;
  --brand-light: #00a080;
  --brand-dark: #004d40;
  --dark: #0a0a0a;
  --dark-2: #1a1a1a;
  --dark-3: #2a2a2a;
  --gray: #6b7280;
  --gray-light: #d1d5db;
  --off-white: #f4f4f2;
  --white: #ffffff;
  --font: 'Inter', 'Jost', system-ui, sans-serif;
  --font-display: 'Inter', 'Jost', system-ui, sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
.t-overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
}

.t-h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t-h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.t-h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.t-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
}

.t-body-sm {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
}

/* --- LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-sm {
  padding: 4rem 0;
}

/* --- GRID SYSTEM --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

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

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

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

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
}

/* =========================================
   NAVIGATION
   ========================================= */
#rt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--transition);
}

#rt-nav.transparent {
  background: transparent;
}

#rt-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 120px;
  width: auto;
  max-width: 500px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

.nav-logo img:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-light);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.3s, transform 0.2s !important;
  border: none;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brand-light) !important; transform: scale(1.03); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
}

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

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

.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,109,91,0.3) 60%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

/* Animated circuit/grid pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(0,160,128,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,160,128,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,109,91,0.2);
  border: 1px solid rgba(0,160,128,0.4);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--transition) 0.2s both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
  animation: fadeInUp 0.8s var(--transition) 0.4s both;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--transition) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--transition) 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s var(--transition) 1.2s both;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,109,91,0.4);
}

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

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

.btn-outline-brand {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

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

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

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

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover .btn-icon { transform: translateX(4px); }

/* =========================================
   STATS BAR
   ========================================= */
#stats-bar {
  background: var(--brand);
  padding: 2.5rem 0;
}

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

.stat-item {
  color: var(--white);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.03em;
}

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

/* =========================================
   ABOUT SECTION
   ========================================= */
#about {
  background: var(--off-white);
}

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

.about-image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.about-img-main {
  grid-column: 1 / -1;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-badge-card .icon {
  width: 36px; height: 36px;
  background: rgba(0,109,91,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-badge-card .label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

.about-badge-card .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.about-content .t-overline { margin-bottom: 1rem; }
.about-content .t-h2 { margin-bottom: 1.5rem; }
.about-content .t-body { margin-bottom: 2rem; }

.philosophy-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.philosophy-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.philosophy-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.philosophy-word {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 220px; }
  .about-img-accent { height: 140px; }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
#services {
  background: var(--dark);
  color: var(--white);
}

#services .t-overline { color: var(--brand-light); }
#services .t-h2 { color: var(--white); margin-bottom: 0.75rem; }
#services .section-intro { color: rgba(255,255,255,0.6); max-width: 550px; margin-bottom: 4rem; }

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

@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition), border-color 0.3s, box-shadow 0.4s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,160,128,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-light);
  background: rgba(0,160,128,0.1);
  border: 1px solid rgba(0,160,128,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
}

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

/* =========================================
   WEEE ROAM SECTION
   ========================================= */
#weee-roam {
  background: var(--white);
  padding: 7rem 0;
}

.weee-header { max-width: 700px; margin-bottom: 5rem; }
.weee-header .t-overline { margin-bottom: 1rem; }
.weee-header .t-h2 { margin-bottom: 1.25rem; }
.weee-header .t-body { margin-bottom: 2rem; }

.weee-problem-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.weee-problem-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,109,91,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.weee-problem-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.weee-problem-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.weee-problem-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.weee-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.weee-product-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

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

.weee-product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--off-white);
}

.weee-product-body {
  padding: 1.5rem;
  flex: 1;
}

.weee-product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(0,109,91,0.1);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.weee-product-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.weee-product-body .desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.weee-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.weee-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
}

.weee-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
}

.btn-shop {
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
}

@media (max-width: 768px) {
  .weee-products-grid { grid-template-columns: 1fr; }
  .weee-problem-banner { flex-direction: column; gap: 1.5rem; }
}

/* =========================================
   AWARDS SECTION
   ========================================= */
#awards {
  background: var(--off-white);
  padding: 7rem 0;
}

.awards-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.awards-header .t-overline { margin-bottom: 1rem; }
.awards-header .t-h2 { margin-bottom: 1rem; }
.awards-header .t-body { margin: 0 auto; }

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

.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

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

.award-img-wrap {
  position: relative;
  background: var(--dark);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.award-img-wrap img {
  max-height: 160px;
  object-fit: contain;
  border-radius: var(--radius);
}

.award-year-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.award-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.award-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.award-body p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

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

/* =========================================
   NEWS SECTION
   ========================================= */
#news {
  background: var(--dark);
  padding: 7rem 0;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.news-header .t-overline { margin-bottom: 0.75rem; }
.news-header .t-h2 { color: var(--white); }

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

.news-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,160,128,0.3);
}

.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--dark-3);
}

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

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

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.news-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-light);
  background: rgba(0,160,128,0.1);
  border: 1px solid rgba(0,160,128,0.2);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.news-card-body h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.news-card.featured .news-card-body h3 { font-size: 1.25rem; }

.news-card-body p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-top: 1rem;
  transition: gap 0.3s;
}

.news-read-more:hover { gap: 0.7rem; }

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

/* =========================================
   CONTACT SECTION
   ========================================= */
#contact {
  background: var(--white);
  padding: 7rem 0;
}

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

.contact-info .t-overline { margin-bottom: 1rem; }
.contact-info .t-h2 { margin-bottom: 1.25rem; }
.contact-info .t-body { margin-bottom: 2.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(0,109,91,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}

.contact-detail-text a:hover { color: var(--brand); }

.contact-detail-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.1rem;
}

/* Contact Form */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,109,91,0.12);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
}

.form-success {
  display: none;
  background: rgba(0,109,91,0.1);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--brand);
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================
   FOOTER
   ========================================= */
#rt-footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--brand);
  color: var(--white);
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

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

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

/* =========================================
   SECTION DIVIDERS
   ========================================= */
.section-head {
  margin-bottom: 1rem;
}

.section-head .t-overline { margin-bottom: 0.75rem; }
.section-head .t-h2 { margin-bottom: 0.75rem; }
.section-head .t-body { max-width: 550px; }

/* =========================================
   COOKIE BANNER (custom)
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.6; }
.cookie-banner .cookie-actions { display: flex; gap: 0.75rem; }

/* =========================================
   PARALLAX UTILITY
   ========================================= */
.parallax-wrap {
  overflow: hidden;
}

.parallax-inner {
  will-change: transform;
}

/* =========================================
   MOBILE ADJUSTMENTS
   ========================================= */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .weee-problem-banner { padding: 2rem; }
  .contact-form { padding: 1.5rem; }
  .news-header { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   SUB-PAGE HERO
   ========================================= */
.page-hero {
  background: var(--dark);
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,160,128,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,160,128,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 550px; margin-top: 1rem; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.breadcrumb .current { font-size: 0.8rem; color: var(--brand-light); font-weight: 600; }
