/* =============================================
   SunVolt Energy — CSS
   ============================================= */

/* ─── CSS Custom Properties ─── */
:root {
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FCD34D;
  --secondary: #0EA5E9;
  --secondary-dark: #0284C7;
  --dark: #0A0F1E;
  --dark-2: #111827;
  --dark-3: #1F2937;
  --dark-4: #374151;
  --gray: #6B7280;
  --gray-light: #D1D5DB;
  --white: #FFFFFF;
  --text: #F9FAFB;
  --text-muted: #9CA3AF;
  --gradient: linear-gradient(135deg, #F59E0B 0%, #EF4444 50%, #8B5CF6 100%);
  --gradient-blue: linear-gradient(135deg, #0EA5E9, #6366F1);
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-height: 72px;
  --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: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 32px; max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--white);
}
.logo-text span { color: var(--primary); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: color var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.nav-phone:hover { color: var(--primary); }
.phone-no { white-space: nowrap; display: inline-block; }
.mobile-only-drawer-call { display: none; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #000;
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  transition: all var(--transition); white-space: nowrap;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.5);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: #000;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700;
  transition: all var(--transition); white-space: nowrap;
}
.btn-white:hover {
  background: var(--primary); color: #000;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.nav-cta { padding: 10px 20px; font-size: 0.85rem; }
.btn-product {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary); font-size: 0.85rem; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-product:hover { background: var(--primary); color: #000; }

/* ─── Hamburger ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--white); border-radius: 4px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,30,0.88) 0%,
    rgba(10,15,30,0.6) 50%,
    rgba(10,15,30,0.75) 100%
  );
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.6), transparent);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--primary);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.25);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(245,158,11,0.25); } 50% { box-shadow: 0 0 0 8px rgba(245,158,11,0.1); } }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s 0.1s ease both;
}
.text-gradient {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px; margin-bottom: 48px;
  animation: fadeInDown 0.8s 0.2s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 48px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--primary);
  line-height: 1;
}
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5); border-radius: 2px;
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown { 0%,100% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ─── TRUST BAND ─── */
.trust-band {
  background: var(--dark-2); padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-band .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.1em; }
.trust-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-logo {
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 16px; border-radius: 50px;
  transition: all var(--transition); letter-spacing: 0.05em;
}
.trust-logo:hover { color: var(--primary); border-color: var(--primary); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: var(--primary); font-size: 0.8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(245,158,11,0.2);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 16px; color: var(--white);
}
.section-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* ─── SERVICES ─── */
.services { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,0.2); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon--yellow { background: rgba(245,158,11,0.15); color: var(--primary); }
.service-icon--blue { background: rgba(14,165,233,0.15); color: var(--secondary); }
.service-icon--green { background: rgba(16,185,129,0.15); color: #10B981; }
.service-icon--orange { background: rgba(239,68,68,0.15); color: #EF4444; }
.service-icon--purple { background: rgba(139,92,246,0.15); color: #8B5CF6; }
.service-icon--teal { background: rgba(20,184,166,0.15); color: #14B8A6; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }
.service-features { margin-bottom: 20px; }
.service-features li {
  font-size: 0.83rem; color: var(--text-muted); padding: 4px 0;
  padding-left: 16px; position: relative;
}
.service-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.service-cta { font-size: 0.88rem; font-weight: 600; color: var(--primary); transition: gap var(--transition); }
.service-cta:hover { text-decoration: underline; }

/* ─── PROCESS ─── */
.process-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); color: #000;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(245,158,11,0.15);
}
.step-content { padding: 0 16px; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PRODUCTS ─── */
.products-section { background: var(--dark); }
.product-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  border-color: var(--primary); color: var(--primary);
  background: rgba(245,158,11,0.1);
}
.tab-btn.active { background: var(--primary); color: #000; border-color: var(--primary); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--dark-2); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; transition: all var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(245,158,11,0.2); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  background: var(--primary); color: #000;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.product-badge--new { background: #10B981; color: #fff; }
.product-img-wrapper {
  height: 200px; background: linear-gradient(135deg, #1F2937, #111827);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder-svg, .product-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; background: linear-gradient(135deg, #1a2438, #0f1520);
}
.product-info { padding: 20px; }
.product-brand { font-size: 0.75rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.product-info h4 { font-size: 1rem; font-weight: 700; margin: 6px 0 10px; }
.product-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.product-specs span {
  font-size: 0.72rem; color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  padding: 3px 10px; border-radius: 50px;
}
.product-price { margin-bottom: 16px; }
.price-main { font-size: 1.35rem; font-weight: 800; color: var(--primary); }
.price-unit { font-size: 0.8rem; color: var(--text-muted); margin-left: 4px; }
.price-bulk { display: block; font-size: 0.78rem; color: #10B981; margin-top: 3px; }
.products-cta {
  text-align: center; margin-top: 48px; padding: 40px;
  background: var(--dark-2); border-radius: var(--radius);
  border: 1px dashed rgba(245,158,11,0.3);
}
.products-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }

/* ─── WHY CHOOSE US ─── */
.why-section { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 2px; }
.why-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.why-right { position: relative; }
.why-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.why-card {
  position: absolute; background: rgba(10,15,30,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
}
.why-card--1 { bottom: 40px; left: -30px; }
.why-card--2 { top: 40px; right: -30px; }
.why-card-icon { font-size: 1.75rem; }
.why-card-num { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.why-card-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ─── PROJECTS ─── */
.projects-section { background: var(--dark); }
.projects-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 560px; }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.project-card--large { grid-row: span 2; }
.project-thumb { width: 100%; height: 100%; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-thumb img { transform: scale(1.07); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.3) 60%, transparent 100%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background var(--transition);
}
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(10,15,30,0.98) 0%, rgba(10,15,30,0.5) 60%, rgba(10,15,30,0.2) 100%); }
.project-tag {
  display: inline-block;
  background: var(--primary); color: #000;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 8px; width: fit-content;
}
.project-overlay h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.project-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.project-meta { display: flex; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonials-slider { position: relative; min-height: 280px; }
.testimonial-card {
  display: none; padding: 40px;
  background: var(--dark-3); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 800px; margin: 0 auto;
  animation: fadeIn 0.4s ease;
}
.testimonial-card.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-stars { color: var(--primary); font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: #000;
  font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }
.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.t-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-size: 1.1rem;
  transition: all var(--transition);
}
.t-nav-btn:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all var(--transition); cursor: pointer;
}
.t-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ─── SUBSIDY ─── */
.subsidy-section {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 40%, #EF4444 100%);
  padding: 48px 0;
}
.subsidy-content {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.subsidy-text { display: flex; align-items: center; gap: 20px; color: #000; }
.subsidy-icon { font-size: 3rem; flex-shrink: 0; }
.subsidy-text h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.subsidy-text p { font-size: 0.95rem; opacity: 0.85; }

/* ─── ABOUT ─── */
.about-section { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.about-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0; }
.about-num-item { text-align: center; padding: 16px; background: var(--dark-2); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.07); }
.about-num { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 900; color: var(--primary); display: block; }
.about-num-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.about-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge {
  font-size: 0.75rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  border: 1.5px solid rgba(245,158,11,0.4);
  color: var(--primary); background: rgba(245,158,11,0.08);
}
.about-img-grid { position: relative; }
.about-img { border-radius: var(--radius); object-fit: cover; }
.about-img--big { width: 100%; height: 380px; }
.about-img--small { width: 55%; height: 200px; position: absolute; bottom: -30px; right: -20px; border: 4px solid var(--dark); }

/* ─── CONTACT ─── */
.contact-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); color: var(--text);
  padding: 12px 16px; font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; border-radius: var(--radius-sm); }
.form-success {
  text-align: center; padding: 16px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-sm); color: #10B981;
  font-weight: 600; font-size: 0.95rem; gap: 8px;
}
.contact-form-wrapper {
  background: var(--dark-3); border-radius: var(--radius);
  padding: 40px; border: 1px solid rgba(255,255,255,0.07);
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; gap: 16px;
  background: var(--dark-3); border-radius: var(--radius-sm);
  padding: 20px; border: 1px solid rgba(255,255,255,0.07);
}
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.contact-info-card a { color: var(--text-muted); transition: color var(--transition); }
.contact-info-card a:hover { color: var(--primary); }
.contact-social { display: flex; gap: 12px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  background: #25D366; color: #fff;
  transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.social-btn--blue { background: #0A66C2; }
.social-btn--blue:hover { box-shadow: 0 6px 20px rgba(10,102,194,0.35); }

/* ─── FOOTER ─── */
.footer { background: #070C18; padding: 72px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 16px 0 10px; max-width: 300px; }
.footer-cert { font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.footer-brand .footer-logo { margin-bottom: 0; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 100px; right: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  opacity: 0; pointer-events: none;
  transition: all var(--transition); transform: translateY(16px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #25D366; color: #fff;
  padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; pointer-events: none; opacity: 0;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ─── PRODUCT PLACEHOLDER VISUALS ─── */
.product-placeholder-svg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.2); font-weight: 600;
  background: linear-gradient(135deg, #1a2438, #0f1520);
}
.product-placeholder-svg::after {
  content: attr(data-label);
  opacity: 0.35;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-right, .about-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .project-card--large { grid-row: span 1; grid-column: span 2; height: 300px; }
  .project-card { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(10,15,30,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-actions .nav-phone { display: none; }
  .hamburger { display: flex; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-timeline::before { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; height: 280px; }
  .project-card { height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .subsidy-content { flex-direction: column; text-align: center; }
  .subsidy-text { flex-direction: column; text-align: center; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .trust-band .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .process-timeline { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .contact-form-wrapper { padding: 24px; }
  .testimonial-card { padding: 24px; }
}

/* ─── PRODUCT ICON DISPLAY (dynamic cards) ─── */
.product-icon-display {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a2438, #0f1520);
}
.product-icon-emoji { font-size: 3.5rem; line-height: 1; }
.product-icon-label {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.3); text-align: center;
  letter-spacing: 0.05em;
}
.product-card-actions {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px;
}
.btn-view-details {
  display: inline-block; background: rgba(245,158,11,0.1);
  border: 1.5px solid var(--primary); color: var(--primary);
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  transition: all var(--transition); cursor: pointer;
  font-family: inherit;
}
.btn-view-details:hover { background: var(--primary); color: #000; }
.btn-quote {
  display: inline-block; background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-quote:hover { border-color: var(--white); color: var(--white); }

/* ─── PRODUCT DETAIL MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: #131c2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  width: 100%; max-width: 860px; max-height: 90vh;
  overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: sticky; top: 0; left: 100%;
  float: right; margin: 16px 16px 0 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 10;
  cursor: pointer; border: none; font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }
.modal-inner {
  display: grid; grid-template-columns: 1fr 340px; gap: 0;
  padding: 32px; padding-top: 0;
}
.modal-left { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.modal-right { padding-left: 32px; }
.modal-icon-wrap {
  font-size: 4rem; margin-bottom: 12px;
  width: 80px; height: 80px;
  background: rgba(245,158,11,0.1); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,158,11,0.2);
}
.modal-brand {
  font-size: 0.75rem; font-weight: 700;
  color: var(--secondary); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.modal-title {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem;
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--white);
}
.modal-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.modal-spec-chip {
  font-size: 0.75rem; color: var(--primary);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 4px 12px; border-radius: 50px;
}
.modal-desc {
  font-size: 0.93rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 20px;
}
.modal-highlights-list { display: flex; flex-direction: column; gap: 8px; }
.modal-highlights-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
}
.highlight-check {
  color: #10B981; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

.modal-price-box {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 16px; padding: 24px; margin-bottom: 16px;
}
.modal-price-label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px;
}
.modal-price {
  font-family: 'Outfit', sans-serif; font-size: 2rem;
  font-weight: 900; color: var(--primary); line-height: 1;
}
.modal-price-unit { font-size: 0.82rem; color: var(--text-muted); margin: 4px 0 10px; }
.modal-bulk {
  font-size: 0.85rem; padding: 8px 12px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px; margin-bottom: 10px;
}
.modal-warranty {
  font-size: 0.82rem; color: var(--text-muted);
  padding: 8px 12px; background: rgba(255,255,255,0.04);
  border-radius: 8px; margin-bottom: 16px;
}
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-quote-btn {
  width: 100%; justify-content: center; text-align: center;
  padding: 13px; font-size: 0.9rem;
}
.modal-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 11px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  transition: all var(--transition);
}
.modal-wa-btn:hover { background: #1ebe5a; transform: translateY(-2px); }
.modal-note {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
  padding: 12px; background: rgba(255,255,255,0.03);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.06);
}

/* Modal scrollbar */
.modal-box::-webkit-scrollbar { width: 6px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

@media (max-width: 768px) {
  .modal-inner { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
  .modal-left { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .modal-right { padding-left: 0; }
}

/* ─── REAL LOGO IMAGE STYLES ─── */
.company-logo-img {
  height: 52px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.3));
}
.footer-logo-img {
  height: 72px; width: auto; object-fit: contain; margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.95); padding: 8px 14px; border-radius: 12px;
}
.fujiyama-logo-img {
  height: 36px; width: auto; object-fit: contain;
}
.dist-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  background: #FFFFFF;
  padding: 8px 22px; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.logo-text-wrap {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-subtext {
  font-size: 0.65rem; font-weight: 600;
  color: #10B981; text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 2px;
}
.cert-badge--green {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #10B981 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  font-weight: 700 !important;
}

/* ─── DISTRIBUTOR STRIP BANNER ─── */
.distributor-strip {
  background: linear-gradient(90deg, #064E3B, #0F172A, #1E293B);
  border-top: 1px solid rgba(16, 185, 129, 0.3);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  padding: 16px 0; position: relative; z-index: 10;
}
.distributor-flex {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; text-align: center;
}
.dist-label {
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em;
}
/* ─── COMPREHENSIVE MOBILE-FIRST & IPHONE 15 OPTIMIZATIONS ─── */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top, 0px);
  }
  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 768px) {
  /* Prevent iOS Safari auto-zoom & horizontal scroll */
  html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  input, select, textarea {
    font-size: 16px !important;
    min-height: 48px;
  }
  
  /* iPhone 15 Header Alignment */
  .nav-container { padding: 0 14px; gap: 8px; justify-content: space-between; align-items: center; }
  .nav-logo { display: flex; align-items: center; gap: 8px; max-width: calc(100% - 52px); }
  .company-logo-img { height: 36px; width: auto; flex-shrink: 0; }
  .logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; overflow: hidden; }
  .logo-text { font-size: 0.85rem; font-weight: 800; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo-subtext { font-size: 0.56rem; font-weight: 700; color: #10B981; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-actions { display: none !important; } /* Guarantees zero overlapping on mobile header */
  .hamburger { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin-left: auto; flex-shrink: 0; }
  
  /* Hero Mobile Optimization */
  .hero { padding-top: calc(var(--nav-height) + 16px); padding-bottom: 40px; min-height: auto; }
  .hero-badge { font-size: 0.75rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-title { font-size: clamp(1.45rem, 6.2vw, 2.1rem); line-height: 1.25; margin-bottom: 14px; word-break: break-word; }
  .hero-subtitle { font-size: 0.88rem; margin-bottom: 20px; line-height: 1.55; }
  .hero-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    background: rgba(10,15,30,0.6); backdrop-filter: blur(12px);
    padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item { flex-direction: column; text-align: center; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.72rem; }
  .hero-actions { flex-direction: column; gap: 12px; margin-top: 24px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline {
    width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem;
  }
  
  /* Distributor Banner Strip Mobile */
  .distributor-strip { padding: 12px 16px; }
  .distributor-flex { flex-direction: column; gap: 8px; }
  .dist-label { font-size: 0.78rem; }
  .dist-tagline { font-size: 0.75rem; text-align: center; }
  .fujiyama-logo-img { height: 28px; }
  .dist-logo-wrap { padding: 5px 14px; }

  /* Product Tabs Horizontal Touch Scroll */
  .product-tabs {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; justify-content: flex-start;
    padding: 4px 16px 12px 16px; margin-left: -16px; margin-right: -16px;
    margin-bottom: 28px; gap: 8px;
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex-shrink: 0; padding: 8px 18px; font-size: 0.82rem; white-space: nowrap; }

  /* Products Grid Mobile */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { border-radius: 14px; }
  .product-info { padding: 16px; }
  .product-info h4 { font-size: 0.95rem; }
  .price-main { font-size: 1.2rem; }

  /* Modal Mobile Optimization */
  .modal-box {
    width: 95%; max-height: 88vh; margin: auto; border-radius: 16px;
  }
  .modal-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 1.2rem; }
  .modal-inner { padding: 16px; gap: 16px; }

  /* Services & Why Choose Us Mobile */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-img { height: 260px; }

  /* Contact Section Mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-wrapper { padding: 20px 16px; border-radius: 16px; }
  .contact-info { gap: 12px; }
  .contact-info-card { padding: 14px; gap: 12px; }
  .btn-submit { min-height: 52px; font-size: 1rem; }

  /* Footer Mobile */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Floating WhatsApp Button Mobile */
  .whatsapp-float {
    width: 54px; height: 54px; bottom: 16px; right: 16px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
  .logo-text-wrap { max-width: 200px; display: flex; flex-direction: column; }
  .logo-text { font-size: 0.78rem; font-weight: 800; color: #FFFFFF; white-space: nowrap; }
  .logo-subtext { font-size: 0.54rem; font-weight: 700; color: #10B981; text-transform: uppercase; white-space: nowrap; }
  .company-logo-img { height: 32px; flex-shrink: 0; }
}





