/*
  RALA Digital Hub - Professional IT Company Website
*/

/* ============================
   CSS Variables
============================ */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --text-dark: #0f172a;
  --text: #334155;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --border: #e2e8f0;
  --green: #10b981;
  --green-bg: #ecfdf5;
  --purple: #8b5cf6;
  --purple-bg: #f5f3ff;
  --orange: #f59e0b;
  --orange-bg: #fffbeb;
  --red: #ef4444;
  --red-bg: #fef2f2;
  --teal: #14b8a6;
  --teal-bg: #f0fdfa;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   Base
============================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: none;
  outline: none;
}

p {
  margin: 0 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0 0 16px 0;
}

img {
  max-width: 100%;
}

/* ============================
   Utility
============================ */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--primary);
}

.highlight-green {
  color: var(--teal);
}

.section-tag {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================
   Back to Top
============================ */
.back-to-top {
  position: fixed;
  display: none;
  background: var(--primary);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  border-radius: 12px;
  right: 20px;
  bottom: 20px;
  z-index: 11;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transition: all 0.3s var(--ease);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: #fff;
}

.back-to-top i {
  color: #fff;
  line-height: 44px;
}

/* ============================
   Header
============================ */
#header {
  height: 76px;
  z-index: 997;
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s var(--ease);
}

#header.header-scrolled {
  height: 66px;
  padding: 8px 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

#header .logo img {
  max-height: 44px;
  transition: all 0.3s var(--ease);
}

/* Navigation */
.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  color: var(--text);
  padding: 10px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: var(--primary);
}

.main-nav .nav-cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius-full);
  padding: 8px 24px;
  margin-left: 8px;
  font-weight: 600;
  font-size: 13px;
}

.main-nav .nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -280px;
  width: 280px;
  padding-top: 18px;
  background: var(--navy);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 14px 24px;
  font-weight: 500;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:hover,
.mobile-nav .active > a {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: var(--text-dark);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* ============================
   Hero Section
============================ */
#hero {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, #0a1628 0%, #122244 30%, #1a3665 60%, #1e4080 100%);
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139,92,246,0.1) 0%, transparent 50%);
}

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

.hero-content {
  padding-right: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

#hero h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

#hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.45);
}

.btn-outline-custom {
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
  display: inline-block;
  backdrop-filter: blur(4px);
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: left;
}

.stat-item strong {
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.stat-item span {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
}

.hero-image img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ============================
   About Section
============================ */
#about {
  padding: 100px 0;
  background: var(--bg);
}

.about-cards {
  margin-bottom: 80px;
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

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

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

.about-card-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-card-icon i {
  font-size: 22px;
  color: var(--primary);
}

.about-card-icon.icon-green {
  background: var(--green-bg);
}

.about-card-icon.icon-green i {
  color: var(--green);
}

.about-card-icon.icon-purple {
  background: var(--purple-bg);
}

.about-card-icon.icon-purple i {
  color: var(--purple);
}

.about-card-icon.icon-orange {
  background: var(--orange-bg);
}

.about-card-icon.icon-orange i {
  color: var(--orange);
}

.about-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.about-story {
  gap: 40px;
}

.about-story-img {
  border-radius: var(--radius);
}

.about-story-content h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-story-content p {
  color: var(--text-light);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.about-feature-item i {
  color: var(--green);
  font-size: 18px;
}

.about-feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ============================
   Services Section
============================ */
#services {
  padding: 100px 0;
  background: var(--bg-soft);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  margin-bottom: 30px;
  transition: all 0.3s var(--ease);
  position: relative;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}

.service-icon i {
  font-size: 28px;
  color: var(--primary);
}

.service-icon.icon-green { background: var(--green-bg); }
.service-icon.icon-green i { color: var(--green); }
.service-icon.icon-purple { background: var(--purple-bg); }
.service-icon.icon-purple i { color: var(--purple); }
.service-icon.icon-orange { background: var(--orange-bg); }
.service-icon.icon-orange i { color: var(--orange); }
.service-icon.icon-red { background: var(--red-bg); }
.service-icon.icon-red i { color: var(--red); }
.service-icon.icon-teal { background: var(--teal-bg); }
.service-icon.icon-teal i { color: var(--teal); }

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-arrow {
  color: var(--primary);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   Products Section
============================ */
#getwash {
  padding: 100px 0;
  background: var(--bg);
}

.product-showcase {
  border-radius: 24px;
  padding: 50px 44px;
  margin-bottom: 40px;
}

.product-showcase:last-child {
  margin-bottom: 0;
}

.product-showcase-teal {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0fdf4 100%);
  border: 1px solid #d1fae5;
}

.product-showcase-orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
  border: 1px solid #fed7aa;
}

.product-logo {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -2px;
  font-family: "Poppins", sans-serif;
}

.product-brand-img {
  max-height: 60px;
  margin-bottom: 12px;
}

.product-tagline {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-url-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid;
  transition: all 0.3s var(--ease);
}

.product-url-badge:hover {
  opacity: 0.8;
}

.product-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
}

.btn-product:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.product-features-grid {
  gap: 0;
}

.pf-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  margin-bottom: 6px;
}

.pf-item:hover {
  background: rgba(255,255,255,0.6);
}

.pf-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pf-item h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.pf-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ============================
   Portfolio Section
============================ */
#portfolio {
  padding: 100px 0;
  background: var(--bg-soft);
}

#portfolio-flters {
  padding: 0;
  margin: 0 0 40px 0;
  list-style: none;
  text-align: center;
}

#portfolio-flters li {
  cursor: pointer;
  margin: 6px;
  display: inline-block;
  padding: 8px 24px;
  font-size: 13px;
  color: var(--text-light);
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.25s var(--ease);
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.35s var(--ease);
}

.portfolio-wrap:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.portfolio-wrap img {
  transition: all 0.4s var(--ease);
  width: 100%;
}

.portfolio-wrap:hover img {
  opacity: 0.15;
  transform: scale(1.06);
}

.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.3s var(--ease);
  background: rgba(15, 23, 42, 0.85);
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-cat {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio-info h4 {
  margin-bottom: 16px;
}

.portfolio-info h4 a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.portfolio-info h4 a:hover {
  color: var(--accent-light, #93c5fd);
}

.portfolio-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.25s var(--ease);
}

.portfolio-links a i {
  color: #fff;
  font-size: 18px;
}

.portfolio-links a:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* ============================
   Clients Section — Marquee Scroll
============================ */
#clients {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

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

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 32px;
  min-width: 180px;
  height: 90px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.marquee-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.marquee-item img {
  max-height: 45px;
  max-width: 140px;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: all 0.3s var(--ease);
  object-fit: contain;
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.press-showcase {
  padding-top: 40px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

.press-badge {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.press-card {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  max-width: 800px;
  margin: 0 auto;
}

.press-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.press-card-left {
  background: var(--bg-soft);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-right: 1px solid var(--border);
}

.press-publisher-logo {
  max-height: 48px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.press-publisher-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.press-date {
  font-size: 12px;
  color: var(--text-lighter);
  font-weight: 500;
}

.press-card-right {
  padding: 28px 32px;
  flex: 1;
}

.press-headline {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.press-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.press-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.press-read-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 767px) {
  .press-card {
    flex-direction: column;
  }

  .press-card-left {
    flex-direction: row;
    gap: 12px;
    min-width: auto;
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .press-publisher-logo {
    max-height: 32px;
    margin-bottom: 0;
  }

  .press-publisher-name {
    margin-bottom: 0;
  }

  .press-card-right {
    padding: 20px;
  }

  .press-headline {
    font-size: 17px;
  }
}

/* ============================
   Contact Section
============================ */
#contact {
  padding: 100px 0;
  background: var(--bg-soft);
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}

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

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card-icon i {
  font-size: 24px;
  color: var(--primary);
}

.contact-card-icon.icon-green {
  background: var(--green-bg);
}

.contact-card-icon.icon-green i {
  color: var(--green);
}

.contact-card-icon.icon-purple {
  background: var(--purple-bg);
}

.contact-card-icon.icon-purple i {
  color: var(--purple);
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ============================
   Footer
============================ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}

.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: all 0.25s var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li {
  padding: 6px 0;
}

.footer-links-col ul a {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: all 0.25s var(--ease);
}

.footer-links-col ul a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom strong {
  color: rgba(255,255,255,0.5);
}

/* ============================
   Responsive
============================ */
@media (max-width: 1199px) {
  #hero h1 {
    font-size: 44px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #hero {
    padding: 130px 0 70px;
    min-height: auto;
  }

  #hero h1 {
    font-size: 36px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  #hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    max-width: 80%;
  }

  .section-header h2 {
    font-size: 30px;
  }

  #about, #services, #getwash, #portfolio, #clients, #contact {
    padding: 70px 0;
  }

  .product-showcase {
    padding: 40px 30px;
  }

  .product-logo {
    font-size: 44px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  #hero h1 {
    font-size: 30px;
  }

  #hero p {
    font-size: 15px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item strong {
    font-size: 22px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

  .about-story-content h3 {
    font-size: 24px;
  }

  .product-showcase {
    padding: 28px 20px;
  }

  .product-logo {
    font-size: 36px;
  }
}

@media (max-width: 574px) {
  #hero {
    padding: 110px 0 50px;
  }

  #hero h1 {
    font-size: 26px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .about-cards .col-md-6 {
    margin-bottom: 16px;
  }
}
