/* ===============================
   UNICO PAINT INDUSTRIES - STYLES
   =============================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #08076e;
  --primary-dark: #050455;
  --primary-light: #1a18a0;
  --accent: #37ca37;
  --accent-dark: #25a025;
  --accent-light: #4ddd4d;
  --white: #ffffff;
  --light-bg: #f1f3f5;
  --text-dark: #1a1a2e;
  --text-mid: #444466;
  --text-muted: #888899;
  --border: rgba(8, 7, 110, 0.1);
  --shadow-sm: 0 2px 8px rgba(8,7,110,0.08);
  --shadow-md: 0 8px 30px rgba(8,7,110,0.12);
  --shadow-lg: 0 20px 60px rgba(8,7,110,0.16);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

/* --- 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(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
input, select, textarea, button { font-family: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ==============================
   TOP BAR
   ============================== */
.topbar {
  background: var(--primary);
  padding: 8px 24px;
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.88);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-icon {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  background: var(--white);
  padding: 0 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 37px;
  z-index: 999;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  top: 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  width:8%;
  gap: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo:hover { transform: translateY(-1px); }

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(8,7,110,0.3);
}

.logo-icon.small {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.logo-drop {
  width: 16px;
  height: 20px;
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
}

.logo-drop-inner {
  width: 8px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  top: 8px;
  left: 11px;
}

.logo-icon.small .logo-drop { width: 12px; height: 15px; }
.logo-icon.small .logo-drop-inner { width: 6px; height: 7px; top: 6px; left: 9px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-dropdown { position: relative; }

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link .arrow {
  font-size: 10px;
  transition: var(--transition);
}

.nav-link:hover, .nav-dropdown:hover .nav-link {
  color: var(--primary);
  background: rgba(8,7,110,0.06);
}

.nav-dropdown:hover .nav-link .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(8,7,110,0.06);
  color: var(--primary);
}

/* Nav CTA */
.nav-cta {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(8,7,110,0.25);
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(55,202,55,0.35);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================
   SHARED STYLES
   ============================== */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  background: rgba(55,202,55,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(55,202,55,0.2);
}

.section-tag.light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.text-accent { color: var(--accent-dark); }
.text-green { color: var(--accent-light); }

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

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 40px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(55,202,55,0.3);
  text-align: center;
}

.btn-primary svg { width: 18px; height: 18px; transition: var(--transition); }

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,202,55,0.4);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}

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

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(55,202,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,24,160,0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(55,202,55,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(55,202,55,0.15);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: hero-enter 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(255,255,255,0.2); }
  50% { border-color: rgba(55,202,55,0.6); }
}

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

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: highlight-slide 2s ease-out 0.5s both;
  transform-origin: left;
}

@keyframes highlight-slide {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

.hero-scroll > span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

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

/* About Visual */
.about-visual { position: relative; }

.about-card-wrap {
  position: relative;
  height: 480px;
}

.about-card {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(55,202,55,0.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 40%);
}

/* Paint Drop Animation */
.paint-drop-anim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.drop {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  animation: drop-fall linear infinite;
}

.d1 { width: 18px; height: 24px; background: var(--accent); left: 30%; animation-duration: 3s; animation-delay: 0s; }
.d2 { width: 12px; height: 16px; background: rgba(255,255,255,0.7); left: 55%; animation-duration: 4s; animation-delay: 1s; }
.d3 { width: 22px; height: 28px; background: var(--accent-light); left: 70%; animation-duration: 3.5s; animation-delay: 0.5s; }

@keyframes drop-fall {
  0% { top: -30px; opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 80%; opacity: 0; }
}

.paint-pool {
  width: 80%;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
  border-radius: 50% / 30%;
  position: absolute;
  bottom: 0;
  opacity: 0.8;
  animation: pool-ripple 3s ease-in-out infinite;
}

@keyframes pool-ripple {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.03); }
}

/* About Badge Cards */
.about-badge-card {
  position: absolute;
  bottom: 80px;
  right: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float-card 4s ease-in-out infinite;
}

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

.badge-icon { font-size: 28px; }
.badge-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text-dark); }
.badge-desc { font-size: 12px; color: var(--text-muted); }

.about-exp-card {
  position: absolute;
  top: 20px;
  left: -24px;
  background: var(--accent);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(55,202,55,0.4);
  animation: float-card 4s ease-in-out infinite 2s;
}

.exp-num { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; }
.exp-label { font-size: 11px; color: rgba(255,255,255,0.9); font-weight: 500; text-align: center; }

/* About Content */
.about-content { display: flex; flex-direction: column; gap: 0; }

.about-text {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.feat-check {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.about-cta { align-self: flex-start; }

/* ==============================
   PRODUCTS SECTION
   ============================== */
.products-section {
  padding: 120px 0;
  background: var(--light-bg);
  overflow: hidden;
}
/* Product Cards */
.products-slider {
  overflow: hidden;
  margin-top: 48px;
}

.products-grid {
  display: flex;
  gap: 22px;
  margin-top: 0;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc(33.333% - 14.667px);
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(8, 7, 110, 0.09);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(8,7,110,0.06);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(8, 7, 110, 0.13), 0 6px 20px rgba(0,0,0,0.07);
  border-color: rgba(8, 7, 110, 0.18);
}

/* Image at top of card */
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,7,110,0.05) 0%,
    rgba(8,7,110,0.18) 70%,
    rgba(8,7,110,0.42) 100%
  );
  pointer-events: none;
}

/* Card body below image */
.product-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.35;
}

.product-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.product-list {
  flex: 1;
  margin-bottom: 24px;
}

.product-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card.featured .product-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }

.product-list li::before {
  content: '→';
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.product-card.featured .product-list li::before { color: var(--accent-light); }

.product-cta {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  margin-top: auto;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.product-cta:hover {
  color: var(--accent-dark);
  letter-spacing: 1px;
}

.product-cta:hover { letter-spacing: 0.5px; }

.products-controls {
  margin-top: 34px;
}

/* ==============================
   FEATURES SECTION
   ============================== */
.features-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.features-bg-shape {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(55,202,55,0.15), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}

.features-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-content { position: relative; z-index: 2; }
.features-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 40px; }

.feature-items { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}

.feature-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(55,202,55,0.4);
  transform: translateX(4px);
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(55,202,55,0.15);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-body h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Features Visual */
.features-visual { position: relative; z-index: 2; }

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  height: 440px;
}

.feat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.feat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(55,202,55,0.4);
}

.fc-1 { grid-column: 1; grid-row: 1; }
.fc-2 { grid-column: 2; grid-row: 1; }
.fc-3 { grid-column: 3; grid-row: 1; }
.fc-4 { grid-column: 1; grid-row: 3; }

.fc-icon { font-size: 28px; }
.fc-stat { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--white); line-height: 1; }
.fc-label { font-size: 11px; color: rgba(255,255,255,0.65); text-align: center; font-weight: 400; }

.fc-main {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
  border: 2px solid rgba(55,202,55,0.4);
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.fc-main-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.paint-wave-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  border-radius: 40%;
  animation: wave-move linear infinite;
}

.w1 { background: rgba(55,202,55,0.3); animation-duration: 6s; }
.w2 { background: rgba(55,202,55,0.2); animation-duration: 8s; animation-delay: -2s; }
.w3 { background: rgba(55,202,55,0.1); animation-duration: 10s; animation-delay: -4s; }

@keyframes wave-move {
  from { transform: translateX(0) rotate(0); }
  to { transform: translateX(33.33%) rotate(360deg); }
}

.fc-main-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section {
  padding: 120px 0;
  background: var(--light-bg);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testi-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; }

.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
  font-style: italic;
}

.testi-text::before { content: '"'; }
.testi-text::after { content: '"'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* Testimonial Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testi-btn svg { width: 18px; height: 18px; color: var(--primary); }

.testi-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.testi-btn:hover svg { color: var(--white); }

.testi-dots { display: flex; gap: 8px; }

.dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-section {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(8,7,110,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-icon svg { width: 20px; height: 20px; color: var(--primary); }

.cd-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.cd-value { font-size: 14.5px; color: var(--text-dark); line-height: 1.6; }
.cd-value a { color: var(--primary); transition: var(--transition); }
.cd-value a:hover { color: var(--accent-dark); }

/* Contact Form */
.contact-form-wrap {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 14.5px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,7,110,0.08);
}

.form-group input.error,
.form-group textarea.error { border-color: #e93d3d; }

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

.form-error {
  font-size: 12px;
  color: #e93d3d;
  min-height: 16px;
}

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(55,202,55,0.1);
  border: 1px solid rgba(55,202,55,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-dark);
  animation: fade-in 0.4s ease;
}

.form-success.show { display: flex; }

@keyframes fade-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.success-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--text-dark); color: var(--white); }

.footer-top { padding: 64px 24px; }

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width:25%;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.social-link:hover svg { color: var(--white); }

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links-group h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-group ul li a,
.footer-links-group ul li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  line-height: 1.5;
}

.footer-links-group ul li a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: unset;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 998;
}

.back-to-top svg { width: 20px; height: 20px; color: var(--white); }

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ==============================
   ANIMATIONS & TRANSITIONS
   ============================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { order: -1; }
  .about-card-wrap { height: 360px; }
  .features-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; }
  .nav-logo{width:25%;}

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
  }

  .nav-links.open .nav-link { font-size: 20px; }

  .hero { padding: 80px 24px 80px; }
  .hero-stats { gap: 16px; padding: 20px 24px; flex-wrap: wrap; }
  .stat-divider { display: none; }

  .section-title { font-size: 28px; }

  .about-features { grid-template-columns: 1fr; }
  .about-exp-card { left: 0; }
  .about-badge-card { right: 0; }

  .features-card-grid { height: 320px; }
  .fc-stat { font-size: 18px; }
  .fc-main-text { font-size: 16px; }

  .testimonial-card { flex: 0 0 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

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

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ==============================
   NAV DROPDOWN
   ============================== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link--drop {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.drop-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .drop-arrow,
.nav-dropdown:focus-within .drop-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(8,7,110,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #2c3345;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(8,7,110,0.06);
  color: var(--primary);
}

/* ==============================
   PRODUCTS SLIDER RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .product-card {
    flex-basis: calc(50% - 11px);
  }
}

@media (max-width: 600px) {
  .product-card {
    flex-basis: 100%;
  }
}

/* ==============================
   PHOTO GALLERY SECTION
   ============================== */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(8,7,110,0.04) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: 1 / 3;
}

.gallery-item--wide {
  grid-column: 2 / 4;
}

.gallery-img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,110,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item--wide { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide { grid-column: auto; }
}

/* ==============================
   PAINT SCENE ANIMATIONS
   ============================== */

/* --- Scene Containers --- */
.paint-scene {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.paint-scene--left {
  left: 0;
  width: clamp(200px, 16vw, 280px);
  transform-origin: bottom left;
}

.paint-scene--right {
  right: 0;
  width: clamp(180px, 14vw, 250px);
  transform-origin: bottom right;
}

/* Background full-width brush strokes */
.bg-brush-strokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* --- Paint Can (left) --- */
.paint-can {
  width: 75%;
  max-width: 160px;
  transform: rotate(-28deg) translateX(18%);
  transform-origin: bottom center;
  animation: can-tilt 6s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  position: relative;
  z-index: 3;
  margin-bottom: -10px;
}

@keyframes can-tilt {
  0%, 100% { transform: rotate(-28deg) translateX(18%); }
  50%       { transform: rotate(-25deg) translateX(16%); }
}

/* --- Paint Bucket (right) --- */
.paint-bucket {
  width: 70%;
  max-width: 140px;
  transform: rotate(30deg) translateX(-22%);
  transform-origin: bottom center;
  animation: bucket-tilt 7s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  position: relative;
  z-index: 3;
  margin-bottom: -8px;
}

@keyframes bucket-tilt {
  0%, 100% { transform: rotate(30deg) translateX(-22%); }
  50%       { transform: rotate(27deg) translateX(-20%); }
}

/* --- Paint Streams --- */
.paint-stream {
  width: 28%;
  max-width: 60px;
  position: relative;
  z-index: 2;
  margin-top: -15px;
  margin-bottom: -8px;
}

.paint-stream--orange {
  width: 25%;
  max-width: 50px;
}

/* Animate stream stroke-dashoffset to make paint appear to flow down */
.stream-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: stream-flow 2.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards,
             stream-pulse 3s ease-in-out 3s infinite;
}

@keyframes stream-flow {
  from { stroke-dashoffset: 600; }
  to   { stroke-dashoffset: 0; }
}

@keyframes stream-pulse {
  0%, 100% { opacity: 1; stroke-width: 14px; }
  50%       { opacity: 0.85; stroke-width: 12px; }
}

/* --- Drip Drops --- */
.drip-drops {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
  margin-bottom: -6px;
}

.drip {
  animation: drip-fall ease-in infinite;
  opacity: 0;
}

.drip-1 { width: 24px; animation-duration: 2.0s; animation-delay: 2.8s; }
.drip-2 { width: 18px; animation-duration: 1.8s; animation-delay: 3.5s; }
.drip-3 { width: 14px; animation-duration: 2.2s; animation-delay: 4.2s; }
.drip-4 { width: 10px; animation-duration: 1.6s; animation-delay: 3.0s; }

@keyframes drip-fall {
  0%   { transform: translateY(-8px) scaleY(0.6); opacity: 0; }
  15%  { opacity: 1; transform: translateY(0)    scaleY(1); }
  70%  { opacity: 1; }
  100% { transform: translateY(180px) scaleY(1.3); opacity: 0; }
}

/* --- Paint Splash / Pool --- */
.paint-splash {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: -4px;
}

.pool-main {
  animation: pool-breathe 3s ease-in-out infinite;
  transform-origin: center 38px;
}

@keyframes pool-breathe {
  0%, 100% { transform: scaleX(1)    scaleY(1); }
  50%       { transform: scaleX(1.04) scaleY(0.97); }
}

/* Splash spikes animate in on load */
.splash-spike {
  opacity: 0;
  transform-origin: bottom center;
  animation: spike-appear ease-out 1 forwards;
}

.paint-splash--left .splash-spike:nth-child(1) { animation-duration: 0.5s; animation-delay: 2.4s; }
.paint-splash--left .splash-spike:nth-child(2) { animation-duration: 0.6s; animation-delay: 2.5s; }
.paint-splash--left .splash-spike:nth-child(3) { animation-duration: 0.5s; animation-delay: 2.6s; }
.paint-splash--left .splash-spike:nth-child(4) { animation-duration: 0.4s; animation-delay: 2.45s; }
.paint-splash--left .splash-spike:nth-child(5) { animation-duration: 0.45s; animation-delay: 2.55s; }

.paint-splash--right .splash-spike:nth-child(1) { animation-duration: 0.5s; animation-delay: 2.6s; }
.paint-splash--right .splash-spike:nth-child(2) { animation-duration: 0.6s; animation-delay: 2.7s; }
.paint-splash--right .splash-spike:nth-child(3) { animation-duration: 0.5s; animation-delay: 2.8s; }

@keyframes spike-appear {
  0%   { opacity: 0; transform: scaleY(0) translateY(10px); }
  60%  { opacity: 1; transform: scaleY(1.2) translateY(-4px); }
  100% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* Ripple rings expand outward */
.ripple {
  transform-origin: center 38px;
  opacity: 0;
  animation: ripple-expand ease-out infinite;
}

.r1 { animation-duration: 2.2s; animation-delay: 2.8s; }
.r2 { animation-duration: 2.2s; animation-delay: 3.2s; }

@keyframes ripple-expand {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* --- Mini Floating Drops --- */
.mini-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mini-drop {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: #37ca37;
  animation: mini-float ease-in-out infinite;
  opacity: 0;
}

.mini-drops--orange .mini-drop { background: #ff6b35; }
.mini-drops--blue   .mini-drop { background: #40b8ff; }

.paint-stream--blue {
  width: 25%;
  max-width: 50px;
}

.md-1 { width: 10px; height: 13px; left: 15%; top: 25%; animation-duration: 4s; animation-delay: 3.0s; }
.md-2 { width: 7px;  height: 9px;  left: 70%; top: 15%; animation-duration: 3.5s; animation-delay: 3.6s; }
.md-3 { width: 12px; height: 15px; left: 40%; top: 40%; animation-duration: 4.5s; animation-delay: 4.0s; }
.md-4 { width: 8px;  height: 10px; left: 80%; top: 50%; animation-duration: 3.8s; animation-delay: 3.3s; }
.md-5 { width: 6px;  height: 8px;  left: 25%; top: 60%; animation-duration: 5s;   animation-delay: 4.5s; }

@keyframes mini-float {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  15%  { opacity: 0.9; }
  85%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--tx, 20px), -60px) rotate(25deg); }
}

.md-1 { --tx: -15px; }
.md-2 { --tx:  20px; }
.md-3 { --tx:  10px; }
.md-4 { --tx: -10px; }
.md-5 { --tx:  15px; }

/* --- Brush Stroke (right scene) --- */
.brush-stroke {
  width: 90%;
  position: absolute;
  bottom: 22%;
  right: -5%;
  opacity: 0;
  animation: brush-draw 1.2s ease-out 3.5s forwards;
}

@keyframes brush-draw {
  from { opacity: 0; stroke-dashoffset: 400; }
  to   { opacity: 1; stroke-dashoffset: 0; }
}

.brush-stroke path { stroke-dasharray: 400; }

/* ==============================
   RESPONSIVE PAINT SCENES
   ============================== */
@media (max-width: 1100px) {
  .paint-scene--left  { width: clamp(150px, 13vw, 220px); }
  .paint-scene--right { width: clamp(130px, 11vw, 200px); }
}

@media (max-width: 768px) {
  .paint-scene { display: none; }
}

/* ==============================
   ORIGINAL RESPONSIVE CONTINUED
   ============================== */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }
  .features-card-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .fc-main { grid-column: 1 / -1; grid-row: auto; height: 160px; }
  .fc-4 { grid-column: auto; grid-row: auto; }
}
