/* ===================================================================
   Space City Ice — Stylesheet
   Color Palette:
     Primary Green:  #08D240
     Light Green:    #9BECB2
     Dark Blue:      #034D94
     Medium Blue:    #1E74A3
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --green: #08D240;
  --green-light: #9BECB2;
  --blue-dark: #034D94;
  --blue-medium: #1E74A3;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --dark: #0a1628;
  --gray: #6b7a90;
  --gray-light: #d0d8e4;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(3, 77, 148, 0.10);
  --shadow-lg: 0 12px 48px rgba(3, 77, 148, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-padding::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -80px;
  bottom: -80px;
  background: url('logo.png') no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.section-padding>.container {
  position: relative;
  z-index: 1;
}

/* Dark sections get a brighter watermark */
.careers::after,
[style*="linear-gradient"]::after {
  opacity: 0.06;
  filter: brightness(3);
}

.section-padding-sm {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-padding-sm::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  left: -60px;
  top: -60px;
  background: url('logo.png') no-repeat center / contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.section-padding-sm>.container {
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #06bf38);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(8, 210, 64, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8, 210, 64, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}

.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 77, 148, 0.97);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  color: var(--dark) !important;
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
}

.dropdown-menu a:hover {
  background: var(--off-white) !important;
  color: var(--blue-dark) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), #06bf38) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(8, 210, 64, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(8, 210, 64, 0.45) !important;
  background: linear-gradient(135deg, #06bf38, var(--green)) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #021d45 40%, var(--blue-medium) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(8, 210, 64, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(30, 116, 163, 0.2) 0%, transparent 50%);
}

/* Animated floating ice particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  color: rgba(155, 236, 178, 0.25);
  font-size: 2rem;
  line-height: 1;
  animation: float-up linear infinite;
  filter: drop-shadow(0 0 6px rgba(155, 236, 178, 0.15));
}

.particle:nth-child(1) {
  font-size: 3.5rem;
  left: 8%;
  animation-duration: 14s;
  animation-delay: 0s;
  color: rgba(155, 236, 178, 0.20);
}

.particle:nth-child(2) {
  font-size: 1.8rem;
  left: 22%;
  animation-duration: 10s;
  animation-delay: 2s;
  color: rgba(255, 255, 255, 0.15);
}

.particle:nth-child(3) {
  font-size: 2.8rem;
  left: 40%;
  animation-duration: 16s;
  animation-delay: 4s;
  color: rgba(155, 236, 178, 0.18);
}

.particle:nth-child(4) {
  font-size: 1.5rem;
  left: 55%;
  animation-duration: 11s;
  animation-delay: 1s;
  color: rgba(255, 255, 255, 0.12);
}

.particle:nth-child(5) {
  font-size: 2.2rem;
  left: 72%;
  animation-duration: 13s;
  animation-delay: 3s;
  color: rgba(155, 236, 178, 0.22);
}

.particle:nth-child(6) {
  font-size: 3rem;
  left: 88%;
  animation-duration: 15s;
  animation-delay: 5s;
  color: rgba(255, 255, 255, 0.18);
}

.particle:nth-child(7) {
  font-size: 1.6rem;
  left: 15%;
  animation-duration: 12s;
  animation-delay: 7s;
  color: rgba(155, 236, 178, 0.15);
}

.particle:nth-child(8) {
  font-size: 2.5rem;
  left: 65%;
  animation-duration: 17s;
  animation-delay: 3s;
  color: rgba(255, 255, 255, 0.14);
}

.particle:nth-child(9) {
  font-size: 1.3rem;
  left: 48%;
  animation-duration: 9s;
  animation-delay: 6s;
  color: rgba(155, 236, 178, 0.20);
}

.particle:nth-child(10) {
  font-size: 2rem;
  left: 82%;
  animation-duration: 14s;
  animation-delay: 1.5s;
  color: rgba(255, 255, 255, 0.16);
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(40vh) rotate(180deg) scale(1);
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg) scale(0.9);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 210, 64, 0.15);
  border: 1px solid rgba(8, 210, 64, 0.3);
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 80px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Decorative graphic on right side of hero */
.hero-graphic {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-watermark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(2.2) drop-shadow(0 0 50px rgba(155, 236, 178, 0.25));
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* ===================================================================
   SERVICES OVERVIEW
   =================================================================== */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue-medium));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-icon.delivery {
  background: rgba(8, 210, 64, 0.1);
  color: var(--green);
}

.service-icon.merch {
  background: rgba(30, 116, 163, 0.1);
  color: var(--blue-medium);
}

.service-icon.emergency {
  background: rgba(3, 77, 148, 0.1);
  color: var(--blue-dark);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
}

/* ===================================================================
   PRODUCTS
   =================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-image.ice {
  background: linear-gradient(135deg, #e8f8ed, var(--green-light));
}

.product-image.dry-ice {
  background: linear-gradient(135deg, #e0eef8, #b6d4f0);
}

.product-image.cooler {
  background: linear-gradient(135deg, #dff0f8, #b0d8f0);
}

.product-info {
  padding: 28px 24px;
}

.product-info h3 {
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.product-info p {
  color: var(--gray);
  font-size: 0.93rem;
  margin-bottom: 16px;
}

/* ===================================================================
   CAREERS
   =================================================================== */
.careers {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-medium));
  position: relative;
  overflow: hidden;
}

.careers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(8, 210, 64, 0.08) 0%, transparent 50%);
}

.careers-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.careers-text {
  max-width: 600px;
}

.careers-text .section-label {
  margin-bottom: 16px;
}

.careers-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.careers-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.careers-highlight {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 280px;
  text-align: center;
}

.careers-highlight .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.careers-highlight h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.careers-highlight p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ===================================================================
   MISSION & VISION
   =================================================================== */
.mission {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.mission-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mission-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.value-pill {
  background: linear-gradient(135deg, rgba(8, 210, 64, 0.08), rgba(30, 116, 163, 0.08));
  border: 1px solid rgba(8, 210, 64, 0.15);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-dark);
  transition: var(--transition);
}

.value-pill:hover {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===================================================================
   SOCIAL MEDIA
   =================================================================== */
.social {
  background: var(--off-white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.social-post {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.social-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.social-post-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.social-post-image:nth-child(1) {
  background: linear-gradient(135deg, #e0f4e8, var(--green-light));
}

.social-post-body {
  padding: 16px 20px;
}

.social-post-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.social-post-body .date {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  color: var(--blue-dark);
}

.social-icon-link:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(3, 77, 148, 0.25);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 8px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--green-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 992px) {
  .hero-graphic {
    width: 350px;
    height: 350px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .hero-logo-watermark {
    opacity: 0.28;
  }

  .hero-stats {
    gap: 32px;
  }

  .careers-content {
    flex-direction: column;
    text-align: center;
  }

  .careers-text {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 40, 90, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  /* Top-level nav items */
  .nav-links>a,
  .nav-links>.nav-dropdown>a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 16px 0;
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: none !important;
    border-radius: 0 !important;
  }

  .nav-links>a:last-child {
    border-bottom: none;
  }

  /* Dropdown container */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  /* Hide dropdowns by default on mobile */
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 12px;
    padding: 8px 0;
    margin: 4px 0 8px;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1rem !important;
    padding: 12px 20px !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--green-light) !important;
  }

  /* CTA button in mobile menu */
  .nav-cta {
    margin-top: 16px !important;
    width: 100% !important;
    text-align: center !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
  }

  /* Hamburger */
  .nav-hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }



  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-graphic {
    width: 300px;
    height: 300px;
    right: 50%;
    top: 45%;
    transform: translate(50%, -50%);
  }

  .hero-logo-watermark {
    opacity: 0.22;
  }

  .hero-buttons .btn-primary {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 64px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}