/* SinSarro Website Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

/* Variables */
:root {
  --primary: #6200EA;        /* Primary color - Deep Purple */
  --primary-light: #9D46FF;  /* Light variant of primary */
  --primary-dark: #3700B3;   /* Dark variant of primary */
  --secondary: #03DAC6;      /* Secondary color - Teal */
  --secondary-light: #66FFF8;/* Light variant of secondary */
  --secondary-dark: #00A896; /* Dark variant of secondary */
  --accent: #FF4081;         /* Accent color - Pink */
  --light-gray: #F5F5F7;     /* Backgrounds, secondary sections */
  --white: #FFFFFF;          /* Main background */
  --dark-gray: #212121;      /* Main typography */
  --medium-gray: #757575;    /* Secondary text */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:hover:before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}

.btn-secondary {
  background: var(--gradient-secondary);
}

.btn-secondary:before {
  background: var(--gradient-primary);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0px;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark-gray);
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 220px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero:after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-banner {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFD700, #FFFF00, #FFF8DC);
  color: #333;
  padding: 15px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  z-index: 1001;
  animation: floatBubble 4s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 300px;
  overflow: hidden;
}

.hero-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: bubbleShine 3s ease-in-out infinite;
}

.hero-banner:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #FFD700;
  animation: floatBubble 4s ease-in-out infinite;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translateY(0) scale(1);
    background: linear-gradient(135deg, #FFD700, #FFFF00, #FFF8DC);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }
  25% {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #FFFF00, #FFF8DC, #FFFFFF);
    box-shadow: 0 15px 40px rgba(255, 255, 0, 0.5);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #FFF8DC, #FFFFFF, #F0F8FF);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.6);
  }
  75% {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, #FFFFFF, #FFF8DC, #FFFF00);
    box-shadow: 0 15px 40px rgba(255, 255, 0, 0.5);
  }
}

@keyframes bubbleShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-distributor {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
  animation: glow 2s ease-in-out infinite alternate;
}

.btn-distributor:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F7931E, #FF6B35);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.btn-distributor:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-distributor:hover:before {
  opacity: 1;
}

.btn-distributor i {
  margin-right: 10px;
  font-size: 18px;
}

@keyframes glow {
  from { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); }
  to { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.3); }
}

/* Features Section */
.features {
  background-color: var(--light-gray);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-bottom: 4px solid transparent;
}

.feature-card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--white);
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
  position: relative;
}

.product-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}

.product-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.product-description {
  margin-bottom: 20px;
  color: var(--medium-gray);
  line-height: 1.6;
}

.product-price {
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 20px;
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(3, 218, 198, 0.1);
  border-radius: 20px;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--white);
  position: relative;
}

.how-it-works:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.steps:after {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0.2;
  border-radius: 4px;
  z-index: 0;
}

.step {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number:after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed var(--primary-light);
  opacity: 0.5;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Benefits Section */
.benefits {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.benefits:before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
}

.benefits:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--secondary);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.benefit-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 218, 198, 0.05) 0%, rgba(3, 218, 198, 0) 100%);
  z-index: -1;
}

.benefit-icon {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 20px;
  background: rgba(3, 218, 198, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.benefit-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
  font-size: 15px;
}

.form-control {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  transition: var(--transition);
  background-color: #f9f9f9;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(98, 0, 234, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.footer:after {
  content: '';
  position: absolute;
  top: 5px;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hero {
    padding: 160px 0 80px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-banner {
    top: 80px;
    font-size: 11px;
    padding: 12px 18px;
    width: 250px;
    letter-spacing: 0.8px;
  }
  
  .btn-distributor {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero-banner {
    top: 80px;
    font-size: 10px;
    padding: 10px 15px;
    width: 220px;
    letter-spacing: 0.5px;
  }
  
  .btn-distributor {
    padding: 12px 24px;
    font-size: 12px;
  }
  
  .btn-distributor i {
    font-size: 14px;
  }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  margin: 0;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
  
  .whatsapp-float i {
    margin: 0;
    line-height: 1;
  }
}