/* Vestigo Ventures LLP - Premium FMCG Export Website */

:root {
  --primary: #121a1d;
  --primary-dark: #0d1417;
  --primary-light: #1a2529;
  --accent: #121a1d;
  --accent-bright: #1a2529;
  --white: #ffffff;
  --bg-light: #f8fafb;
  --text-dark: #121a1d;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --border: rgba(18, 26, 29, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.shrink {
  box-shadow: var(--shadow-md);
}

.site-header.shrink .header-inner {
  padding: 10px 32px;
  min-height: 60px;
}

.site-header.shrink .logo {
  height: 36px;
}

.site-header.shrink .brand {
  height: 36px;
}

.site-header.shrink .contact-pill {
  height: 36px;
  padding: 8px 18px;
  font-size: 14px;
}

.site-header.shrink .nav-list a {
  line-height: 36px;
  font-size: 14px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 40px;
  gap: 48px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 42px;
}

.logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  line-height: 44px;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
}

.nav-list a::after {
  display: none;
}

.nav-list a:hover {
  color: var(--primary);
  background: rgba(15, 76, 117, 0.06);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-evenly;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: 50px
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  height: 44px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}

.contact-pill:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.contact-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  z-index: 0;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  padding: 0 40px;
}

.hero-text {
  color: var(--white);
}

.eyebrow {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  border: none;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  border: none;
}

.btn-yellow:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Product Display - 3D Pedestal */
.hero-product-display {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.pedestal {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.pedestal-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulse 3s ease-in-out infinite;
}

.static-image-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
  z-index: 1;
}

.static-product-image {
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.product-group {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-pack {
  position: absolute;
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  z-index: 2;
}

.product-pack:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 3;
}

.pack-1 {
  transform: translate(-80px, -60px) rotate(-15deg);
}

.pack-2 {
  transform: translate(80px, -60px) rotate(15deg);
}

.pack-3 {
  transform: translate(0, -20px) rotate(0deg);
  z-index: 3;
  width: 200px;
}

.pack-4 {
  transform: translate(-100px, 80px) rotate(-10deg);
}

.pack-5 {
  transform: translate(100px, 80px) rotate(10deg);
}

/* About Section */
.about-section {
  padding: 120px 0 80px 0;
  background: var(--bg-light);
}

.about-card {
  background: var(--white);
  border-radius: 12px;
  padding: 56px;
  box-shadow: none;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-products {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0;
}

.about-product-img {
  width: 150px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.about-product-img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Products Section */
.products-section {
  padding: 120px 0;
  background: var(--white);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-dark);
}

.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(18, 26, 29, 0.12);
  border-color: var(--primary);
}

.product-card-image {
  width: 100%;
  height: 280px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card {
  position: relative;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

/* Strategic Tie-Ups Section */
.partnerships-section {
  padding: 100px 0;
  background: var(--white);
}

.partnerships-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.intro-content {
  margin-top: 32px;
  text-align: left;
}

.intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.partner-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  object-fit: cover;
  background: var(--light-gray);
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card:hover .partner-image img {
  transform: scale(1.05);
}

.partner-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.partner-location {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.partner-role {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.partner-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.partner-products {
  background: rgba(18, 26, 29, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  margin: 8px 0;
}

.partner-products strong {
  color: var(--text-dark);
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
}

.partner-products ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.partner-products li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.partnerships-benefits {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 50px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.partnerships-benefits h3 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(18, 26, 29, 0.1);
  border-top: 3px solid var(--primary);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.partnerships-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.partnerships-cta p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.partnerships-cta p strong {
  color: var(--text-dark);
  font-size: 18px;
}

/* Partnership Section */
.partnership-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.partnership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.partnership-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.partnership-text {
  color: var(--white);
}

.partnership-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.partnership-text p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.partnership-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.partnership-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-illustration {
  width: 100%;
  max-width: 400px;
  opacity: 0.9;
}

.truck-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Metrics Section */
.metrics-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.metric-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.metric-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(18, 26, 29, 0.12);
  border-color: var(--primary);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  background: var(--primary-light);
  color: var(--white);
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.contact-card a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Promoter's Profile Section */
.promoters-section {
  padding: 60px 0 100px 0;
  background: var(--bg-light);
}

.promoters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.promoter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.promoter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 26, 29, 0.15);
  border-color: var(--primary);
}

.promoter-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.promoter-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

.promoter-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.promoter-description a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.promoter-description a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  padding-bottom: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.footer-brand strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--yellow-accent);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--yellow-accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-certifications {
  background: rgba(0, 0, 0, 0.2);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Toast */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  display: none;
  animation: slideIn 0.3s ease;
}

.toast.show {
  display: block;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  background: #20BA5A;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership-content {
    grid-template-columns: 1fr;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    grid-template-columns: 300px 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promoters-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 20px;
    min-height: 65px;
  }

  .logo {
    height: 40px;
  }

  .brand {
    height: 40px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 24px 24px;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  /* Mobile menu backdrop */
  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
  }

  .nav-list a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .contact-pill {
    display: none;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .promoter-card {
    padding: 30px 24px;
  }
  
  .promoter-content h3 {
    font-size: 24px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .pedestal {
    width: 350px;
    height: 350px;
  }

  .product-pack {
    width: 120px;
  }

  .pack-3 {
    width: 140px;
  }

  .section-title {
    font-size: 32px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }
  
  /* Remove hover effects on mobile for performance */
  .partner-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .partner-card:hover .partner-image img {
    transform: none;
  }

  .partner-image {
    min-height: 250px;
  }

  .partner-content {
    padding: 30px 24px;
  }

  .partnerships-benefits {
    padding: 40px 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  /* Remove hover effects on mobile for performance */
  .benefit-item:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-top: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-card {
    padding: 40px 24px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .partnership-ctas {
    flex-direction: column;
  }

  .filter-pills {
    gap: 8px;
  }

  .filter-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Smooth scrolling and parallax effects */
@media (prefers-reduced-motion: no-preference) {
  .pedestal {
    transition: transform 0.1s ease-out;
  }

  body:hover .pedestal {
    transform: rotateY(5deg) rotateX(-5deg);
  }
}

/* Remove animations on mobile devices for better performance */
@media (max-width: 768px) {
  .pedestal {
    transition: none;
  }
  
  body:hover .pedestal {
    transform: none;
  }
  .hero-static{
    width:100% !important;
  }
}



/* Custom */

.hero-static {
  width: 50%;
  padding: 0px;
  height: auto;
  margin-top: 50px;
  border-radius: 20px;

}
